xjp-oidc 1.1.0

OIDC/OAuth2 SDK for Rust - Server and WASM support
Documentation
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
use josekit::{
    jwk::Jwk as JosekitJwk,
    jws::JwsHeader,
    jwt::{self, JwtPayload},
};
use serde_json::json;
use time::{Duration, OffsetDateTime};
use xjp_oidc::types::OidcProviderMetadata;
use xjp_oidc::{verify_id_token, Jwk, Jwks, MokaCacheImpl, NoOpCache, VerifyOptions};

// Helper function to create a test RSA key pair
fn create_test_keypair() -> (JosekitJwk, Jwk) {
    // Generate RSA key pair for testing
    let alg = josekit::jws::RS256;
    let mut jwk = JosekitJwk::generate_rsa_key(2048).unwrap();
    jwk.set_key_id("test-key-1");
    jwk.set_algorithm(alg.name());
    jwk.set_key_use("sig");

    // Convert to our Jwk type for JWKS endpoint
    let public_jwk = Jwk {
        kty: "RSA".to_string(),
        use_: "sig".to_string(),
        kid: "test-key-1".to_string(),
        alg: Some("RS256".to_string()),
        n: Some(jwk.parameter("n").unwrap().as_str().unwrap().to_string()),
        e: Some(jwk.parameter("e").unwrap().as_str().unwrap().to_string()),
        x: None,
        y: None,
        crv: None,
    };

    (jwk, public_jwk)
}

// Helper function to create and sign a test ID token
fn create_signed_id_token(jwk: &JosekitJwk, claims: serde_json::Value) -> String {
    let mut header = JwsHeader::new();
    header.set_token_type("JWT");
    header.set_algorithm("RS256");
    header.set_key_id("test-key-1");

    let payload = JwtPayload::from_map(claims.as_object().unwrap().clone()).unwrap();
    let signer = josekit::jws::RS256.signer_from_jwk(jwk).unwrap();
    let jwt = jwt::encode_with_signer(&payload, &header, &signer).unwrap();
    jwt
}

// Create HTTP client based on platform
#[cfg(all(not(target_arch = "wasm32"), feature = "http-reqwest"))]
fn create_http_client() -> xjp_oidc::ReqwestHttpClient {
    xjp_oidc::ReqwestHttpClient::default()
}

#[cfg(all(target_arch = "wasm32", feature = "http-wasm"))]
fn create_http_client() -> xjp_oidc::WasmHttpClient {
    xjp_oidc::WasmHttpClient::default()
}

#[tokio::test]
async fn test_verify_id_token_basic() {
    let mut server = mockito::Server::new_async().await;
    let issuer = server.url();

    // Create test keypair
    let (private_key, public_key) = create_test_keypair();

    // Setup JWKS endpoint
    let jwks = Jwks { keys: vec![public_key] };

    let _jwks_mock = server
        .mock("GET", "/jwks")
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(serde_json::to_string(&jwks).unwrap())
        .create_async()
        .await;

    // Setup discovery endpoint
    let metadata = OidcProviderMetadata {
        issuer: issuer.clone(),
        authorization_endpoint: format!("{}/authorize", issuer),
        token_endpoint: format!("{}/token", issuer),
        jwks_uri: format!("{}/jwks", issuer),
        userinfo_endpoint: None,
        end_session_endpoint: None,
        registration_endpoint: None,
        response_types_supported: Some(vec!["code".to_string()]),
        grant_types_supported: Some(vec!["authorization_code".to_string()]),
        scopes_supported: Some(vec!["openid".to_string()]),
        token_endpoint_auth_methods_supported: None,
        id_token_signing_alg_values_supported: Some(vec!["RS256".to_string()]),
        code_challenge_methods_supported: Some(vec!["S256".to_string()]),
    };

    let _discovery_mock = server
        .mock("GET", "/.well-known/openid-configuration")
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(serde_json::to_string(&metadata).unwrap())
        .create_async()
        .await;

    // Create ID token claims
    let now = OffsetDateTime::now_utc();
    let exp = now + Duration::hours(1);
    let iat = now;
    let auth_time = now - Duration::minutes(5);

    let claims = json!({
        "iss": issuer,
        "sub": "user123",
        "aud": "test-client",
        "exp": exp.unix_timestamp(),
        "iat": iat.unix_timestamp(),
        "auth_time": auth_time.unix_timestamp(),
        "nonce": "test-nonce",
        "amr": ["pwd", "otp"],
        "xjp_admin": true,
    });

    let id_token = create_signed_id_token(&private_key, claims);

    // Verify the token
    let http_client = create_http_client();
    let jwks_cache = MokaCacheImpl::new(10);

    let opts = VerifyOptions {
        issuer: &issuer,
        audience: "test-client",
        nonce: Some("test-nonce"),
        max_age_sec: None,
        clock_skew_sec: None,
        http: &http_client,
        cache: &jwks_cache,
    };

    let result = verify_id_token(&id_token, opts).await;

    assert!(result.is_ok());

    let verified_token = result.unwrap();
    assert_eq!(verified_token.iss, issuer);
    assert_eq!(verified_token.sub, "user123");
    assert_eq!(verified_token.aud, "test-client");
    assert_eq!(verified_token.amr, Some(vec!["pwd".to_string(), "otp".to_string()]));
    assert_eq!(verified_token.xjp_admin, Some(true));
    assert!(verified_token.auth_time.is_some());
}

#[tokio::test]
async fn test_verify_id_token_invalid_signature() {
    let mut server = mockito::Server::new_async().await;
    let issuer = server.url();

    // Create two different keypairs
    let (private_key1, _) = create_test_keypair();
    let (_, public_key2) = create_test_keypair();

    // Setup JWKS endpoint with different public key
    let jwks = Jwks {
        keys: vec![public_key2], // Wrong public key
    };

    let _jwks_mock = server
        .mock("GET", "/jwks")
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(serde_json::to_string(&jwks).unwrap())
        .create_async()
        .await;

    // Setup discovery endpoint
    let metadata = OidcProviderMetadata {
        issuer: issuer.clone(),
        authorization_endpoint: format!("{}/authorize", issuer),
        token_endpoint: format!("{}/token", issuer),
        jwks_uri: format!("{}/jwks", issuer),
        userinfo_endpoint: None,
        end_session_endpoint: None,
        registration_endpoint: None,
        response_types_supported: Some(vec!["code".to_string()]),
        grant_types_supported: Some(vec!["authorization_code".to_string()]),
        scopes_supported: Some(vec!["openid".to_string()]),
        token_endpoint_auth_methods_supported: None,
        id_token_signing_alg_values_supported: Some(vec!["RS256".to_string()]),
        code_challenge_methods_supported: Some(vec!["S256".to_string()]),
    };

    let _discovery_mock = server
        .mock("GET", "/.well-known/openid-configuration")
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(serde_json::to_string(&metadata).unwrap())
        .create_async()
        .await;

    // Create ID token signed with different key
    let now = OffsetDateTime::now_utc();
    let claims = json!({
        "iss": issuer,
        "sub": "user123",
        "aud": "test-client",
        "exp": (now + Duration::hours(1)).unix_timestamp(),
        "iat": now.unix_timestamp(),
    });

    let id_token = create_signed_id_token(&private_key1, claims);

    // Verify should fail due to signature mismatch
    let http_client = create_http_client();
    let jwks_cache = NoOpCache;

    let opts = VerifyOptions {
        issuer: &issuer,
        audience: "test-client",
        nonce: None,
        max_age_sec: None,
        clock_skew_sec: None,
        http: &http_client,
        cache: &jwks_cache,
    };

    let result = verify_id_token(&id_token, opts).await;

    assert!(result.is_err());
}

#[tokio::test]
async fn test_verify_id_token_expired() {
    let mut server = mockito::Server::new_async().await;
    let issuer = server.url();

    let (private_key, public_key) = create_test_keypair();

    let jwks = Jwks { keys: vec![public_key] };

    let _jwks_mock = server
        .mock("GET", "/jwks")
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(serde_json::to_string(&jwks).unwrap())
        .create_async()
        .await;

    let metadata = OidcProviderMetadata {
        issuer: issuer.clone(),
        authorization_endpoint: format!("{}/authorize", issuer),
        token_endpoint: format!("{}/token", issuer),
        jwks_uri: format!("{}/jwks", issuer),
        userinfo_endpoint: None,
        end_session_endpoint: None,
        registration_endpoint: None,
        response_types_supported: Some(vec!["code".to_string()]),
        grant_types_supported: Some(vec!["authorization_code".to_string()]),
        scopes_supported: Some(vec!["openid".to_string()]),
        token_endpoint_auth_methods_supported: None,
        id_token_signing_alg_values_supported: Some(vec!["RS256".to_string()]),
        code_challenge_methods_supported: Some(vec!["S256".to_string()]),
    };

    let _discovery_mock = server
        .mock("GET", "/.well-known/openid-configuration")
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(serde_json::to_string(&metadata).unwrap())
        .create_async()
        .await;

    // Create expired ID token
    let now = OffsetDateTime::now_utc();
    let claims = json!({
        "iss": issuer,
        "sub": "user123",
        "aud": "test-client",
        "exp": (now - Duration::hours(1)).unix_timestamp(), // Expired
        "iat": (now - Duration::hours(2)).unix_timestamp(),
    });

    let id_token = create_signed_id_token(&private_key, claims);

    let http_client = create_http_client();
    let jwks_cache = NoOpCache;

    let opts = VerifyOptions {
        issuer: &issuer,
        audience: "test-client",
        nonce: None,
        max_age_sec: None,
        clock_skew_sec: None,
        http: &http_client,
        cache: &jwks_cache,
    };

    let result = verify_id_token(&id_token, opts).await;

    assert!(result.is_err());
}

#[tokio::test]
async fn test_verify_id_token_wrong_audience() {
    let mut server = mockito::Server::new_async().await;
    let issuer = server.url();

    let (private_key, public_key) = create_test_keypair();

    let jwks = Jwks { keys: vec![public_key] };

    let _jwks_mock = server
        .mock("GET", "/jwks")
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(serde_json::to_string(&jwks).unwrap())
        .create_async()
        .await;

    let metadata = OidcProviderMetadata {
        issuer: issuer.clone(),
        authorization_endpoint: format!("{}/authorize", issuer),
        token_endpoint: format!("{}/token", issuer),
        jwks_uri: format!("{}/jwks", issuer),
        userinfo_endpoint: None,
        end_session_endpoint: None,
        registration_endpoint: None,
        response_types_supported: Some(vec!["code".to_string()]),
        grant_types_supported: Some(vec!["authorization_code".to_string()]),
        scopes_supported: Some(vec!["openid".to_string()]),
        token_endpoint_auth_methods_supported: None,
        id_token_signing_alg_values_supported: Some(vec!["RS256".to_string()]),
        code_challenge_methods_supported: Some(vec!["S256".to_string()]),
    };

    let _discovery_mock = server
        .mock("GET", "/.well-known/openid-configuration")
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(serde_json::to_string(&metadata).unwrap())
        .create_async()
        .await;

    let now = OffsetDateTime::now_utc();
    let claims = json!({
        "iss": issuer,
        "sub": "user123",
        "aud": "wrong-client", // Wrong audience
        "exp": (now + Duration::hours(1)).unix_timestamp(),
        "iat": now.unix_timestamp(),
    });

    let id_token = create_signed_id_token(&private_key, claims);

    let http_client = create_http_client();
    let jwks_cache = NoOpCache;

    let opts = VerifyOptions {
        issuer: &issuer,
        audience: "test-client", // Expected audience
        nonce: None,
        max_age_sec: None,
        clock_skew_sec: None,
        http: &http_client,
        cache: &jwks_cache,
    };

    let result = verify_id_token(&id_token, opts).await;

    assert!(result.is_err());
}

#[tokio::test]
async fn test_verify_id_token_nonce_mismatch() {
    let mut server = mockito::Server::new_async().await;
    let issuer = server.url();

    let (private_key, public_key) = create_test_keypair();

    let jwks = Jwks { keys: vec![public_key] };

    let _jwks_mock = server
        .mock("GET", "/jwks")
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(serde_json::to_string(&jwks).unwrap())
        .create_async()
        .await;

    let metadata = OidcProviderMetadata {
        issuer: issuer.clone(),
        authorization_endpoint: format!("{}/authorize", issuer),
        token_endpoint: format!("{}/token", issuer),
        jwks_uri: format!("{}/jwks", issuer),
        userinfo_endpoint: None,
        end_session_endpoint: None,
        registration_endpoint: None,
        response_types_supported: Some(vec!["code".to_string()]),
        grant_types_supported: Some(vec!["authorization_code".to_string()]),
        scopes_supported: Some(vec!["openid".to_string()]),
        token_endpoint_auth_methods_supported: None,
        id_token_signing_alg_values_supported: Some(vec!["RS256".to_string()]),
        code_challenge_methods_supported: Some(vec!["S256".to_string()]),
    };

    let _discovery_mock = server
        .mock("GET", "/.well-known/openid-configuration")
        .with_status(200)
        .with_header("content-type", "application/json")
        .with_body(serde_json::to_string(&metadata).unwrap())
        .create_async()
        .await;

    let now = OffsetDateTime::now_utc();
    let claims = json!({
        "iss": issuer,
        "sub": "user123",
        "aud": "test-client",
        "exp": (now + Duration::hours(1)).unix_timestamp(),
        "iat": now.unix_timestamp(),
        "nonce": "wrong-nonce",
    });

    let id_token = create_signed_id_token(&private_key, claims);

    let http_client = create_http_client();
    let jwks_cache = NoOpCache;

    let opts = VerifyOptions {
        issuer: &issuer,
        audience: "test-client",
        nonce: Some("expected-nonce"), // Different nonce expected
        max_age_sec: None,
        clock_skew_sec: None,
        http: &http_client,
        cache: &jwks_cache,
    };

    let result = verify_id_token(&id_token, opts).await;

    assert!(result.is_err());
}