-
Notifications
You must be signed in to change notification settings - Fork 1
/
mod.rs
506 lines (423 loc) · 17.6 KB
/
mod.rs
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
use crux_core::render::Render;
use crux_http::Http;
use crux_macros::Effect;
use log::info;
use serde::{Deserialize, Serialize};
use webauthn_rs_proto::{
CreationChallengeResponse, PublicKeyCredential, RegisterPublicKeyCredential,
RequestChallengeResponse,
};
use crate::passkey::{self, Passkey};
#[derive(Serialize, Deserialize, Clone, Debug)]
pub enum Event {
// driving...
ServerUrl(String),
Validate(String),
Register(String),
Login(String),
// driven...
#[serde(skip)]
GetCreationChallenge(String), // register
#[serde(skip)]
GetRequestChallenge(String), // login
#[serde(skip)]
CreationChallenge(crux_http::Result<crux_http::Response<CreationChallengeResponse>>), // register
#[serde(skip)]
RequestChallenge(crux_http::Result<crux_http::Response<RequestChallengeResponse>>), // login
#[serde(skip)]
RegisterCredential(passkey::Result<RegisterPublicKeyCredential>), // register
#[serde(skip)]
Credential(passkey::Result<PublicKeyCredential>), // login
#[serde(skip)]
CredentialRegistered(crux_http::Result<crux_http::Response<Vec<u8>>>), // register
#[serde(skip)]
CredentialVerified(crux_http::Result<crux_http::Response<Vec<u8>>>), // login
#[serde(skip)]
Error(String),
}
#[derive(Serialize, Deserialize, Default, Clone, Debug, PartialEq, Eq)]
pub enum Status {
#[default]
None,
Info(String),
Error(String),
}
#[derive(Default, Debug)]
pub struct Model {
server_url: Option<String>,
user_name: String,
pub status: Status,
}
#[derive(Serialize, Deserialize, Clone)]
pub struct ViewModel {
pub status: Status,
}
#[cfg_attr(feature = "typegen", derive(crux_macros::Export))]
#[derive(Effect)]
pub struct Capabilities {
pub http: Http<Event>,
pub passkey: Passkey<Event>,
pub render: Render<Event>,
}
#[derive(Default)]
pub struct App;
impl crux_core::App for App {
type Event = Event;
type Model = Model;
type ViewModel = ViewModel;
type Capabilities = Capabilities;
fn update(&self, event: Self::Event, model: &mut Self::Model, caps: &Self::Capabilities) {
info!("update: {:?}", event);
let server_url = model.server_url.as_deref().unwrap_or("https://localhost");
match event {
Event::ServerUrl(url) => {
model.server_url = Some(url);
}
Event::Validate(user_name) => {
model.status = if user_name.is_empty() {
Status::Error(String::from("user name cannot be empty"))
} else {
Status::None
};
caps.render.render();
}
Event::Register(user_name) => {
self.update(Event::Validate(user_name.clone()), model, caps);
if model.status == Status::None {
info!("registering user: {}", user_name);
model.user_name = user_name.clone();
model.status = Status::Info(format!(r#"registering "{user_name}"..."#));
caps.render.render();
self.update(Event::GetCreationChallenge(user_name), model, caps);
}
}
Event::GetCreationChallenge(user_name) => {
info!("getting creation challenge for user: {}", user_name);
caps.http
.get(format!("{server_url}/auth/register_start/{user_name}"))
.expect_json()
.send(Event::CreationChallenge);
}
Event::CreationChallenge(Ok(mut response)) => {
let ccr = response.take_body().expect("http response has a body");
let bytes = serde_json::to_vec(&ccr).expect("json serializable");
info!("ask authenticator to create credential");
caps.passkey
.create_credential(bytes, Event::RegisterCredential);
}
Event::CreationChallenge(Err(e)) => {
self.update(
Event::Error(format!("failed to get creation challenge: {:?}", e)),
model,
caps,
);
}
Event::RegisterCredential(Ok(cred)) => {
info!("registering credential");
caps.http
.post(format!("{server_url}/auth/register_finish"))
.body_json(&cred)
.expect("json serializable")
.send(Event::CredentialRegistered);
}
Event::RegisterCredential(Err(e)) => {
self.update(
Event::Error(format!("failed to get new credential: {:?}", e)),
model,
caps,
);
}
Event::CredentialRegistered(Ok(_)) => {
model.status = Status::Info(format!(
r#"registered "{user_name}""#,
user_name = model.user_name
));
caps.render.render();
}
Event::CredentialRegistered(Err(e)) => {
self.update(
Event::Error(format!("failed to register: {:?}", e)),
model,
caps,
);
}
Event::Login(user_name) => {
self.update(Event::Validate(user_name.clone()), model, caps);
if model.status == Status::None {
info!("logging in user: {}", user_name);
model.user_name = user_name.clone();
model.status = Status::Info(format!(r#"logging in "{user_name}"..."#));
caps.render.render();
self.update(Event::GetRequestChallenge(user_name), model, caps);
}
}
Event::GetRequestChallenge(user_name) => {
info!("getting request challenge for user: {}", user_name);
caps.http
.get(format!("{server_url}/auth/login_start/{user_name}"))
.expect_json()
.send(Event::RequestChallenge);
}
Event::RequestChallenge(Ok(mut response)) => {
let rcr = response.take_body().expect("http response has a body");
let bytes = serde_json::to_vec(&rcr).expect("json serializable");
info!("ask authenticator to request credential");
caps.passkey.request_credential(bytes, Event::Credential);
}
Event::RequestChallenge(Err(e)) => {
self.update(
Event::Error(format!("failed to get request challenge: {:?}", e)),
model,
caps,
);
}
Event::Credential(Ok(cred)) => {
info!("verifying credential");
caps.http
.post(format!("{server_url}/auth/login_finish"))
.body_json(&cred)
.expect("json serializable")
.send(Event::CredentialVerified);
}
Event::Credential(Err(e)) => {
self.update(
Event::Error(format!("failed to get credential: {:?}", e)),
model,
caps,
);
}
Event::CredentialVerified(Ok(_)) => {
model.status = Status::Info(format!(
r#"logged in "{user_name}""#,
user_name = model.user_name
));
caps.render.render();
}
Event::CredentialVerified(Err(e)) => {
self.update(
Event::Error(format!("failed to login: {:?}", e)),
model,
caps,
);
}
Event::Error(e) => {
model.status = Status::Error(e);
caps.render.render();
}
};
}
fn view(&self, model: &Self::Model) -> Self::ViewModel {
ViewModel {
status: model.status.clone(),
}
}
}
#[cfg(test)]
mod tests {
use crate::passkey::{PasskeyOperation, PasskeyOutput};
use super::*;
use assert_let_bind::assert_let;
use assert_matches::assert_matches;
use crux_core::{assert_effect, testing::AppTester};
use crux_http::protocol::{HttpRequest, HttpResponse};
#[test]
fn validation_success() {
let app = AppTester::<App, _>::default();
let mut model = Model::default();
let event = Event::Validate(String::from("stu"));
let update = app.update(event, &mut model);
assert_effect!(update, Effect::Render(_));
insta::assert_yaml_snapshot!(app.view(&mut model), @r###"
---
status: None
"###);
}
#[test]
fn validation_failure() {
let app = AppTester::<App, _>::default();
let mut model = Model::default();
let event = Event::Validate(String::new());
let update = app.update(event, &mut model);
assert_effect!(update, Effect::Render(_));
insta::assert_yaml_snapshot!(app.view(&mut model), @r###"
---
status:
Error: user name cannot be empty
"###);
}
#[test]
fn registration() {
let app = AppTester::<App, _>::default();
let server_url = "https://localhost";
let mut model = Model {
server_url: Some(server_url.to_owned()),
..Default::default()
};
let event = Event::Register(String::from("stu"));
let mut update = app.update(event, &mut model);
assert_effect!(update, Effect::Render(_));
insta::assert_yaml_snapshot!(app.view(&mut model), @r###"
---
status:
Info: "registering \"stu\"..."
"###);
// check that the app emitted an HTTP request,
// capturing the request in the process
assert_let!(Effect::Http(request), &mut update.effects[2]); // 2 renders before this
// check that the request is a GET to the correct URL
let actual = &request.operation;
let expected = &HttpRequest::get(format!("{server_url}/auth/register_start/stu")).build();
assert_eq!(actual, expected);
// resolve the request with a simulated response from the web API
let response = HttpResponse::ok()
.body(include_str!("./fixtures/creation_options.json"))
.build();
let update = app.resolve(request, response).expect("an update");
// check that the app emitted a CreationChallenge event,
let actual = update.events[0].clone();
let ccr = assert_matches!(actual.clone(), Event::CreationChallenge(Ok(mut r)) => r.take_body().unwrap());
assert_eq!(
ccr.public_key.challenge.to_string(),
"LnWGR_0kcTrx_qqFPQEZzfsogvic6bSLfXnihBzUYAg"
);
// push the event into the app
let mut update = app.update(actual, &mut model);
// check that the app emitted a CreateCredential effect,
assert_let!(Effect::Passkey(request), &mut update.effects[0]);
// check that the request is to create a credential
let actual = &request.operation;
let bytes = serde_json::to_vec(&ccr).unwrap();
let expected = &PasskeyOperation::CreateCredential(bytes);
assert_eq!(actual, expected);
let cred = include_str!("./fixtures/register_credential.json");
let response = PasskeyOutput::RegisterCredential(cred.as_bytes().to_vec());
let update = app.resolve(request, response).expect("an update");
// check that the app emitted a RegisterCredential event
let actual = update.events[0].clone();
let cred =
assert_matches!(actual.clone(), Event::RegisterCredential(cred) => cred.unwrap());
assert_eq!(cred.id, "QeSrHN1qZhaKqtapAs0zdg");
// push the event into the app
let mut update = app.update(actual, &mut model);
// check that the app emitted an HTTP request,
// capturing the request in the process
assert_let!(Effect::Http(request), &mut update.effects[0]);
// check that the request is a POST to the correct URL, with correct headers and body
let actual = &request.operation;
let expected = &HttpRequest::post(format!("{server_url}/auth/register_finish"))
.header("content-type", "application/json")
.json(cred)
.build();
assert_eq!(actual, expected);
// resolve the request with a simulated response from the web API
let response = HttpResponse::ok().build();
let update = app.resolve(request, response).expect("an update");
// check that the app emitted a CredentialRegistered event
let actual = update.events[0].clone();
assert_matches!(actual, Event::CredentialRegistered(Ok(_)));
// push the event into the app
let update = app.update(actual, &mut model);
// check that the app asked us to render
assert_effect!(update, Effect::Render(_));
}
#[test]
fn login() {
let app = AppTester::<App, _>::default();
let server_url = "https://localhost";
let mut model = Model {
server_url: Some(server_url.to_owned()),
..Default::default()
};
let event = Event::Login(String::from("stu"));
let mut update = app.update(event, &mut model);
assert_effect!(update, Effect::Render(_));
insta::assert_yaml_snapshot!(app.view(&mut model), @r###"
---
status:
Info: "logging in \"stu\"..."
"###);
// check that the app emitted an HTTP request,
// capturing the request in the process
assert_let!(Effect::Http(request), &mut update.effects[2]); // 2 renders before this
// check that the request is a GET to the correct URL
let actual = &request.operation;
let expected = &HttpRequest::get(format!("{server_url}/auth/login_start/stu")).build();
assert_eq!(actual, expected);
// resolve the request with a simulated response from the web API
let response = HttpResponse::ok()
.body(include_str!("./fixtures/request_options.json"))
.build();
let update = app.resolve(request, response).expect("an update");
// check that the app emitted a RequestChallenge event,
let actual = update.events[0].clone();
let rcr = assert_matches!(actual.clone(), Event::RequestChallenge(Ok(mut r)) => r.take_body().unwrap());
assert_eq!(
rcr.public_key.challenge.to_string(),
"5DDNuq-9a0bRif8Z35MfRZ6Gu2WfwqK0DSss34u6u4Q"
);
// push the event into the app
let mut update = app.update(actual, &mut model);
// check that the app emitted a RequestCredential effect,
assert_let!(Effect::Passkey(request), &mut update.effects[0]);
// check that the request is to request a credential
let actual = &request.operation;
let bytes = serde_json::to_vec(&rcr).unwrap();
let expected = &PasskeyOperation::RequestCredential(bytes);
assert_eq!(actual, expected);
let cred = include_str!("./fixtures/credential.json");
let response = PasskeyOutput::Credential(cred.as_bytes().to_vec());
let update = app.resolve(request, response).expect("an update");
// check that the app emitted a Credential event
let actual = update.events[0].clone();
let cred = assert_matches!(actual.clone(), Event::Credential(cred) => cred.unwrap());
assert_eq!(cred.id, "QeSrHN1qZhaKqtapAs0zdg");
// push the event into the app
let mut update = app.update(actual, &mut model);
// check that the app emitted an HTTP request,
// capturing the request in the process
assert_let!(Effect::Http(request), &mut update.effects[0]);
// check that the request is a POST to the correct URL, with correct headers and body
let actual = &request.operation;
let expected = &HttpRequest::post(format!("{server_url}/auth/login_finish"))
.header("content-type", "application/json")
.json(cred)
.build();
assert_eq!(actual, expected);
// resolve the request with a simulated response from the web API
let response = HttpResponse::ok().build();
let update = app.resolve(request, response).expect("an update");
// check that the app emitted a CredentialVerified event
let actual = update.events[0].clone();
assert_matches!(actual, Event::CredentialVerified(Ok(_)));
// push the event into the app
let update = app.update(actual, &mut model);
// check that the app asked us to render
assert_effect!(update, Effect::Render(_));
}
#[test]
fn registering_with_empty_username() {
let app = AppTester::<App, _>::default();
let mut model = Model::default();
let event = Event::Register(String::new());
let update = app.update(event, &mut model);
assert_effect!(update, Effect::Render(_));
insta::assert_yaml_snapshot!(app.view(&mut model), @r###"
---
status:
Error: user name cannot be empty
"###);
}
#[test]
fn logging_in_with_empty_username() {
let app = AppTester::<App, _>::default();
let mut model = Model::default();
let event = Event::Login(String::new());
let update = app.update(event, &mut model);
assert_effect!(update, Effect::Render(_));
insta::assert_yaml_snapshot!(app.view(&mut model), @r###"
---
status:
Error: user name cannot be empty
"###);
}
}