-
Notifications
You must be signed in to change notification settings - Fork 373
/
Copy pathauthentication_challenge_test.dart
150 lines (128 loc) · 5.66 KB
/
authentication_challenge_test.dart
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
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:http_parser/http_parser.dart';
import 'package:test/test.dart';
void main() {
group('parse', () {
_singleChallengeTests(AuthenticationChallenge.parse);
});
group('parseHeader', () {
group('with a single challenge', () {
_singleChallengeTests((challenge) {
final challenges = AuthenticationChallenge.parseHeader(challenge);
expect(challenges, hasLength(1));
return challenges.single;
});
});
test('parses multiple challenges', () {
final challenges = AuthenticationChallenge.parseHeader(
'scheme1 realm=fblthp, scheme2 realm=asdfg');
expect(challenges, hasLength(2));
expect(challenges.first.scheme, equals('scheme1'));
expect(challenges.first.parameters, equals({'realm': 'fblthp'}));
expect(challenges.last.scheme, equals('scheme2'));
expect(challenges.last.parameters, equals({'realm': 'asdfg'}));
});
test('parses multiple challenges with multiple parameters', () {
final challenges = AuthenticationChallenge.parseHeader(
'scheme1 realm=fblthp, foo=bar, scheme2 realm=asdfg, baz=bang');
expect(challenges, hasLength(2));
expect(challenges.first.scheme, equals('scheme1'));
expect(challenges.first.parameters,
equals({'realm': 'fblthp', 'foo': 'bar'}));
expect(challenges.last.scheme, equals('scheme2'));
expect(challenges.last.parameters,
equals({'realm': 'asdfg', 'baz': 'bang'}));
});
});
}
/// Tests to run for parsing a single challenge.
///
/// These are run on both [AuthenticationChallenge.parse] and
/// [AuthenticationChallenge.parseHeader], since they use almost entirely
/// separate code paths.
void _singleChallengeTests(
AuthenticationChallenge Function(String challenge) parseChallenge) {
test('parses a simple challenge', () {
final challenge = parseChallenge('scheme realm=fblthp');
expect(challenge.scheme, equals('scheme'));
expect(challenge.parameters, equals({'realm': 'fblthp'}));
});
test('parses multiple parameters', () {
final challenge = parseChallenge('scheme realm=fblthp, foo=bar, baz=qux');
expect(challenge.scheme, equals('scheme'));
expect(challenge.parameters,
equals({'realm': 'fblthp', 'foo': 'bar', 'baz': 'qux'}));
});
test('parses quoted string parameters', () {
final challenge =
parseChallenge('scheme realm="fblthp, foo=bar", baz="qux"');
expect(challenge.scheme, equals('scheme'));
expect(challenge.parameters,
equals({'realm': 'fblthp, foo=bar', 'baz': 'qux'}));
});
test('parses quoted string parameters with surrounding spaces', () {
final challenge =
parseChallenge('scheme realm= "fblthp, foo=bar" , baz= "qux" ');
expect(challenge.scheme, equals('scheme'));
expect(challenge.parameters,
equals({'realm': 'fblthp, foo=bar', 'baz': 'qux'}));
});
test('normalizes the case of the scheme', () {
final challenge = parseChallenge('ScHeMe realm=fblthp');
expect(challenge.scheme, equals('scheme'));
expect(challenge.parameters, equals({'realm': 'fblthp'}));
});
test('normalizes the case of the parameter name', () {
final challenge = parseChallenge('scheme ReAlM=fblthp');
expect(challenge.scheme, equals('scheme'));
expect(challenge.parameters, containsPair('realm', 'fblthp'));
});
test("doesn't normalize the case of the parameter value", () {
final challenge = parseChallenge('scheme realm=FbLtHp');
expect(challenge.scheme, equals('scheme'));
expect(challenge.parameters, containsPair('realm', 'FbLtHp'));
expect(challenge.parameters, isNot(containsPair('realm', 'fblthp')));
});
test('allows extra whitespace', () {
final challenge = parseChallenge(
' scheme\t \trealm\t = \tfblthp\t, \tfoo\t\r\n =\tbar\t');
expect(challenge.scheme, equals('scheme'));
expect(challenge.parameters, equals({'realm': 'fblthp', 'foo': 'bar'}));
});
test('allows an empty parameter', () {
final challenge = parseChallenge('scheme realm=fblthp, , foo=bar');
expect(challenge.scheme, equals('scheme'));
expect(challenge.parameters, equals({'realm': 'fblthp', 'foo': 'bar'}));
});
test('allows a leading comma', () {
final challenge = parseChallenge('scheme , realm=fblthp, foo=bar,');
expect(challenge.scheme, equals('scheme'));
expect(challenge.parameters, equals({'realm': 'fblthp', 'foo': 'bar'}));
});
test('allows a trailing comma', () {
final challenge = parseChallenge('scheme realm=fblthp, foo=bar, ,');
expect(challenge.scheme, equals('scheme'));
expect(challenge.parameters, equals({'realm': 'fblthp', 'foo': 'bar'}));
});
test('disallows only a scheme', () {
expect(() => parseChallenge('scheme'), throwsFormatException);
});
test('disallows a valueless parameter', () {
expect(() => parseChallenge('scheme realm'), throwsFormatException);
expect(() => parseChallenge('scheme realm='), throwsFormatException);
expect(
() => parseChallenge('scheme realm, foo=bar'), throwsFormatException);
});
test('requires a space after the scheme', () {
expect(() => parseChallenge('scheme\trealm'), throwsFormatException);
expect(() => parseChallenge('scheme\r\n\trealm='), throwsFormatException);
});
test('disallows junk after the parameters', () {
expect(
() => parseChallenge('scheme realm=fblthp foo'), throwsFormatException);
expect(() => parseChallenge('scheme realm=fblthp, foo=bar baz'),
throwsFormatException);
});
}