upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/tests/sync/maintainer_reprocessing.rs
blob: 2b7fb0f60dab368baad531ff4f17b4da871220a4 (plain)
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
//! Integration tests for GRASP-02 PR3: Maintainer Announcement Re-Processing
//!
//! Tests the two-tier rejected events index and immediate re-processing of
//! maintainer announcements when owner announcements are accepted.

use std::time::Duration;

use nostr_sdk::prelude::*;

use crate::common::{sync_helpers::*, TestRelay};

/// Test that maintainer announcements are re-processed immediately when owner announcement accepted
///
/// Flow:
/// 1. relay_a: Maintainer sends announcement (gets rejected - doesn't list relay_b)
/// 2. relay_b: Owner sends announcement (lists relay_a + maintainer)
/// 3. relay_b syncs from relay_a, maintainer announcement enters rejected index
/// 4. relay_b processes owner announcement, invalidates and re-processes maintainer announcement
/// 5. Both announcements should be in relay_b's database
///
/// Expected time: <5 seconds (vs 24 hours without hot cache)
#[tokio::test]
async fn test_maintainer_announcement_reprocessed_immediately() {
    // Start relay_a (where maintainer announcement will be sent)
    let relay_a = TestRelay::start().await;
    println!("relay_a started at {}", relay_a.url());

    // Start relay_b with sync enabled (will sync from relay_a)
    let relay_b = TestRelay::start_with_sync(None).await;
    println!("relay_b started at {}", relay_b.url());

    // Create keys
    let owner_keys = Keys::generate();
    let maintainer_keys = Keys::generate();

    let identifier = "test-repo";

    let start = std::time::Instant::now();

    // Step 1: Send maintainer announcement to relay_a (will be rejected - doesn't list relay_b)
    let client_a = TestClient::new(relay_a.url(), maintainer_keys.clone())
        .await
        .expect("Failed to connect to relay_a");

    let maintainer_announcement = EventBuilder::new(
        Kind::GitRepoAnnouncement,
        "Maintainer's repository",
    )
    .tags(vec![
        Tag::identifier(identifier),
        Tag::custom(
            TagKind::custom("clone"),
            vec![format!("https://{}/{}.git", relay_a.domain(), identifier)],
        ),
        Tag::custom(
            TagKind::custom("relays"),
            vec![relay_a.url().to_string()],
        ),
    ])
    .sign_with_keys(&maintainer_keys)
    .unwrap();

    client_a.send_event(&maintainer_announcement).await.unwrap();
    println!("✓ Maintainer announcement sent to relay_a");

    // Step 2: Send owner announcement to relay_b (lists relay_a + maintainer)
    let client_b = TestClient::new(relay_b.url(), owner_keys.clone())
        .await
        .expect("Failed to connect to relay_b");

    let owner_announcement = EventBuilder::new(
        Kind::GitRepoAnnouncement,
        "Owner's repository",
    )
    .tags(vec![
        Tag::identifier(identifier),
        Tag::custom(
            TagKind::custom("clone"),
            vec![format!("https://{}/{}.git", relay_b.domain(), identifier)],
        ),
        Tag::custom(
            TagKind::custom("relays"),
            vec![relay_a.url().to_string(), relay_b.url().to_string()],
        ),
        Tag::custom(
            TagKind::custom("maintainers"),
            vec![maintainer_keys.public_key().to_hex()],
        ),
    ])
    .sign_with_keys(&owner_keys)
    .unwrap();

    client_b.send_event(&owner_announcement).await.unwrap();
    println!("✓ Owner announcement sent to relay_b");

    // Step 3: Wait for sync and re-processing (relay_b discovers relay_a, syncs, re-processes)
    tokio::time::sleep(Duration::from_secs(3)).await;

    let elapsed = start.elapsed();

    // Step 4: Verify both announcements are in relay_b's database
    let owner_filter = Filter::new()
        .kind(Kind::GitRepoAnnouncement)
        .author(owner_keys.public_key())
        .identifier(identifier);

    let owner_found = wait_for_event_on_relay(relay_b.url(), owner_filter, Duration::from_secs(2)).await;
    assert!(owner_found, "Owner announcement should be in relay_b");

    let maintainer_filter = Filter::new()
        .kind(Kind::GitRepoAnnouncement)
        .author(maintainer_keys.public_key())
        .identifier(identifier);

    let maintainer_found = wait_for_event_on_relay(relay_b.url(), maintainer_filter, Duration::from_secs(2)).await;
    assert!(maintainer_found, "Maintainer announcement should be re-processed and accepted in relay_b");

    // Step 5: Verify it happened quickly (not 24 hours!)
    assert!(
        elapsed.as_secs() < 10,
        "Re-processing should happen in <10 seconds, took {:?}",
        elapsed
    );

    println!("✅ Maintainer announcement re-processed in {:?}", elapsed);

    client_a.disconnect().await;
    client_b.disconnect().await;
    relay_a.stop().await;
    relay_b.stop().await;
}

/// Test that maintainer announcements NOT in hot cache are still prevented from re-fetching
///
/// Flow:
/// 1. Maintainer announcement arrives → Rejected (added to hot cache + cold index)
/// 2. Wait for hot cache to expire (2+ minutes)
/// 3. Owner announcement arrives → Invalidates cold index
/// 4. Maintainer announcement should NOT be re-fetched (cold index prevents)
/// 5. Only owner announcement should be in database
///
/// This test verifies the cold index prevents repeated downloads after hot cache expiry.
/// Note: This test is slow (2+ minutes) so we'll skip it in normal test runs.
#[tokio::test]
#[ignore] // Skip by default due to 2+ minute duration
async fn test_maintainer_announcement_cold_index_prevents_refetch() {
    let relay = TestRelay::start().await;
    
    // Create keys
    let owner_keys = Keys::generate();
    let maintainer_keys = Keys::generate();

    let identifier = "test-repo-cold";
    
    // Create client using TestClient helper
    let client = TestClient::new(relay.url(), maintainer_keys.clone())
        .await
        .expect("Failed to connect to relay");

    // Step 1: Send maintainer announcement (will be rejected - doesn't list our relay)
    let maintainer_announcement = EventBuilder::new(
        Kind::GitRepoAnnouncement,
        "Maintainer's repository",
    )
    .tags(vec![
        Tag::identifier(identifier),
        Tag::custom(
            TagKind::custom("clone"),
            vec![format!("https://example.com/{}.git", identifier)],
        ),
        Tag::custom(
            TagKind::custom("relays"),
            vec!["wss://example.com".to_string()],
        ),
    ])
    .sign_with_keys(&maintainer_keys)
    .unwrap();

    // Send maintainer announcement - expect it to be rejected
    let _ = client.send_event(&maintainer_announcement).await;
    tokio::time::sleep(Duration::from_millis(200)).await;

    // Step 2: Wait for hot cache to expire (default: 120 seconds)
    println!("⏳ Waiting for hot cache to expire (120 seconds)...");
    tokio::time::sleep(Duration::from_secs(125)).await;

    // Step 3: Send owner announcement (lists maintainer)
    let owner_announcement = EventBuilder::new(
        Kind::GitRepoAnnouncement,
        "Owner's repository",
    )
    .tags(vec![
        Tag::identifier(identifier),
        Tag::custom(
            TagKind::custom("clone"),
            vec![format!("https://{}/{}.git", relay.domain(), identifier)],
        ),
        Tag::custom(
            TagKind::custom("relays"),
            vec![relay.url().to_string()],
        ),
        Tag::custom(
            TagKind::custom("maintainers"),
            vec![maintainer_keys.public_key().to_hex()],
        ),
    ])
    .sign_with_keys(&owner_keys)
    .unwrap();

    client.send_event(&owner_announcement).await.unwrap();
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Step 4: Verify only owner announcement is in database
    let owner_filter = Filter::new()
        .kind(Kind::GitRepoAnnouncement)
        .author(owner_keys.public_key())
        .identifier(identifier);
    
    let owner_found = wait_for_event_on_relay(relay.url(), owner_filter, Duration::from_secs(2)).await;
    assert!(owner_found, "Owner announcement should be accepted");

    let maintainer_filter = Filter::new()
        .kind(Kind::GitRepoAnnouncement)
        .author(maintainer_keys.public_key())
        .identifier(identifier);
    
    let maintainer_found = wait_for_event_on_relay(relay.url(), maintainer_filter, Duration::from_millis(500)).await;
    assert!(
        !maintainer_found,
        "Maintainer announcement should NOT be re-processed (hot cache expired)"
    );

    println!("✅ Cold index prevented re-fetch after hot cache expiry");

    client.disconnect().await;
    relay.stop().await;
}

/// Test multiple maintainers are all re-processed when owner announcement accepted
///
/// Flow:
/// 1. relay_a: Three maintainers send announcements (get rejected - don't list relay_b)
/// 2. relay_b: Owner sends announcement (lists relay_a + all three maintainers)
/// 3. relay_b syncs from relay_a, all maintainer announcements enter rejected index
/// 4. relay_b processes owner announcement, invalidates and re-processes all maintainer announcements
/// 5. All four announcements should be in relay_b's database
#[tokio::test]
async fn test_multiple_maintainers_all_reprocessed() {
    // Start relay_a (where maintainer announcements will be sent)
    let relay_a = TestRelay::start().await;
    println!("relay_a started at {}", relay_a.url());

    // Start relay_b with sync enabled (will sync from relay_a)
    let relay_b = TestRelay::start_with_sync(None).await;
    println!("relay_b started at {}", relay_b.url());

    // Create keys
    let owner_keys = Keys::generate();
    let maintainer1_keys = Keys::generate();
    let maintainer2_keys = Keys::generate();
    let maintainer3_keys = Keys::generate();

    let identifier = "multi-maintainer-repo";

    // Step 1: Send three maintainer announcements to relay_a
    let client_a = TestClient::new(relay_a.url(), maintainer1_keys.clone())
        .await
        .expect("Failed to connect to relay_a");

    for (idx, maintainer_keys) in [&maintainer1_keys, &maintainer2_keys, &maintainer3_keys].iter().enumerate() {
        let announcement = EventBuilder::new(
            Kind::GitRepoAnnouncement,
            format!("Maintainer {} repository", idx + 1),
        )
        .tags(vec![
            Tag::identifier(identifier),
            Tag::custom(
                TagKind::custom("clone"),
                vec![format!("https://{}/{}.git", relay_a.domain(), identifier)],
            ),
            Tag::custom(
                TagKind::custom("relays"),
                vec![relay_a.url().to_string()],
            ),
        ])
        .sign_with_keys(maintainer_keys)
        .unwrap();

        client_a.send_event(&announcement).await.unwrap();
    }
    println!("✓ Three maintainer announcements sent to relay_a");

    // Step 2: Send owner announcement to relay_b (lists relay_a + all three maintainers)
    let client_b = TestClient::new(relay_b.url(), owner_keys.clone())
        .await
        .expect("Failed to connect to relay_b");

    let owner_announcement = EventBuilder::new(
        Kind::GitRepoAnnouncement,
        "Owner's repository",
    )
    .tags(vec![
        Tag::identifier(identifier),
        Tag::custom(
            TagKind::custom("clone"),
            vec![format!("https://{}/{}.git", relay_b.domain(), identifier)],
        ),
        Tag::custom(
            TagKind::custom("relays"),
            vec![relay_a.url().to_string(), relay_b.url().to_string()],
        ),
        Tag::custom(
            TagKind::custom("maintainers"),
            vec![
                maintainer1_keys.public_key().to_hex(),
                maintainer2_keys.public_key().to_hex(),
                maintainer3_keys.public_key().to_hex(),
            ],
        ),
    ])
    .sign_with_keys(&owner_keys)
    .unwrap();

    client_b.send_event(&owner_announcement).await.unwrap();
    println!("✓ Owner announcement sent to relay_b");

    // Step 3: Wait for sync and re-processing
    tokio::time::sleep(Duration::from_secs(3)).await;

    // Step 4: Verify all four announcements are in relay_b's database
    for (name, keys) in [
        ("owner", &owner_keys),
        ("maintainer1", &maintainer1_keys),
        ("maintainer2", &maintainer2_keys),
        ("maintainer3", &maintainer3_keys),
    ] {
        let filter = Filter::new()
            .kind(Kind::GitRepoAnnouncement)
            .author(keys.public_key())
            .identifier(identifier);

        let found = wait_for_event_on_relay(relay_b.url(), filter, Duration::from_secs(2)).await;
        assert!(
            found,
            "{} announcement should be in relay_b",
            name
        );
    }

    println!("✅ All three maintainer announcements re-processed successfully");

    client_a.disconnect().await;
    client_b.disconnect().await;
    relay_a.stop().await;
    relay_b.stop().await;
}

/// Test that invalid maintainer public keys don't cause panics
///
/// Flow:
/// 1. Maintainer announcement arrives → Rejected
/// 2. Owner announcement arrives with INVALID maintainer hex → Should handle gracefully
/// 3. Owner announcement should still be accepted
/// 4. Maintainer announcement should NOT be re-processed (invalid pubkey)
#[tokio::test]
async fn test_invalid_maintainer_pubkey_handled_gracefully() {
    let relay = TestRelay::start().await;
    
    // Create keys
    let owner_keys = Keys::generate();
    let maintainer_keys = Keys::generate();

    let identifier = "invalid-maintainer-repo";
    
    // Create client using TestClient helper
    let client = TestClient::new(relay.url(), owner_keys.clone())
        .await
        .expect("Failed to connect to relay");

    // Step 1: Send maintainer announcement (will be rejected - doesn't list our relay)
    let maintainer_announcement = EventBuilder::new(
        Kind::GitRepoAnnouncement,
        "Maintainer's repository",
    )
    .tags(vec![
        Tag::identifier(identifier),
        Tag::custom(
            TagKind::custom("clone"),
            vec![format!("https://example.com/{}.git", identifier)],
        ),
        Tag::custom(
            TagKind::custom("relays"),
            vec!["wss://example.com".to_string()],
        ),
    ])
    .sign_with_keys(&maintainer_keys)
    .unwrap();

    // Send maintainer announcement - expect it to be rejected
    let _ = client.send_event(&maintainer_announcement).await;
    tokio::time::sleep(Duration::from_millis(200)).await;

    // Step 2: Send owner announcement with INVALID maintainer hex
    let owner_announcement = EventBuilder::new(
        Kind::GitRepoAnnouncement,
        "Owner's repository",
    )
    .tags(vec![
        Tag::identifier(identifier),
        Tag::custom(
            TagKind::custom("clone"),
            vec![format!("https://{}/{}.git", relay.domain(), identifier)],
        ),
        Tag::custom(
            TagKind::custom("relays"),
            vec![relay.url().to_string()],
        ),
        Tag::custom(
            TagKind::custom("maintainers"),
            vec!["invalid-hex-not-a-pubkey".to_string()],
        ),
    ])
    .sign_with_keys(&owner_keys)
    .unwrap();

    client.send_event(&owner_announcement).await.unwrap();
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Step 3: Verify owner announcement accepted, maintainer not re-processed
    let owner_filter = Filter::new()
        .kind(Kind::GitRepoAnnouncement)
        .author(owner_keys.public_key())
        .identifier(identifier);
    
    let owner_found = wait_for_event_on_relay(relay.url(), owner_filter, Duration::from_secs(2)).await;
    assert!(owner_found, "Owner announcement should be accepted despite invalid maintainer");

    let maintainer_filter = Filter::new()
        .kind(Kind::GitRepoAnnouncement)
        .author(maintainer_keys.public_key())
        .identifier(identifier);
    
    let maintainer_found = wait_for_event_on_relay(relay.url(), maintainer_filter, Duration::from_millis(500)).await;
    assert!(
        !maintainer_found,
        "Maintainer announcement should NOT be re-processed (invalid pubkey)"
    );

    println!("✅ Invalid maintainer pubkey handled gracefully without panic");

    client.disconnect().await;
    relay.stop().await;
}