mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-02-20 23:47:21 -05:00
test case for string literal
This commit is contained in:
parent
03ccfa5b1c
commit
a0e35673cb
29
common/serial/string_json_test.go
Normal file
29
common/serial/string_json_test.go
Normal file
@ -0,0 +1,29 @@
|
||||
// +build json
|
||||
|
||||
package serial_test
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"testing"
|
||||
|
||||
. "github.com/v2ray/v2ray-core/common/serial"
|
||||
v2testing "github.com/v2ray/v2ray-core/testing"
|
||||
"github.com/v2ray/v2ray-core/testing/assert"
|
||||
)
|
||||
|
||||
func TestInvalidStringLiteralJson(t *testing.T) {
|
||||
v2testing.Current(t)
|
||||
|
||||
var s StringLiteral
|
||||
err := json.Unmarshal([]byte("1"), &s)
|
||||
assert.Error(err).IsNotNil()
|
||||
}
|
||||
|
||||
func TestStringLiteralParsing(t *testing.T) {
|
||||
v2testing.Current(t)
|
||||
|
||||
var s StringLiteral
|
||||
err := json.Unmarshal([]byte("\"1\""), &s)
|
||||
assert.Error(err).IsNil()
|
||||
assert.String(s).Equals("1")
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user