-
Notifications
You must be signed in to change notification settings - Fork 70
/
app_test.go
231 lines (197 loc) · 5.26 KB
/
app_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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
package diygoapi_test
import (
"encoding/base64"
"encoding/hex"
"fmt"
"testing"
"time"
qt "github.com/frankban/quicktest"
"github.com/gilcrest/diygoapi"
"github.com/gilcrest/diygoapi/secure"
"github.com/gilcrest/diygoapi/uuid"
)
func TestApp_AddKey(t *testing.T) {
t.Run("add valid key", func(t *testing.T) {
c := qt.New(t)
o := &diygoapi.Org{
ID: uuid.New(),
ExternalID: secure.NewID(),
Name: "app test",
Description: "test app",
Kind: &diygoapi.OrgKind{},
}
a := diygoapi.App{
ID: uuid.New(),
ExternalID: secure.NewID(),
Org: o,
Name: "",
Description: "",
APIKeys: nil,
}
var (
ek *[32]byte
err error
)
ek, err = secure.NewEncryptionKey()
c.Assert(err, qt.IsNil)
var key diygoapi.APIKey
key, err = diygoapi.NewAPIKey(secure.RandomGenerator{}, ek, time.Now().Add(time.Hour*100))
c.Assert(err, qt.IsNil)
err = a.AddKey(key)
c.Assert(err, qt.IsNil)
c.Assert(len(a.APIKeys), qt.Equals, 1)
})
t.Run("add expired key", func(t *testing.T) {
c := qt.New(t)
o := &diygoapi.Org{
ID: uuid.New(),
ExternalID: secure.NewID(),
Name: "app test",
Description: "test app",
Kind: &diygoapi.OrgKind{},
}
a := diygoapi.App{
ID: uuid.New(),
ExternalID: secure.NewID(),
Org: o,
Name: "",
Description: "",
APIKeys: nil,
}
var (
ek *[32]byte
err error
)
ek, err = secure.NewEncryptionKey()
c.Assert(err, qt.IsNil)
var key diygoapi.APIKey
key, err = diygoapi.NewAPIKey(secure.RandomGenerator{}, ek, time.Now().Add(time.Hour*-100))
c.Assert(err, qt.IsNil)
err = a.AddKey(key)
c.Assert(err, qt.Not(qt.IsNil))
})
}
func TestApp_ValidateKey(t *testing.T) {
t.Run("valid key", func(t *testing.T) {
c := qt.New(t)
o := &diygoapi.Org{
ID: uuid.New(),
ExternalID: secure.NewID(),
Name: "app test",
Description: "test app",
Kind: &diygoapi.OrgKind{},
}
a := diygoapi.App{
ID: uuid.New(),
ExternalID: secure.NewID(),
Org: o,
Name: "",
Description: "",
APIKeys: nil,
}
var (
ek *[32]byte
err error
)
ek, err = secure.NewEncryptionKey()
c.Assert(err, qt.IsNil)
var key diygoapi.APIKey
key, err = diygoapi.NewAPIKey(secure.RandomGenerator{}, ek, time.Now().Add(time.Hour*100))
c.Assert(err, qt.IsNil)
err = a.AddKey(key)
c.Assert(err, qt.IsNil)
err = a.ValidateKey("deep in the realm", key.Key())
c.Assert(err, qt.IsNil)
})
t.Run("key does not match", func(t *testing.T) {
c := qt.New(t)
o := &diygoapi.Org{
ID: uuid.New(),
ExternalID: secure.NewID(),
Name: "app test",
Description: "test app",
Kind: &diygoapi.OrgKind{},
}
a := diygoapi.App{
ID: uuid.New(),
ExternalID: secure.NewID(),
Org: o,
Name: "",
Description: "",
APIKeys: nil,
}
err := a.ValidateKey("deep in the realm", "badkey")
c.Assert(err, qt.ErrorMatches, "Key does not match any keys for the App")
})
t.Run("key matches but invalid", func(t *testing.T) {
c := qt.New(t)
o := &diygoapi.Org{
ID: uuid.New(),
ExternalID: secure.NewID(),
Name: "app test",
Description: "test app",
Kind: &diygoapi.OrgKind{},
}
a := diygoapi.App{
ID: uuid.New(),
ExternalID: secure.NewID(),
Org: o,
Name: "",
Description: "",
APIKeys: nil,
}
var (
ek *[32]byte
err error
)
ek, err = secure.NewEncryptionKey()
c.Assert(err, qt.IsNil)
var key diygoapi.APIKey
key, err = diygoapi.NewAPIKey(secure.RandomGenerator{}, ek, time.Now().Add(time.Hour*-100))
c.Assert(err, qt.IsNil)
a.APIKeys = append(a.APIKeys, key)
err = a.ValidateKey("deep in the realm", key.Key())
c.Assert(err, qt.ErrorMatches, fmt.Sprintf("Key Deactivation %s is before current time .*", key.DeactivationDate().String()))
})
}
func TestNewAPIKey(t *testing.T) {
t.Run("key byte length", func(t *testing.T) {
c := qt.New(t)
var (
ek *[32]byte
err error
)
ek, err = secure.NewEncryptionKey()
c.Assert(err, qt.IsNil)
var key diygoapi.APIKey
key, err = diygoapi.NewAPIKey(secure.RandomGenerator{}, ek, time.Date(2999, 12, 31, 0, 0, 0, 0, time.UTC))
c.Assert(err, qt.IsNil)
// decode base64
var keyBytes []byte
keyBytes, err = base64.URLEncoding.DecodeString(key.Key())
c.Assert(err, qt.IsNil)
c.Assert(len(keyBytes), qt.Equals, 16, qt.Commentf("assure key byte length is always 16 (128-bit)"))
})
t.Run("decrypt key", func(t *testing.T) {
c := qt.New(t)
var (
ek *[32]byte
err error
)
ek, err = secure.NewEncryptionKey()
c.Assert(err, qt.IsNil)
var key diygoapi.APIKey
key, err = diygoapi.NewAPIKey(secure.RandomGenerator{}, ek, time.Date(2999, 12, 31, 0, 0, 0, 0, time.UTC))
c.Assert(err, qt.IsNil)
// Ciphertext method returns the bytes as a hex encoded string.
// decode to get the bytes
var cb []byte
cb, err = hex.DecodeString(key.Ciphertext())
c.Assert(err, qt.IsNil)
// decrypt the encrypted key
var apiKey []byte
apiKey, err = secure.Decrypt(cb, ek)
c.Assert(err, qt.IsNil)
c.Assert(string(apiKey), qt.Equals, key.Key(), qt.Commentf("ensure decrypted key matches key string"))
})
}