agent-uri-attestation 0.2.1

PASETO v4.public attestation for agent-uri
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
//! Attestation claims types.
//!
//! See `grammar.abnf` for the formal ABNF specification of claims structure.

use std::time::Duration;

use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};

use crate::error::AttestationError;

/// Claims embedded in an attestation token.
///
/// These claims cryptographically bind an agent URI to a set of capabilities,
/// with issuer information and validity period.
///
/// # Grammar Reference
///
/// See `grammar.abnf` for the formal ABNF specification of the claims
/// JSON structure. Key constraints:
///
/// | Field | Format | Max Length |
/// |-------|--------|------------|
/// | `agent_uri` | agent-uri ABNF | 512 chars |
/// | `capabilities` | JSON array | 64 items |
/// | `iss` | trust-root | 128 chars |
/// | `iat` | ISO 8601 | 30 chars |
/// | `exp` | ISO 8601 | 30 chars |
/// | `aud` | alphanumeric | 128 chars |
///
/// # Example
///
/// ```
/// use agent_uri_attestation::AttestationClaims;
/// use std::time::Duration;
///
/// let claims = AttestationClaims::builder()
///     .agent_uri("agent://acme.com/workflow/approval/rule_01h455vb4pex5vsknk084sn02q")
///     .capabilities(vec!["workflow.approval.read".into()])
///     .issuer("acme.com")
///     .ttl(Duration::from_secs(3600))
///     .build()
///     .unwrap();
///
/// assert_eq!(claims.iss, "acme.com");
/// ```
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct AttestationClaims {
    /// The full agent URI being attested
    pub agent_uri: String,
    /// Capabilities granted to this agent
    pub capabilities: Vec<String>,
    /// Issuer (trust root) that created this attestation
    pub iss: String,
    /// When the token was issued
    pub iat: DateTime<Utc>,
    /// When the token expires
    pub exp: DateTime<Utc>,
    /// Optional audience restriction
    #[serde(skip_serializing_if = "Option::is_none")]
    pub aud: Option<String>,
}

impl AttestationClaims {
    /// Creates a new builder for attestation claims.
    #[must_use]
    pub fn builder() -> AttestationClaimsBuilder {
        AttestationClaimsBuilder::new()
    }

    /// Returns the trust root from the agent URI.
    ///
    /// This extracts the authority portion of the agent URI for trust root
    /// verification.
    ///
    /// # Example
    ///
    /// ```
    /// use agent_uri_attestation::AttestationClaims;
    /// use std::time::Duration;
    ///
    /// let claims = AttestationClaims::builder()
    ///     .agent_uri("agent://acme.com/workflow/approval/rule_01h455vb4pex5vsknk084sn02q")
    ///     .issuer("acme.com")
    ///     .build()
    ///     .unwrap();
    ///
    /// assert_eq!(claims.trust_root(), Some("acme.com"));
    /// ```
    #[must_use]
    pub fn trust_root(&self) -> Option<&str> {
        // Extract trust root from agent:// URI
        self.agent_uri
            .strip_prefix("agent://")
            .and_then(|rest| rest.split('/').next())
    }

    /// Returns true if the claims have expired.
    ///
    /// # Example
    ///
    /// ```
    /// use agent_uri_attestation::AttestationClaims;
    /// use std::time::Duration;
    ///
    /// let claims = AttestationClaims::builder()
    ///     .agent_uri("agent://acme.com/test/agent_01h455vb4pex5vsknk084sn02q")
    ///     .issuer("acme.com")
    ///     .ttl(Duration::from_secs(3600))
    ///     .build()
    ///     .unwrap();
    ///
    /// assert!(!claims.is_expired());
    /// ```
    #[must_use]
    pub fn is_expired(&self) -> bool {
        Utc::now() >= self.exp
    }

    /// Returns true if the token is not yet valid (before `iat`).
    #[must_use]
    pub fn is_not_yet_valid(&self) -> bool {
        Utc::now() < self.iat
    }

    /// Checks if the claims have expired at a specific time.
    ///
    /// This method allows testing expiration logic without depending on
    /// the system clock, making edge cases testable.
    ///
    /// # Arguments
    ///
    /// * `now` - The time to check expiration against
    ///
    /// # Returns
    ///
    /// `true` if the claims have expired (now >= exp), `false` otherwise
    ///
    /// # Examples
    ///
    /// ```
    /// use agent_uri_attestation::AttestationClaims;
    /// use chrono::{Utc, Duration};
    /// use std::time::Duration as StdDuration;
    ///
    /// let claims = AttestationClaims::builder()
    ///     .agent_uri("agent://acme.com/test/agent_01h455vb4pex5vsknk084sn02q")
    ///     .issuer("acme.com")
    ///     .ttl(StdDuration::from_secs(3600))
    ///     .build()
    ///     .unwrap();
    ///
    /// let now = Utc::now();
    /// let future = now + Duration::hours(2);
    ///
    /// assert!(!claims.is_expired_at(now));
    /// assert!(claims.is_expired_at(future));
    /// ```
    #[must_use]
    pub fn is_expired_at(&self, now: DateTime<Utc>) -> bool {
        now >= self.exp
    }
}

/// Builder for constructing `AttestationClaims`.
///
/// # Example
///
/// ```
/// use agent_uri_attestation::AttestationClaimsBuilder;
/// use std::time::Duration;
///
/// let claims = AttestationClaimsBuilder::new()
///     .agent_uri("agent://acme.com/workflow/approval/rule_01h455vb4pex5vsknk084sn02q")
///     .add_capability("workflow.approval.read")
///     .add_capability("workflow.approval.execute")
///     .issuer("acme.com")
///     .ttl(Duration::from_secs(7200))
///     .audience("api.acme.com")
///     .build()
///     .unwrap();
///
/// assert_eq!(claims.capabilities.len(), 2);
/// assert_eq!(claims.aud, Some("api.acme.com".to_string()));
/// ```
#[derive(Debug, Clone)]
pub struct AttestationClaimsBuilder {
    agent_uri: Option<String>,
    capabilities: Vec<String>,
    issuer: Option<String>,
    ttl: Duration,
    audience: Option<String>,
}

impl AttestationClaimsBuilder {
    /// Creates a new builder with default TTL of 24 hours.
    #[must_use]
    pub fn new() -> Self {
        Self {
            agent_uri: None,
            capabilities: Vec::new(),
            issuer: None,
            ttl: Duration::from_secs(86400), // 24 hours
            audience: None,
        }
    }

    /// Sets the agent URI to attest.
    #[must_use]
    pub fn agent_uri(mut self, uri: impl Into<String>) -> Self {
        self.agent_uri = Some(uri.into());
        self
    }

    /// Sets the capabilities granted.
    #[must_use]
    pub fn capabilities(mut self, caps: Vec<String>) -> Self {
        self.capabilities = caps;
        self
    }

    /// Adds a single capability.
    #[must_use]
    pub fn add_capability(mut self, cap: impl Into<String>) -> Self {
        self.capabilities.push(cap.into());
        self
    }

    /// Sets the issuer (trust root).
    #[must_use]
    pub fn issuer(mut self, issuer: impl Into<String>) -> Self {
        self.issuer = Some(issuer.into());
        self
    }

    /// Sets the time-to-live duration.
    #[must_use]
    pub fn ttl(mut self, ttl: Duration) -> Self {
        self.ttl = ttl;
        self
    }

    /// Sets the optional audience.
    #[must_use]
    pub fn audience(mut self, aud: impl Into<String>) -> Self {
        self.audience = Some(aud.into());
        self
    }

    /// Builds the claims.
    ///
    /// # Errors
    ///
    /// Returns `AttestationError::MissingField` if required fields are not set.
    pub fn build(self) -> Result<AttestationClaims, AttestationError> {
        let agent_uri = self.agent_uri.ok_or(AttestationError::MissingField {
            field: "agent_uri",
        })?;
        let issuer = self.issuer.ok_or(AttestationError::MissingField {
            field: "issuer",
        })?;

        let now = Utc::now();
        let exp = now
            + chrono::Duration::from_std(self.ttl).map_err(|_| AttestationError::InvalidTtl)?;

        Ok(AttestationClaims {
            agent_uri,
            capabilities: self.capabilities,
            iss: issuer,
            iat: now,
            exp,
            aud: self.audience,
        })
    }
}

impl Default for AttestationClaimsBuilder {
    fn default() -> Self {
        Self::new()
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn builder_creates_valid_claims() {
        let claims = AttestationClaimsBuilder::new()
            .agent_uri("agent://acme.com/test/agent_01h455vb4pex5vsknk084sn02q")
            .issuer("acme.com")
            .build()
            .unwrap();

        assert_eq!(
            claims.agent_uri,
            "agent://acme.com/test/agent_01h455vb4pex5vsknk084sn02q"
        );
        assert_eq!(claims.iss, "acme.com");
        assert!(claims.capabilities.is_empty());
        assert!(claims.aud.is_none());
    }

    #[test]
    fn builder_requires_agent_uri() {
        let result = AttestationClaimsBuilder::new().issuer("acme.com").build();

        assert!(matches!(
            result,
            Err(AttestationError::MissingField { field: "agent_uri" })
        ));
    }

    #[test]
    fn builder_requires_issuer() {
        let result = AttestationClaimsBuilder::new()
            .agent_uri("agent://acme.com/test/agent_01h455vb4pex5vsknk084sn02q")
            .build();

        assert!(matches!(
            result,
            Err(AttestationError::MissingField { field: "issuer" })
        ));
    }

    #[test]
    fn builder_with_capabilities() {
        let claims = AttestationClaimsBuilder::new()
            .agent_uri("agent://acme.com/test/agent_01h455vb4pex5vsknk084sn02q")
            .issuer("acme.com")
            .add_capability("read")
            .add_capability("write")
            .build()
            .unwrap();

        assert_eq!(claims.capabilities, vec!["read", "write"]);
    }

    #[test]
    fn builder_with_audience() {
        let claims = AttestationClaimsBuilder::new()
            .agent_uri("agent://acme.com/test/agent_01h455vb4pex5vsknk084sn02q")
            .issuer("acme.com")
            .audience("api.acme.com")
            .build()
            .unwrap();

        assert_eq!(claims.aud, Some("api.acme.com".to_string()));
    }

    #[test]
    fn builder_with_custom_ttl() {
        let claims = AttestationClaimsBuilder::new()
            .agent_uri("agent://acme.com/test/agent_01h455vb4pex5vsknk084sn02q")
            .issuer("acme.com")
            .ttl(Duration::from_secs(3600))
            .build()
            .unwrap();

        // Expiration should be roughly 1 hour from now
        let expected_exp = claims.iat + chrono::Duration::seconds(3600);
        assert!((claims.exp - expected_exp).num_seconds().abs() < 2);
    }

    #[test]
    fn trust_root_extraction() {
        let claims = AttestationClaimsBuilder::new()
            .agent_uri("agent://acme.com/workflow/approval/rule_01h455vb4pex5vsknk084sn02q")
            .issuer("acme.com")
            .build()
            .unwrap();

        assert_eq!(claims.trust_root(), Some("acme.com"));
    }

    #[test]
    fn trust_root_with_port() {
        let claims = AttestationClaimsBuilder::new()
            .agent_uri("agent://localhost:8472/test/agent_01h455vb4pex5vsknk084sn02q")
            .issuer("localhost:8472")
            .build()
            .unwrap();

        assert_eq!(claims.trust_root(), Some("localhost:8472"));
    }

    #[test]
    fn is_expired_returns_false_for_future_expiration() {
        let claims = AttestationClaimsBuilder::new()
            .agent_uri("agent://acme.com/test/agent_01h455vb4pex5vsknk084sn02q")
            .issuer("acme.com")
            .ttl(Duration::from_secs(3600))
            .build()
            .unwrap();

        assert!(!claims.is_expired());
    }

    #[test]
    fn claims_serialization_roundtrip() {
        let original = AttestationClaimsBuilder::new()
            .agent_uri("agent://acme.com/test/agent_01h455vb4pex5vsknk084sn02q")
            .issuer("acme.com")
            .add_capability("read")
            .audience("api.acme.com")
            .build()
            .unwrap();

        let json = serde_json::to_string(&original).unwrap();
        let recovered: AttestationClaims = serde_json::from_str(&json).unwrap();

        assert_eq!(original.agent_uri, recovered.agent_uri);
        assert_eq!(original.iss, recovered.iss);
        assert_eq!(original.capabilities, recovered.capabilities);
        assert_eq!(original.aud, recovered.aud);
    }
}