mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-09-22 22:53:30 +00:00
48 lines
795 B
Go
48 lines
795 B
Go
![]() |
package json_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"bytes"
|
||
|
"v2ray.com/core/testing/assert"
|
||
|
. "v2ray.com/core/tools/conf/json"
|
||
|
)
|
||
|
|
||
|
func TestReader(t *testing.T) {
|
||
|
assert := assert.On(t)
|
||
|
|
||
|
data := []struct {
|
||
|
input string
|
||
|
output string
|
||
|
}{
|
||
|
{
|
||
|
`
|
||
|
content #comment 1
|
||
|
#comment 2
|
||
|
content 2`,
|
||
|
`
|
||
|
content content 2`},
|
||
|
{`content`, `content`},
|
||
|
{" ", " "},
|
||
|
{`con/*abcd*/tent`, "content"},
|
||
|
{`
|
||
|
text // adlkhdf /*
|
||
|
//comment adfkj
|
||
|
text 2*/`, `
|
||
|
text text 2*`},
|
||
|
{`"//"content`, `"//"content`},
|
||
|
{`abcd'//'abcd`, `abcd'//'abcd`},
|
||
|
}
|
||
|
|
||
|
for _, testCase := range data {
|
||
|
reader := &Reader{
|
||
|
Reader: bytes.NewReader([]byte(testCase.input)),
|
||
|
}
|
||
|
|
||
|
actual := make([]byte, 1024)
|
||
|
n, err := reader.Read(actual)
|
||
|
assert.Error(err).IsNil()
|
||
|
assert.String(string(actual[:n])).Equals(testCase.output)
|
||
|
}
|
||
|
}
|