mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
31 lines
570 B
Go
31 lines
570 B
Go
// +build json
|
|
|
|
package collect_test
|
|
|
|
import (
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
. "v2ray.com/core/common/collect"
|
|
"v2ray.com/core/testing/assert"
|
|
)
|
|
|
|
func TestStringListUnmarshalError(t *testing.T) {
|
|
assert := assert.On(t)
|
|
|
|
rawJson := `1234`
|
|
list := new(StringList)
|
|
err := json.Unmarshal([]byte(rawJson), list)
|
|
assert.Error(err).IsNotNil()
|
|
}
|
|
|
|
func TestStringListLen(t *testing.T) {
|
|
assert := assert.On(t)
|
|
|
|
rawJson := `"a, b, c, d"`
|
|
list := new(StringList)
|
|
err := json.Unmarshal([]byte(rawJson), list)
|
|
assert.Error(err).IsNil()
|
|
assert.Int(list.Len()).Equals(4)
|
|
}
|