Commit dc8a78be authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Add test for parseStatefulToken.

parent 76066a1a
package rtpconn
import (
"encoding/json"
"reflect"
"testing"
"github.com/jech/galene/token"
)
var tokens = []string{
`{
"token": "a",
"group": "g",
"username": "u",
"permissions":["present"],
"expires": "2023-05-03T20:24:47.616624532+02:00"
}`,
`{
"token": "a",
"group": "g"
}`,
`{
"token": "a",
"group": "g",
"username":""
}`,
}
func TestParseStatefulToken(t *testing.T) {
for i, tok := range tokens {
var t1 *token.Stateful
err := json.Unmarshal([]byte(tok), &t1)
if err != nil {
t.Errorf("Unmarshal %v: %v", i, err)
continue
}
var m map[string]interface{}
err = json.Unmarshal([]byte(tok), &m)
if err != nil {
t.Errorf("Unmarshal (map) %v: %v", i, err)
continue
}
t2, err := parseStatefulToken(m)
if err != nil {
t.Errorf("parseStatefulToken %v: %v", i, err)
}
if !reflect.DeepEqual(t1, t2) {
t.Errorf("Mismatch: %v, %v", t1, t2)
}
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment