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
|
//! Audit configuration and event tagging
use nostr_sdk::prelude::*;
/// Audit configuration
#[derive(Debug, Clone)]
pub struct AuditConfig {
/// Unique ID for this audit run
pub run_id: String,
/// Mode: CI (isolated) or Production (live)
pub mode: AuditMode,
/// Cleanup timestamp (events can be cleaned after this)
pub cleanup_after: Timestamp,
/// Whether to actually create events or just query
pub read_only: bool,
}
/// Audit mode for fixture management
///
/// Controls how test fixtures are cached and shared between tests.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum AuditMode {
/// Isolated mode - each test creates fresh fixtures
///
/// Use this mode when running tests in parallel (e.g., `cargo test`)
/// where each test needs complete isolation from other tests.
/// Each TestContext gets its own local cache.
Isolated,
/// Shared mode - fixtures are cached and reused across tests
///
/// Use this mode when running the CLI audit tool where tests run
/// sequentially and build on each other's fixtures. This is more
/// efficient as it avoids re-creating the same prerequisite events.
/// All TestContexts share the client's cache.
Shared,
}
impl AuditConfig {
/// Create config for isolated testing (e.g., cargo test)
///
/// Each test creates fresh fixtures for complete test isolation.
/// Use this when running tests in parallel.
pub fn isolated() -> Self {
let run_id = format!("isolated-{}", &uuid::Uuid::new_v4().to_string()[..8]);
Self {
run_id,
mode: AuditMode::Isolated,
cleanup_after: Timestamp::now() + 3600, // 1 hour from now
read_only: false,
}
}
/// Create config for shared fixture mode (default for CLI)
///
/// Fixtures are cached and reused across tests. Use this when
/// running the CLI audit tool where tests run sequentially.
pub fn shared() -> Self {
let run_id = format!("audit-{}", &uuid::Uuid::new_v4().to_string()[..8]);
Self {
run_id,
mode: AuditMode::Shared,
cleanup_after: Timestamp::now() + 3600, // 1 hour from now
read_only: false,
}
}
/// Create config for probe/smoke test mode
///
/// Identical to `isolated()` but uses a `probe-` prefix for the run ID,
/// making probe events easy to distinguish from regular audit events.
pub fn probe() -> Self {
let run_id = format!("probe-{}", &uuid::Uuid::new_v4().to_string()[..8]);
Self {
run_id,
mode: AuditMode::Isolated,
cleanup_after: Timestamp::now() + 3600, // 1 hour from now
read_only: false,
}
}
/// Create config with custom run ID
pub fn with_run_id(run_id: String, mode: AuditMode) -> Self {
Self {
run_id,
mode,
cleanup_after: Timestamp::now() + 3600,
read_only: false,
}
}
/// Get audit tags that are automatically added to all events
///
/// These tags are automatically added to all events created via [`AuditEventBuilder`].
/// They provide isolation, cleanup scheduling, and easy discovery of audit events.
///
/// # Tag Format
///
/// All tags use the `"t"` (hashtag) format for maximum relay compatibility:
///
/// 1. `["t", "grasp-audit-test-event"]` - Identifies all audit-related events
/// 2. `["t", "audit-{run_id}"]` - Unique identifier for this audit run
/// - Isolated mode: `audit-isolated-{uuid}`
/// - Shared mode: `audit-audit-{uuid}`
/// 3. `["t", "audit-cleanup-after-{unix_timestamp}"]` - Cleanup timestamp
/// - Default: Current time + 3600 seconds (1 hour)
///
/// # Purpose
///
/// - **Isolation**: Each test run has a unique ID for event filtering in CI mode
/// - **Cleanup**: Events marked for cleanup after timestamp (enables direct DB cleanup)
/// - **Discovery**: Easy to query all audit events via hashtag
/// - **No deletion trails**: Avoids NIP-09 deletion events by using direct cleanup
///
/// # Example
///
/// ```rust
/// use grasp_audit::AuditConfig;
///
/// let config = AuditConfig::isolated();
/// let tags = config.audit_tags();
///
/// // Tags will look like:
/// // [
/// // ["t", "grasp-audit-test-event"],
/// // ["t", "audit-ci-a1b2c3d4-e5f6-7890-abcd-ef1234567890"],
/// // ["t", "audit-cleanup-after-1730822334"]
/// // ]
/// ```
pub fn audit_tags(&self) -> Vec<Tag> {
use nostr_sdk::prelude::{Alphabet, SingleLetterTag};
// Use "t" tags for categorization (standard NIP-01 hashtag type)
let t_tag = SingleLetterTag::lowercase(Alphabet::T);
vec![
Tag::custom(TagKind::SingleLetter(t_tag), vec!["grasp-audit-test-event"]),
Tag::custom(
TagKind::SingleLetter(t_tag),
vec![format!("audit-{}", self.run_id)],
),
Tag::custom(
TagKind::SingleLetter(t_tag),
vec![format!(
"audit-cleanup-after-{}",
self.cleanup_after.as_secs()
)],
),
]
}
}
/// Builder for audit events
pub struct AuditEventBuilder {
kind: Kind,
content: String,
tags: Vec<Tag>,
config: AuditConfig,
custom_timestamp: Option<Timestamp>,
}
impl AuditEventBuilder {
/// Create a new audit event builder
pub fn new(kind: Kind, content: impl Into<String>, config: AuditConfig) -> Self {
Self {
kind,
content: content.into(),
tags: Vec::new(),
config,
custom_timestamp: None,
}
}
/// Add a tag
pub fn tag(mut self, tag: Tag) -> Self {
self.tags.push(tag);
self
}
/// Add multiple tags
pub fn tags(mut self, tags: Vec<Tag>) -> Self {
self.tags.extend(tags);
self
}
/// Set a custom timestamp for the event
///
/// By default, events use the current time. Use this method to create
/// events with a specific timestamp, which is useful for testing
/// timestamp-based prioritization logic.
///
/// # Example
///
/// ```rust
/// use nostr_sdk::prelude::*;
/// use grasp_audit::{AuditConfig, AuditEventBuilder};
///
/// let config = AuditConfig::isolated();
/// let keys = Keys::generate();
///
/// // Create an event with a past timestamp
/// let past_event = AuditEventBuilder::new(Kind::TextNote, "test", config)
/// .custom_time(Timestamp::from(1700000000))
/// .build(&keys)
/// .unwrap();
///
/// assert_eq!(past_event.created_at, Timestamp::from(1700000000));
/// ```
pub fn custom_time(mut self, timestamp: Timestamp) -> Self {
self.custom_timestamp = Some(timestamp);
self
}
/// Build the event with audit tags
pub fn build(self, keys: &Keys) -> anyhow::Result<Event> {
let mut all_tags = self.tags;
all_tags.extend(self.config.audit_tags());
let builder = EventBuilder::new(self.kind, self.content).tags(all_tags);
// Apply custom timestamp if set
let builder = if let Some(timestamp) = self.custom_timestamp {
builder.custom_created_at(timestamp)
} else {
builder
};
let event = builder.sign_with_keys(keys)?;
Ok(event)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_isolated_config() {
let config = AuditConfig::isolated();
assert_eq!(config.mode, AuditMode::Isolated);
assert!(!config.read_only);
assert!(config.run_id.starts_with("isolated-"));
}
#[test]
fn test_shared_config() {
let config = AuditConfig::shared();
assert_eq!(config.mode, AuditMode::Shared);
assert!(!config.read_only);
assert!(config.run_id.starts_with("audit-"));
}
#[test]
fn test_audit_tags() {
use nostr_sdk::prelude::{Alphabet, SingleLetterTag};
let config = AuditConfig::isolated();
let tags = config.audit_tags();
assert_eq!(tags.len(), 3);
let t_tag = SingleLetterTag::lowercase(Alphabet::T);
// All tags should be "t" tags (hashtags)
for tag in &tags {
if let TagKind::SingleLetter(letter) = tag.kind() {
assert_eq!(letter, t_tag);
} else {
panic!("Expected SingleLetter tag");
}
}
// Check for "t" tag with "grasp-audit-test-event"
assert!(tags
.iter()
.any(|t| { t.content() == Some("grasp-audit-test-event") }));
// Check for "t" tag with "audit-{run_id}"
assert!(tags.iter().any(|t| {
t.content()
.map(|c| c.starts_with("audit-isolated-"))
.unwrap_or(false)
}));
// Check for "t" tag with "audit-cleanup-after-{timestamp}"
assert!(tags.iter().any(|t| {
t.content()
.map(|c| c.starts_with("audit-cleanup-after-"))
.unwrap_or(false)
}));
}
#[test]
fn test_audit_event_builder() {
let config = AuditConfig::isolated();
let keys = Keys::generate();
let event = AuditEventBuilder::new(Kind::TextNote, "test", config.clone())
.tag(Tag::custom(TagKind::Custom("test".into()), vec!["value"]))
.build(&keys)
.unwrap();
// Should have our custom tag + 3 audit tags
assert!(event.tags.len() >= 4);
// Verify event is valid
assert!(event.verify().is_ok());
}
#[test]
fn test_custom_timestamp_applied() {
let config = AuditConfig::isolated();
let keys = Keys::generate();
let custom_ts = Timestamp::from(1700000000);
// Build event with custom timestamp
let event = AuditEventBuilder::new(Kind::TextNote, "test with custom time", config.clone())
.custom_time(custom_ts)
.build(&keys)
.unwrap();
// Verify the custom timestamp was applied
assert_eq!(event.created_at, custom_ts);
// Verify event is still valid
assert!(event.verify().is_ok());
}
#[test]
fn test_default_timestamp_uses_current_time() {
let config = AuditConfig::isolated();
let keys = Keys::generate();
let before = Timestamp::now();
let event = AuditEventBuilder::new(Kind::TextNote, "test default time", config.clone())
.build(&keys)
.unwrap();
let after = Timestamp::now();
// Event timestamp should be between before and after (inclusive)
assert!(event.created_at.as_secs() >= before.as_secs());
assert!(event.created_at.as_secs() <= after.as_secs());
}
}
|