Add test for description marshalling/unmarshalling.
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
package group
|
package group
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"reflect"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
@@ -20,3 +22,37 @@ func TestJSTime(t *testing.T) {
|
|||||||
t.Errorf("Delta %v, %v, %v", delta, tm, tm2)
|
t.Errorf("Delta %v, %v, %v", delta, tm, tm2)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestDescriptionJSON(t *testing.T) {
|
||||||
|
d := `
|
||||||
|
{
|
||||||
|
"op":[{"username": "jch","password": "topsecret"}],
|
||||||
|
"max-history-age": 10,
|
||||||
|
"allow-subgroups": true,
|
||||||
|
"presenter":[
|
||||||
|
{"user": "john", "password": "secret"},
|
||||||
|
{}
|
||||||
|
]
|
||||||
|
}`
|
||||||
|
|
||||||
|
var dd description
|
||||||
|
err := json.Unmarshal([]byte(d), &dd)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unmarshal: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
ddd, err := json.Marshal(dd)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("marshal: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
var dddd description
|
||||||
|
err = json.Unmarshal([]byte(ddd), &dddd)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unmarshal: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if !reflect.DeepEqual(dd, dddd) {
|
||||||
|
t.Errorf("Got %v, expected %v", dddd, dd)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user