mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
654 B
34 lines
654 B
package duration_test
|
|
|
|
import (
|
|
"encoding/json"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/xtls/xray-core/infra/conf/cfgcommon/duration"
|
|
)
|
|
|
|
type testWithDuration struct {
|
|
Duration duration.Duration
|
|
}
|
|
|
|
func TestDurationJSON(t *testing.T) {
|
|
expected := &testWithDuration{
|
|
Duration: duration.Duration(time.Hour),
|
|
}
|
|
data, err := json.Marshal(expected)
|
|
if err != nil {
|
|
t.Error(err)
|
|
return
|
|
}
|
|
actual := &testWithDuration{}
|
|
err = json.Unmarshal(data, &actual)
|
|
if err != nil {
|
|
t.Error(err)
|
|
return
|
|
}
|
|
if actual.Duration != expected.Duration {
|
|
t.Errorf("expected: %s, actual: %s", time.Duration(expected.Duration), time.Duration(actual.Duration))
|
|
}
|
|
}
|