diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-12-23 16:20:24 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-12-23 16:20:24 +0000 |
| commit | f8c3e3920ed2a1bdaab30be912276993449a5476 (patch) | |
| tree | 793181955620cd61475d9ea81ea316a6d6c0bdb9 /tests/push_authorization.rs | |
| parent | 2f4da43c5b90597ba671986d15c9227ebbfc84ce (diff) | |
test: add purgatory to PR push test
commented out so it currently passes
Diffstat (limited to 'tests/push_authorization.rs')
| -rw-r--r-- | tests/push_authorization.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/push_authorization.rs b/tests/push_authorization.rs index 221c4f4..85b9a5d 100644 --- a/tests/push_authorization.rs +++ b/tests/push_authorization.rs | |||
| @@ -67,11 +67,12 @@ isolated_push_test!(test_push_to_nostr_ref_with_invalid_event_id_rejected); | |||
| 67 | isolated_push_test!(test_pr_push_to_nostr_ref_with_wrong_commit_accepted_before_event_received); | 67 | isolated_push_test!(test_pr_push_to_nostr_ref_with_wrong_commit_accepted_before_event_received); |
| 68 | isolated_push_test!(test_pr_event_published_removes_nostr_ref_at_incorrect_commit); | 68 | isolated_push_test!(test_pr_event_published_removes_nostr_ref_at_incorrect_commit); |
| 69 | isolated_push_test!(test_push_to_nostr_ref_with_wrong_commit_after_event_received_rejected); | 69 | isolated_push_test!(test_push_to_nostr_ref_with_wrong_commit_after_event_received_rejected); |
| 70 | isolated_push_test!(test_push_to_nostr_ref_with_correct_commit_after_event_received_accepted); | 70 | isolated_push_test!( |
| 71 | test_push_to_nostr_ref_with_correct_commit_after_event_received_accepted_and_event_served | ||
| 72 | ); | ||
| 71 | isolated_push_test!(test_head_set_after_state_event_with_existing_commit); | 73 | isolated_push_test!(test_head_set_after_state_event_with_existing_commit); |
| 72 | isolated_push_test!(test_head_set_after_git_push_with_required_oids); | 74 | isolated_push_test!(test_head_set_after_git_push_with_required_oids); |
| 73 | 75 | ||
| 74 | // Note: test_push_of_state_by_maintainer_updates_other_maintainer_repos is not included | 76 | // Note: test_push_of_state_by_maintainer_updates_other_maintainer_repos is not included |
| 75 | // as it's a stub for the purgatory feature. It can be run manually once implemented: | 77 | // as it's a stub for the purgatory feature. It can be run manually once implemented: |
| 76 | // isolated_push_test!(test_push_of_state_by_maintainer_updates_other_maintainer_repos); | 78 | // isolated_push_test!(test_push_of_state_by_maintainer_updates_other_maintainer_repos); |
| 77 | |||