@@ -403,7 +403,7 @@ Before(async function () {
403
403
}
404
404
} ) ;
405
405
406
- async function fetchActivityPub ( url , options ) {
406
+ async function fetchActivityPub ( url , options = { } ) {
407
407
if ( ! options . headers ) {
408
408
options . headers = { } ;
409
409
}
@@ -702,6 +702,40 @@ async function waitForRequest(
702
702
return waitForRequest ( method , path , matcher , step , milliseconds - step ) ;
703
703
}
704
704
705
+ async function waitForInboxActivity (
706
+ activity ,
707
+ options = {
708
+ retryCount : 0 ,
709
+ delay : 0 ,
710
+ } ,
711
+ ) {
712
+ const MAX_RETRIES = 5 ;
713
+
714
+ const result = await fetchActivityPub (
715
+ 'http://fake-ghost-activitypub/.ghost/activitypub/inbox/index' ,
716
+ ) ;
717
+ const json = await result . json ( ) ;
718
+
719
+ if ( json . items . find ( ( item ) => item . id === activity . id ) ) {
720
+ return ;
721
+ }
722
+
723
+ if ( options . retryCount === MAX_RETRIES ) {
724
+ throw new Error (
725
+ `Max retries reached (${ MAX_RETRIES } ) when waiting on an activity in the inbox` ,
726
+ ) ;
727
+ }
728
+
729
+ if ( options . delay > 0 ) {
730
+ await new Promise ( ( resolve ) => setTimeout ( resolve , options . delay ) ) ;
731
+ }
732
+
733
+ await waitForInboxActivity ( activity , {
734
+ retryCount : options . retryCount + 1 ,
735
+ delay : options . delay + 100 ,
736
+ } ) ;
737
+ }
738
+
705
739
Then (
706
740
'Activity {string} is sent to {string}' ,
707
741
async function ( activityName , actorName ) {
@@ -869,20 +903,9 @@ Then('the found {string} has property {string}', function (name, prop) {
869
903
} ) ;
870
904
871
905
Then ( '{string} is in our Inbox' , async function ( activityName ) {
872
- const response = await fetchActivityPub (
873
- 'http://fake-ghost-activitypub/.ghost/activitypub/inbox/index' ,
874
- {
875
- headers : {
876
- Accept : 'application/ld+json' ,
877
- } ,
878
- } ,
879
- ) ;
880
- const inbox = await response . json ( ) ;
881
906
const activity = this . activities [ activityName ] ;
882
907
883
- const found = inbox . items . find ( ( item ) => item . id === activity . id ) ;
884
-
885
- assert ( found ) ;
908
+ await waitForInboxActivity ( activity ) ;
886
909
} ) ;
887
910
888
911
Then ( '{string} is not in our Inbox' , async function ( activityName ) {
0 commit comments