-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathIDXExtractFormValueTests.swift
More file actions
249 lines (236 loc) · 10.6 KB
/
Copy pathIDXExtractFormValueTests.swift
File metadata and controls
249 lines (236 loc) · 10.6 KB
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
/*
* Copyright (c) 2021-Present, Okta, Inc. and/or its affiliates. All rights reserved.
* The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (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.
*/
import XCTest
@testable import OktaIdxAuth
#if !COCOAPODS
import JSON
#endif
class IDXExtractFormValueTests: XCTestCase {
typealias Form = Remediation.Form
func testPlainDefaultValues() throws {
let form = try XCTUnwrap(Form(fields: [
Form.Field(name: "stateHandle",
value: "abcEasyAs123",
visible: false,
mutable: false,
required: true,
secret: false)
]))
let result = try form.formValue
XCTAssertEqual(result, [
"stateHandle": "abcEasyAs123"
])
}
func testPlainWithAdditiveValues() throws {
let form = try XCTUnwrap(Form(fields: [
Form.Field(name: "stateHandle",
value: "abcEasyAs123",
visible: false,
mutable: false,
required: true,
secret: false),
Form.Field(name: "identifier",
visible: true,
mutable: true,
required: true,
secret: false)
]))
form["identifier"]?.value = "me@example.com"
let result = try form.formValue
XCTAssertEqual(result, [
"stateHandle": "abcEasyAs123",
"identifier": "me@example.com"
])
}
func testNestedWithRootDefaults() throws {
let form = try XCTUnwrap(Form(fields: [
Form.Field(name: "stateHandle",
value: "abcEasyAs123",
visible: false,
mutable: false,
required: true,
secret: false),
Form.Field(name: "credentials",
type: "object",
visible: true,
mutable: true,
required: true,
secret: false,
form: Form(fields: [
Form.Field(name: "passcode",
label: "Password",
visible: true,
mutable: true,
required: true,
secret: true)
]))
]))
form["credentials.passcode"]?.value = "password"
let result = try form.formValue
XCTAssertEqual(result["stateHandle"], "abcEasyAs123")
XCTAssertEqual(result["credentials"], .object(["passcode": "password"]))
}
// OKTA-1209004: A named field with a nested `form` containing multiple
// child fields (e.g. WebAuthn's `credentials` object) must merge all of
// its children into a single object, not overwrite with only the last one.
func testNestedWithMultipleChildValues() throws {
let form = try XCTUnwrap(Form(fields: [
Form.Field(name: "stateHandle",
value: "abcEasyAs123",
visible: false,
mutable: false,
required: true,
secret: false),
Form.Field(name: "credentials",
type: "object",
visible: true,
mutable: true,
required: true,
secret: false,
form: Form(fields: [
Form.Field(name: "authenticatorData",
visible: true,
mutable: true,
required: true,
secret: false),
Form.Field(name: "clientData",
visible: true,
mutable: true,
required: true,
secret: false),
Form.Field(name: "signatureData",
visible: true,
mutable: true,
required: true,
secret: false)
]))
]))
form["credentials.authenticatorData"]?.value = "IMIVPkdt3y..."
form["credentials.clientData"]?.value = "eyJ0e..."
form["credentials.signatureData"]?.value = "MEUC..."
let result = try form.formValue
XCTAssertEqual(result["stateHandle"], "abcEasyAs123")
XCTAssertEqual(result["credentials"], [
"authenticatorData": "IMIVPkdt3y...",
"clientData": "eyJ0e...",
"signatureData": "MEUC..."
])
}
func testNestedWithNestedDefaults() throws {
let nestedForm = Form.Field(label: "Security Question",
visible: true,
mutable: true,
required: true,
secret: true,
form: Form(fields: [
Form.Field(name: "id",
value: "idvalue",
visible: true,
mutable: false,
required: true,
secret: false),
Form.Field(name: "methodType",
value: "security_question",
visible: true,
mutable: false,
required: false,
secret: false)
]))
let form = try XCTUnwrap(Form(fields: [
Form.Field(name: "stateHandle",
value: "abcEasyAs123",
visible: false,
mutable: false,
required: true,
secret: false),
Form.Field(name: "authenticator",
type: "object",
visible: true,
mutable: true,
required: true,
secret: false,
options: [nestedForm])
]))
form["authenticator"]?.selectedOption = nestedForm
let result = try form.formValue
XCTAssertEqual(result["stateHandle"], "abcEasyAs123")
XCTAssertEqual(result["authenticator"], [
"id": "idvalue",
"methodType": "security_question"
])
}
func testNestedWithNestedDefaultsAndValues() throws {
let smsOption = Form.Field(label: "SMS",
value: "sms",
visible: true,
mutable: true,
required: false,
secret: false)
let voiceOption = Form.Field(label: "Voice call",
value: "voice",
visible: true,
mutable: true,
required: false,
secret: false)
let nestedForm = Form.Field(label: "Phone",
visible: true,
mutable: true,
required: true,
secret: true,
form: Form(fields: [
Form.Field(name: "id",
value: "idvalue",
visible: true,
mutable: false,
required: true,
secret: false),
Form.Field(name: "methodType",
type: "string",
visible: true,
mutable: true,
required: false,
secret: false,
options: [ smsOption, voiceOption ]),
Form.Field(name: "phoneNumber",
label: "Phone number",
visible: true,
mutable: true,
required: false,
secret: false),
]))
let form = try XCTUnwrap(Form(fields: [
Form.Field(name: "stateHandle",
value: "abcEasyAs123",
visible: false,
mutable: false,
required: true,
secret: false),
Form.Field(name: "authenticator",
type: "object",
visible: true,
mutable: true,
required: true,
secret: false,
options: [ nestedForm ])
]))
form["authenticator"]?.selectedOption = nestedForm
nestedForm.form?["methodType"]?.selectedOption = smsOption
nestedForm.form?["phoneNumber"]?.value = "+1 123-555-1234"
let result = try form.formValue
XCTAssertEqual(result["stateHandle"], "abcEasyAs123")
XCTAssertEqual(result["authenticator"], [
"id": "idvalue",
"methodType": "sms",
"phoneNumber": "+1 123-555-1234"
])
}
}