1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
/*
* Copyright 2018 The NATS Authors
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package jwt
import (
"testing"
"time"
)
func TestNewGenericClaims(t *testing.T) {
akp := createAccountNKey(t)
apk := publicKey(akp, t)
uc := NewGenericClaims(apk)
uc.Expires = time.Now().Add(time.Duration(time.Hour)).UTC().Unix()
uc.Name = "alberto"
uc.Audience = "everyone"
uc.NotBefore = time.Now().UTC().Unix()
uc.Tags.Add("one")
uc.Tags.Add("one")
uc.Tags.Add("one")
uc.Tags.Add("TWO") // should become lower case
uc.Tags.Add("three")
uJwt := encode(uc, akp, t)
uc2, err := DecodeGeneric(uJwt)
if err != nil {
t.Fatal("failed to decode", err)
}
AssertEquals(uc.String(), uc2.String(), t)
AssertEquals(uc.Name, uc2.Name, t)
AssertEquals(uc.Audience, uc2.Audience, t)
AssertEquals(uc.Expires, uc2.Expires, t)
AssertEquals(uc.NotBefore, uc2.NotBefore, t)
AssertEquals(uc.Subject, uc2.Subject, t)
AssertEquals(3, len(uc2.Tags), t)
AssertEquals(true, uc2.Tags.Contains("two"), t)
AssertEquals("one", uc2.Tags[0], t)
AssertEquals("two", uc2.Tags[1], t)
AssertEquals("three", uc2.Tags[2], t)
AssertEquals(uc.Claims() != nil, true, t)
AssertEquals(uc.Payload() != nil, true, t)
}
|