4 Star 22 Fork 8

北京小程科技有限公司/SDP协议

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
util_test.go 768 Bytes
一键复制 编辑 原始数据 按行查看 历史
shallot 提交于 2020-04-05 10:41 . 添加SDP协议的内容解析。
package sdp
import (
"fmt"
"testing"
)
func TestUtilParse(t *testing.T) {
tests := []struct {
item string
wantKey string
wantValue string
wantErr bool
}{
{"v=0", "v", "0", false},
{"a=control:*", "a", "control:*", false},
{"b=RS=600", "b", "RS=600", false},
{"c", "", "", true},
}
for i, tt := range tests {
t.Run(fmt.Sprintf("%d", i), func(t *testing.T) {
gotKey, gotValue, err := parse(tt.item)
if (err != nil) != tt.wantErr {
t.Errorf("parse() error = %v, wantErr %v", err, tt.wantErr)
return
}
if gotKey != tt.wantKey {
t.Errorf("parse() gotKey = %v, want %v", gotKey, tt.wantKey)
}
if gotValue != tt.wantValue {
t.Errorf("parse() gotValue = %v, want %v", gotValue, tt.wantValue)
}
})
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/xiaochengtech/sdp.git
[email protected]:xiaochengtech/sdp.git
xiaochengtech
sdp
SDP协议
master

搜索帮助