cedarling 0.0.44

The Cedarling: a high-performance local authorization service powered by the Rust Cedar Engine.
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
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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
// This software is available under the Apache-2.0 license.
// See https://www.apache.org/licenses/LICENSE-2.0.txt for full text.
//
// Copyright (c) 2024, Gluu, Inc.

//! Integration tests for the Data API.
//!
//! These tests verify:
//! - End-to-end authorization with pushed data
//! - Policy evaluation accessing `context.data`
//! - Multiple Cedarling instances (isolation)
//! - Data lifecycle management

use std::time::Duration;

use serde_json::json;
use test_utils::assert_eq;
use tokio::test;

use super::utils::*;
use crate::authz::request::EntityData;
use crate::tests::utils::cedarling_util::get_cedarling_with_callback;
use crate::{DataApi, RequestUnsigned};

// Policy store that includes policies checking context.data
static POLICY_STORE_WITH_DATA_ACCESS: &str = r#"
cedar_version: v4.0.0
policy_stores:
  data_api_test_store:
    cedar_version: v4.0.0
    name: "Data API Test Policy Store"
    description: "Test policy store for Data API integration tests"
    policies:
      allow_premium_users:
        description: "Policy that checks context.data.user_level"
        policy_content:
          encoding: none
          content_type: cedar
          body: |-
            permit(
              principal is Jans::TestPrincipal1,
              action == Jans::Action::"AccessPremiumContent",
              resource is Jans::Document
            ) when {
              context has data && context.data has user_level && context.data.user_level == "premium"
            };
      allow_feature_flag:
        description: "Policy that checks context.data.feature_flags"
        policy_content:
          encoding: none
          content_type: cedar
          body: |-
            permit(
              principal is Jans::TestPrincipal1,
              action == Jans::Action::"UseFeature",
              resource is Jans::Document
            ) when {
              context has data && context.data has feature_enabled && context.data.feature_enabled == true
            };
      allow_basic_access:
        description: "Policy that always allows basic access (no data check)"
        policy_content:
          encoding: none
          content_type: cedar
          body: |-
            permit(
              principal is Jans::TestPrincipal1,
              action == Jans::Action::"BasicAccess",
              resource is Jans::Document
            );
      allow_nested_data:
        description: "Policy that checks nested data"
        policy_content:
          encoding: none
          content_type: cedar
          body: |-
            permit(
              principal is Jans::TestPrincipal1,
              action == Jans::Action::"NestedAccess",
              resource is Jans::Document
            ) when {
              context has data && context.data has config && context.data.config has enabled && context.data.config.enabled == true
            };
    schema:
      encoding: none
      content_type: cedar
      body: |-
        namespace Jans {
          entity TestPrincipal1;
          entity Document;
          type DataConfig = {"enabled": Bool};
          type DataContext = {
            "user_level"?: String,
            "feature_enabled"?: Bool,
            "config"?: DataConfig
          };
          type Context = {
            "data"?: DataContext
          };
          action "AccessPremiumContent" appliesTo {
            principal: [TestPrincipal1],
            resource: [Document],
            context: Context
          };
          action "UseFeature" appliesTo {
            principal: [TestPrincipal1],
            resource: [Document],
            context: Context
          };
          action "BasicAccess" appliesTo {
            principal: [TestPrincipal1],
            resource: [Document],
            context: Context
          };
          action "NestedAccess" appliesTo {
            principal: [TestPrincipal1],
            resource: [Document],
            context: Context
          };
        }
"#;

fn create_test_request(action: &str) -> RequestUnsigned {
    RequestUnsigned {
        action: format!("Jans::Action::\"{action}\""),
        context: json!({}),
        principal: Some(
            EntityData::deserialize(json!({
                "cedar_entity_mapping": {
                    "entity_type": "Jans::TestPrincipal1",
                    "id": "test_user_1"
                }
            }))
            .unwrap(),
        ),
        resource: EntityData::deserialize(json!({
            "cedar_entity_mapping": {
                "entity_type": "Jans::Document",
                "id": "doc_1"
            }
        }))
        .unwrap(),
    }
}

// =============================================================================
// End-to-End Authorization with Pushed Data
// =============================================================================

#[test]
async fn test_authorization_with_pushed_data_allows_access() {
    let cedarling = get_cedarling_with_callback(
        PolicyStoreSource::Yaml(POLICY_STORE_WITH_DATA_ACCESS.to_string()),
        |_| {},
    )
    .await;

    // Push data that satisfies the policy
    cedarling
        .push_data_ctx(
            "user_level",
            json!("premium"),
            Some(Duration::from_secs(60)),
        )
        .expect("push_data_ctx should succeed");

    // Verify data was pushed correctly
    let data = cedarling
        .get_data_ctx("user_level")
        .expect("get_data_ctx should succeed");
    assert_eq!(
        data,
        Some(json!("premium")),
        "Data should be stored correctly"
    );

    // Verify the authorization succeeds
    let request = create_test_request("AccessPremiumContent");
    let result = cedarling
        .authorize_unsigned(request)
        .await
        .expect("authorization should succeed");

    assert!(result.decision, "Premium user should be allowed access");
}

#[test]
async fn test_authorization_without_pushed_data_denies_access() {
    let cedarling = get_cedarling_with_callback(
        PolicyStoreSource::Yaml(POLICY_STORE_WITH_DATA_ACCESS.to_string()),
        |_| {},
    )
    .await;

    // Don't push any data - policy requires context.data.user_level == "premium"
    let request = create_test_request("AccessPremiumContent");
    let result = cedarling
        .authorize_unsigned(request)
        .await
        .expect("authorization should succeed");

    assert!(
        !result.decision,
        "Without pushed data, access should be denied"
    );
}

#[test]
async fn test_authorization_with_wrong_data_value_denies_access() {
    let cedarling = get_cedarling_with_callback(
        PolicyStoreSource::Yaml(POLICY_STORE_WITH_DATA_ACCESS.to_string()),
        |_| {},
    )
    .await;

    // Push data with wrong value
    cedarling
        .push_data_ctx("user_level", json!("basic"), Some(Duration::from_secs(60)))
        .expect("push_data_ctx should succeed");

    let request = create_test_request("AccessPremiumContent");
    let result = cedarling
        .authorize_unsigned(request)
        .await
        .expect("authorization should succeed");

    assert!(
        !result.decision,
        "With wrong data value, access should be denied"
    );
}

#[test]
async fn test_authorization_with_boolean_flag() {
    let cedarling = get_cedarling_with_callback(
        PolicyStoreSource::Yaml(POLICY_STORE_WITH_DATA_ACCESS.to_string()),
        |_| {},
    )
    .await;

    // Push feature flag as true
    cedarling
        .push_data_ctx(
            "feature_enabled",
            json!(true),
            Some(Duration::from_secs(60)),
        )
        .expect("push_data_ctx should succeed");

    let request = create_test_request("UseFeature");
    let result = cedarling
        .authorize_unsigned(request)
        .await
        .expect("authorization should succeed");

    assert!(
        result.decision,
        "Feature should be allowed when flag is true"
    );
}

#[test]
async fn test_authorization_with_nested_data() {
    let cedarling = get_cedarling_with_callback(
        PolicyStoreSource::Yaml(POLICY_STORE_WITH_DATA_ACCESS.to_string()),
        |_| {},
    )
    .await;

    // Push nested configuration data (only fields declared in schema)
    cedarling
        .push_data_ctx(
            "config",
            json!({"enabled": true}),
            Some(Duration::from_secs(60)),
        )
        .expect("push_data_ctx should succeed");

    let request = create_test_request("NestedAccess");
    let result = cedarling
        .authorize_unsigned(request)
        .await
        .expect("authorization should succeed");

    assert!(
        result.decision,
        "Nested data should be accessible in policy"
    );
}

#[test]
async fn test_basic_access_without_data_requirement() {
    let cedarling = get_cedarling_with_callback(
        PolicyStoreSource::Yaml(POLICY_STORE_WITH_DATA_ACCESS.to_string()),
        |_| {},
    )
    .await;

    // BasicAccess policy doesn't require any data
    let request = create_test_request("BasicAccess");
    let result = cedarling
        .authorize_unsigned(request)
        .await
        .expect("authorization should succeed");

    assert!(
        result.decision,
        "Basic access should work without pushed data"
    );
}

// =============================================================================
// Multiple Cedarling Instances (Isolation)
// =============================================================================

#[test]
async fn test_multiple_instances_have_isolated_data() {
    let cedarling1 = get_cedarling_with_callback(
        PolicyStoreSource::Yaml(POLICY_STORE_WITH_DATA_ACCESS.to_string()),
        |_| {},
    )
    .await;
    let cedarling2 = get_cedarling_with_callback(
        PolicyStoreSource::Yaml(POLICY_STORE_WITH_DATA_ACCESS.to_string()),
        |_| {},
    )
    .await;

    // Push data only to cedarling1
    cedarling1
        .push_data_ctx(
            "user_level",
            json!("premium"),
            Some(Duration::from_secs(60)),
        )
        .expect("push_data_ctx should succeed");

    // cedarling1 should have the data
    let data1 = cedarling1
        .get_data_ctx("user_level")
        .expect("get_data_ctx should succeed");
    assert_eq!(
        data1,
        Some(json!("premium")),
        "cedarling1 should have the data"
    );

    // cedarling2 should NOT have the data (isolated)
    let data2 = cedarling2
        .get_data_ctx("user_level")
        .expect("get_data_ctx should succeed");
    assert_eq!(
        data2, None,
        "cedarling2 should NOT have the data (isolated)"
    );

    // Authorization on cedarling1 should succeed
    let request1 = create_test_request("AccessPremiumContent");
    let result1 = cedarling1
        .authorize_unsigned(request1)
        .await
        .expect("authorization should succeed");
    assert!(result1.decision, "cedarling1 should allow access");

    // Authorization on cedarling2 should fail (no data)
    let request2 = create_test_request("AccessPremiumContent");
    let result2 = cedarling2
        .authorize_unsigned(request2)
        .await
        .expect("authorization should succeed");
    assert!(!result2.decision, "cedarling2 should deny access (no data)");
}

// =============================================================================
// Data Lifecycle Management
// =============================================================================

#[test]
async fn test_data_removal_affects_authorization() {
    let cedarling = get_cedarling_with_callback(
        PolicyStoreSource::Yaml(POLICY_STORE_WITH_DATA_ACCESS.to_string()),
        |_| {},
    )
    .await;

    // Push data
    cedarling
        .push_data_ctx(
            "user_level",
            json!("premium"),
            Some(Duration::from_secs(60)),
        )
        .expect("push_data_ctx should succeed");

    // First authorization should succeed
    let request1 = create_test_request("AccessPremiumContent");
    let result1 = cedarling
        .authorize_unsigned(request1)
        .await
        .expect("authorization should succeed");
    assert!(result1.decision, "Should allow access with data");

    // Remove the data
    let removed = cedarling
        .remove_data_ctx("user_level")
        .expect("remove should succeed");
    assert!(removed, "Data should have been removed");

    // Second authorization should fail
    let request2 = create_test_request("AccessPremiumContent");
    let result2 = cedarling
        .authorize_unsigned(request2)
        .await
        .expect("authorization should succeed");
    assert!(!result2.decision, "Should deny access after data removal");
}

#[test]
async fn test_data_clear_affects_authorization() {
    let cedarling = get_cedarling_with_callback(
        PolicyStoreSource::Yaml(POLICY_STORE_WITH_DATA_ACCESS.to_string()),
        |_| {},
    )
    .await;

    // Push multiple data entries
    cedarling
        .push_data_ctx(
            "user_level",
            json!("premium"),
            Some(Duration::from_secs(60)),
        )
        .expect("push_data_ctx should succeed");
    cedarling
        .push_data_ctx(
            "feature_enabled",
            json!(true),
            Some(Duration::from_secs(60)),
        )
        .expect("push_data_ctx should succeed");

    // Verify data exists
    let stats = cedarling
        .get_stats_ctx()
        .expect("get_stats_ctx should succeed");
    assert_eq!(stats.entry_count, 2, "Should have 2 entries");

    // Clear all data
    cedarling.clear_data_ctx().expect("clear should succeed");

    // Verify data is gone
    let stats_after = cedarling
        .get_stats_ctx()
        .expect("get_stats_ctx should succeed");
    assert_eq!(
        stats_after.entry_count, 0,
        "Should have 0 entries after clear"
    );

    // Authorization should now fail
    let request = create_test_request("AccessPremiumContent");
    let result = cedarling
        .authorize_unsigned(request)
        .await
        .expect("authorization should succeed");
    assert!(!result.decision, "Should deny access after clear");
}

#[test]
async fn test_data_update_affects_authorization() {
    let cedarling = get_cedarling_with_callback(
        PolicyStoreSource::Yaml(POLICY_STORE_WITH_DATA_ACCESS.to_string()),
        |_| {},
    )
    .await;

    // Push initial data (basic user)
    cedarling
        .push_data_ctx("user_level", json!("basic"), Some(Duration::from_secs(60)))
        .expect("push_data_ctx should succeed");

    // Authorization should fail (not premium)
    let request1 = create_test_request("AccessPremiumContent");
    let result1 = cedarling
        .authorize_unsigned(request1)
        .await
        .expect("authorization should succeed");
    assert!(!result1.decision, "Basic user should be denied");

    // Update to premium
    cedarling
        .push_data_ctx(
            "user_level",
            json!("premium"),
            Some(Duration::from_secs(60)),
        )
        .expect("push_data_ctx update should succeed");

    // Authorization should now succeed
    let request2 = create_test_request("AccessPremiumContent");
    let result2 = cedarling
        .authorize_unsigned(request2)
        .await
        .expect("authorization should succeed");
    assert!(
        result2.decision,
        "Premium user should be allowed after update"
    );
}

#[test]
async fn test_data_list_and_stats() {
    let cedarling = get_cedarling_with_callback(
        PolicyStoreSource::Yaml(POLICY_STORE_WITH_DATA_ACCESS.to_string()),
        |_| {},
    )
    .await;

    // Push multiple entries
    cedarling
        .push_data_ctx("key1", json!("value1"), Some(Duration::from_secs(60)))
        .expect("push should succeed");
    cedarling
        .push_data_ctx(
            "key2",
            json!({"nested": true}),
            Some(Duration::from_secs(60)),
        )
        .expect("push should succeed");
    cedarling
        .push_data_ctx("key3", json!([1, 2, 3]), Some(Duration::from_secs(60)))
        .expect("push should succeed");

    // Check stats
    let stats = cedarling
        .get_stats_ctx()
        .expect("get_stats_ctx should succeed");
    assert_eq!(stats.entry_count, 3, "Should have 3 entries");
    assert!(stats.total_size_bytes > 0, "Total size should be positive");
    assert!(
        stats.avg_entry_size_bytes > 0,
        "Average size should be positive"
    );

    // List entries
    let entries = cedarling
        .list_data_ctx()
        .expect("list_data_ctx should succeed");
    assert_eq!(entries.len(), 3, "Should list 3 entries");

    // Verify keys are present
    let keys: Vec<&str> = entries.iter().map(|e| e.key.as_str()).collect();
    assert!(keys.contains(&"key1"), "Should contain key1");
    assert!(keys.contains(&"key2"), "Should contain key2");
    assert!(keys.contains(&"key3"), "Should contain key3");
}

#[test]
async fn test_get_data_entry_ctx_with_metadata() {
    let cedarling = get_cedarling_with_callback(
        PolicyStoreSource::Yaml(POLICY_STORE_WITH_DATA_ACCESS.to_string()),
        |_| {},
    )
    .await;

    // Push an entry
    cedarling
        .push_data_ctx(
            "test_key",
            json!("test_value"),
            Some(Duration::from_secs(300)),
        )
        .expect("push should succeed");

    // Get entry with metadata
    let entry = cedarling
        .get_data_entry_ctx("test_key")
        .expect("get_data_entry_ctx should succeed")
        .expect("entry should exist");

    assert_eq!(entry.key, "test_key", "Key should match");
    assert_eq!(entry.value, json!("test_value"), "Value should match");
    // created_at is always set (not an Option)
    assert!(
        entry.created_at.timestamp() > 0,
        "Created time should be valid"
    );
    assert!(entry.expires_at.is_some(), "Expiration time should be set");
    assert!(entry.access_count >= 1, "Access count should be at least 1");
}

// ── Context data without schema ─────────────────────────────────

#[test]
async fn test_context_data_without_schema_allows_access() {
    let cedarling = get_cedarling_with_callback(
        PolicyStoreSource::Yaml(POLICY_STORE_WITH_DATA_ACCESS.to_string()),
        |config| {
            config.authorization_config.strict_schema_validation = false;
        },
    )
    .await;

    cedarling
        .push_data_ctx("user_level", json!("premium"), Some(Duration::from_secs(60)))
        .expect("push_data_ctx should succeed");

    let request = create_test_request("AccessPremiumContent");

    let result = cedarling
        .authorize_unsigned(request)
        .await
        .expect("request should succeed without schema");

    assert!(result.decision, "should be allowed: pushed data satisfies policy without schema");

    cedarling
        .remove_data_ctx("user_level")
        .expect("remove should succeed");

    let request = create_test_request("AccessPremiumContent");
    let result = cedarling
        .authorize_unsigned(request)
        .await
        .expect("request should succeed");

    assert!(!result.decision, "should be denied: no pushed data without schema");
}