This repository was archived by the owner on Feb 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathHawkTests.m
265 lines (194 loc) · 8.16 KB
/
HawkTests.m
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
//
// HawkTests.m
// HawkTests
//
// Created by Jesse Stuart on 8/6/13.
// Copyright (c) 2013 Tent. All rights reserved.
//
#import <XCTest/XCTest.h>
#import "HawkAuth.h"
#import "NSString+Base64.h"
@interface HawkTests : XCTestCase
{
HawkAuth *auth;
}
@end
@implementation HawkTests
- (void)setUp
{
[super setUp];
// Put setup code here. This method is called before the invocation of each test method in the class.
auth = [[HawkAuth alloc] init];
auth.credentials = [[HawkCredentials alloc] initWithHawkId:@"exqbZWtykFZIh2D7cXi9dA" withKey:@"HX9QcbD-r3ItFEnRcAuOSg" withAlgorithm:CryptoAlgorithmSHA256];
auth.contentType = @"application/vnd.tent.post.v0+json";
auth.method = @"POST";
auth.requestUri = @"/posts";
auth.host = @"example.com";
auth.port = 443;
auth.payload = @"{\"type\":\"https://tent.io/types/status/v0#\"}";
}
- (void)tearDown
{
// Put teardown code here. This method is called after the invocation of each test method in the class.
[super tearDown];
}
- (void)testPayloadHash
{
NSString *expectedHash = @"neQFHgYKl/jFqDINrC21uLS0gkFglTz789rzcSr7HYU=";
NSString *payloadHash = [auth payloadHash];
XCTAssertEqualObjects(payloadHash, expectedHash);
}
- (void)testMac
{
NSString *expectedMac = @"2sttHCQJG9ejj1x7eCi35FP23Miu9VtlaUgwk68DTpM=";
auth.app = @"wn6yzHGe5TLaT-fvOPbAyQ";
auth.nonce = @"3yuYCD4Z";
auth.timestamp = [NSDate dateWithTimeIntervalSince1970:1368996800];
NSString *mac = [auth hmacWithType:HawkAuthTypeHeader];
XCTAssertEqualObjects(mac, expectedMac);
}
- (void)testServerAuthorizationMac
{
NSString *expectedMac = @"lTG3kTBr33Y97Q4KQSSamu9WY/mOUKnZzq/ho9x+yxw=";
auth.app = @"wn6yzHGe5TLaT-fvOPbAyQ";
auth.nonce = @"3yuYCD4Z";
auth.timestamp = [NSDate dateWithTimeIntervalSince1970:1368996800];
auth.payload = nil;
NSString *mac = [auth hmacWithType:HawkAuthTypeResponse];
XCTAssertEqualObjects(mac, expectedMac);
}
- (void)testServerAuthorizationMacWithPayload
{
NSString *expectedMac = @"LvxASIZ2gop5cwE2mNervvz6WXkPmVslwm11MDgEZ5E=";
auth.nonce = @"3yuYCD4Z";
auth.timestamp = [NSDate dateWithTimeIntervalSince1970:1368996800];
NSString *mac = [auth hmacWithType:HawkAuthTypeResponse];
XCTAssertEqualObjects(mac, expectedMac);
}
- (void)testBewit
{
// First Test Vector (doesn't ensure urlsafe base64 fn used)
NSString *expectedBewit = @"ZXhxYlpXdHlrRlpJaDJEN2NYaTlkQVwxMzY4OTk2ODAwXE8wbWhwcmdvWHFGNDhEbHc1RldBV3ZWUUlwZ0dZc3FzWDc2dHBvNkt5cUk9XA";
auth.payload = nil;
auth.method = @"GET";
auth.timestamp = [NSDate dateWithTimeIntervalSince1970:1368996800];
NSString *bewit = [auth bewit];
XCTAssertEqualObjects(bewit, expectedBewit);
// Second Test Vector (ensures far future timestamps work, "/" is replaced with "_")
expectedBewit = @"MTIzNDU2XDQ1MTkzMTE0NThcRDk0L0daVEwzbFpvSmx6cnBLZUtZWkswd3NzS21FalNrSStFZm51dHh1QT1c76u_77yw44Sy";
auth = [[HawkAuth alloc] init];
auth.credentials = [[HawkCredentials alloc] initWithHawkId:@"123456" withKey:@"2983d45yun89q" withAlgorithm:CryptoAlgorithmSHA256];
auth.method = @"GET";
auth.requestUri = @"/resource/4?a=1&b=2";
auth.port = 80;
auth.host = @"example.com";
auth.ext = [@"76u/77yw44Sy\n" base64DecodedString];
auth.timestamp = [NSDate dateWithTimeIntervalSince1970:4519311458];
bewit = [auth bewit];
XCTAssertEqualObjects(bewit, expectedBewit);
}
- (void) testBewitValidation
{
NSString *bewit = @"ZXhxYlpXdHlrRlpJaDJEN2NYaTlkQVwxMzY4OTk2ODAwXE8wbWhwcmdvWHFGNDhEbHc1RldBV3ZWUUlwZ0dZc3FzWDc2dHBvNkt5cUk9XA";
auth.payload = nil;
auth.method = @"GET";
HawkError *error = [auth validateBewit:bewit credentialsLookup:^HawkCredentials *(NSString * hawkId) {
if ([hawkId isEqualToString:auth.credentials.hawkId]) {
return auth.credentials;
} else {
return nil;
}
} serverTime:[NSDate dateWithTimeIntervalSince1970:1368996800]];
XCTAssert(!error);
}
- (void)testExpiredBewitValidation
{
NSString *bewit = @"ZXhxYlpXdHlrRlpJaDJEN2NYaTlkQVwxMzY4OTk2ODAwXE8wbWhwcmdvWHFGNDhEbHc1RldBV3ZWUUlwZ0dZc3FzWDc2dHBvNkt5cUk9XA";
auth.payload = nil;
auth.method = @"GET";
HawkError *error = [auth validateBewit:bewit credentialsLookup:^HawkCredentials *(NSString * hawkId) {
if ([hawkId isEqualToString:auth.credentials.hawkId]) {
return auth.credentials;
} else {
return nil;
}
} serverTime:[NSDate dateWithTimeIntervalSince1970:1368996800-1]];
XCTAssertNotNil(error);
}
- (void)testAuthorizationHeader
{
NSString *expectedHeader = @"Authorization: Hawk id=\"exqbZWtykFZIh2D7cXi9dA\", mac=\"2sttHCQJG9ejj1x7eCi35FP23Miu9VtlaUgwk68DTpM=\", ts=\"1368996800\", nonce=\"3yuYCD4Z\", hash=\"neQFHgYKl/jFqDINrC21uLS0gkFglTz789rzcSr7HYU=\", app=\"wn6yzHGe5TLaT-fvOPbAyQ\"";
auth.app = @"wn6yzHGe5TLaT-fvOPbAyQ";
auth.nonce = @"3yuYCD4Z";
auth.timestamp = [NSDate dateWithTimeIntervalSince1970:1368996800];
NSString *header = [auth requestHeader];
XCTAssertEqualObjects(header, expectedHeader);
}
- (void)testAuthorizationHeaderValidation
{
NSString *header = @"Authorization: Hawk id=\"exqbZWtykFZIh2D7cXi9dA\", mac=\"2sttHCQJG9ejj1x7eCi35FP23Miu9VtlaUgwk68DTpM=\", ts=\"1368996800\", nonce=\"3yuYCD4Z\", hash=\"neQFHgYKl/jFqDINrC21uLS0gkFglTz789rzcSr7HYU=\", app=\"wn6yzHGe5TLaT-fvOPbAyQ\"";
HawkError *error = [auth validateRequestHeader:header credentialsLookup:^HawkCredentials *(NSString *hawkId) {
if ([hawkId isEqualToString:auth.credentials.hawkId]) {
return auth.credentials;
}
return nil;
}];
XCTAssert(!error);
}
- (void)testServerAuthorizationHeader
{
NSString *expectedHeader = @"Server-Authorization: Hawk mac=\"lTG3kTBr33Y97Q4KQSSamu9WY/mOUKnZzq/ho9x+yxw=\"";
auth.app = @"wn6yzHGe5TLaT-fvOPbAyQ";
auth.nonce = @"3yuYCD4Z";
auth.timestamp = [NSDate dateWithTimeIntervalSince1970:1368996800];
auth.payload = nil;
NSString *header = [auth responseHeader];
XCTAssertEqualObjects(header, expectedHeader);
}
- (void)testServerAuthorizationHeaderWithPayload
{
NSString *expectedHeader = @"Server-Authorization: Hawk mac=\"LvxASIZ2gop5cwE2mNervvz6WXkPmVslwm11MDgEZ5E=\", hash=\"neQFHgYKl/jFqDINrC21uLS0gkFglTz789rzcSr7HYU=\"";
auth.nonce = @"3yuYCD4Z";
auth.timestamp = [NSDate dateWithTimeIntervalSince1970:1368996800];
NSString *header = [auth responseHeader];
XCTAssertEqualObjects(header, expectedHeader);
}
- (void)testServerAuthorizationHeaderValidation
{
NSString *header = @"Server-Authorization: Hawk mac=\"lTG3kTBr33Y97Q4KQSSamu9WY/mOUKnZzq/ho9x+yxw=\"";
auth.app = @"wn6yzHGe5TLaT-fvOPbAyQ";
auth.nonce = @"3yuYCD4Z";
auth.timestamp = [NSDate dateWithTimeIntervalSince1970:1368996800];
auth.payload = nil;
HawkError *error = [auth validateResponseHeader:header];
XCTAssert(!error);
}
- (void)testServerAuthorizationHeaderWithPayloadValidation
{
NSString *header = @"Server-Authorization: Hawk mac=\"LvxASIZ2gop5cwE2mNervvz6WXkPmVslwm11MDgEZ5E=\", hash=\"neQFHgYKl/jFqDINrC21uLS0gkFglTz789rzcSr7HYU=\"";
auth.nonce = @"3yuYCD4Z";
auth.timestamp = [NSDate dateWithTimeIntervalSince1970:1368996800];
HawkError *error = [auth validateResponseHeader:header];
XCTAssert(!error);
}
- (void)testTimestampSkew
{
NSString *expectedTsm = @"HPDcD5S3Kw7LM/oyoXKcgv2Z30RnOLAI5ebXpYDGfo4=";
HawkCredentials *credentials = auth.credentials;
auth = [[HawkAuth alloc] init];
auth.credentials = credentials;
auth.timestamp = [NSDate dateWithTimeIntervalSince1970:1368996800];
NSString *tsm = [auth timestampSkewHmac];
XCTAssertEqualObjects(expectedTsm, tsm);
}
- (void)testTimestampSkewHeader
{
NSString *expectedHeader = @"WWW-Authenticate: Hawk ts=\"1368996800\", tsm=\"HPDcD5S3Kw7LM/oyoXKcgv2Z30RnOLAI5ebXpYDGfo4=\", error=\"timestamp skew too high\"";
HawkCredentials *credentials = auth.credentials;
auth = [[HawkAuth alloc] init];
auth.credentials = credentials;
auth.timestamp = [NSDate dateWithTimeIntervalSince1970:1368996800];
NSString *header = [auth timestampSkewHeader];
XCTAssertEqualObjects(expectedHeader, header);
}
@end