-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencoder_test.go
89 lines (67 loc) · 2.1 KB
/
encoder_test.go
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package jwt
import (
"testing"
"time"
"github.com/smarty/assertions/should"
"github.com/smarty/gunit"
)
type rfcExample struct {
Issuer string `json:"iss"`
Expiration int64 `json:"exp"`
}
func TestEncoderFixture(t *testing.T) {
gunit.Run(new(EncoderFixture), t)
}
type EncoderFixture struct {
*gunit.Fixture
}
func (this *EncoderFixture) TestEncode() {
encoder := NewEncoder(WithNamedEncodingAlgorithm("HS384"))
original := rfcExample{
Issuer: "joe",
Expiration: 1300819380,
}
token, err := encoder.Encode(original)
this.So(err, should.BeNil)
this.assertSignature(token)
this.So(this.decodeToken(token, nil), should.Resemble, original)
}
func (this *EncoderFixture) assertSignature(token string) bool {
return this.So(token, should.NotEndWith, ".")
}
func (this *EncoderFixture) decodeToken(token string, secret []byte) (decoded rfcExample) {
decoder := NewDecoder(
WithDecodingValidator(NewDefaultValidator()),
WithDecodingSecrets(func(id string) []byte { return secret }),
WithNamedDecodingAlgorithms("none", "HS256", "HS384"),
)
_ = decoder.Decode(token, &decoded)
return decoded
}
func (this *EncoderFixture) TestEncodeWithSignature() {
encoder := NewEncoder(WithEncodingSecret("id", []byte("secret")), WithEncodingAlgorithm(HS256{}))
original := rfcExample{
Issuer: "joe",
Expiration: 1300819380,
}
token, err := encoder.Encode(original)
this.So(err, should.BeNil)
this.So(this.decodeToken(token, []byte("secret")), should.Resemble, original)
}
func (this *EncoderFixture) TestEncodingFailsWhenSerializationFails() {
encoder := NewEncoder(WithNamedEncodingAlgorithm("none"))
token, err := encoder.Encode(make(chan int))
this.So(err, should.NotBeNil)
this.So(token, should.BeBlank)
}
func (this *EncoderFixture) TestDefaultOptions() {
encoder := NewEncoder()
defaultEncoder := NewEncoder(WithEncodingAlgorithm(HS256{}), WithEncodingSecret("", nil))
data := rfcExample{
Issuer: "test",
Expiration: time.Now().Add(time.Hour).Unix(),
}
expected, _ := defaultEncoder.Encode(data)
actual, _ := encoder.Encode(data)
this.So(actual, should.Equal, expected)
}