Skip to content

Commit c5cbc73

Browse files
committed
Added testing helper for awaiting an activity in the inbox
1 parent 52f98f4 commit c5cbc73

File tree

2 files changed

+37
-13
lines changed

2 files changed

+37
-13
lines changed

features/follow-account.feature

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Feature: Follow accounts from their handle
66
Then the request is accepted
77
Given a "Accept(Follow(Alice))" Activity "A" by "Alice"
88
And "Alice" sends "A" to the Inbox
9+
And "A" is in our Inbox
910
Given we follow "Alice"
1011
Then the request is rejected with a 409
1112

features/step_definitions/stepdefs.js

+36-13
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ Before(async function () {
403403
}
404404
});
405405

406-
async function fetchActivityPub(url, options) {
406+
async function fetchActivityPub(url, options = {}) {
407407
if (!options.headers) {
408408
options.headers = {};
409409
}
@@ -702,6 +702,40 @@ async function waitForRequest(
702702
return waitForRequest(method, path, matcher, step, milliseconds - step);
703703
}
704704

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+
705739
Then(
706740
'Activity {string} is sent to {string}',
707741
async function (activityName, actorName) {
@@ -869,20 +903,9 @@ Then('the found {string} has property {string}', function (name, prop) {
869903
});
870904

871905
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();
881906
const activity = this.activities[activityName];
882907

883-
const found = inbox.items.find((item) => item.id === activity.id);
884-
885-
assert(found);
908+
await waitForInboxActivity(activity);
886909
});
887910

888911
Then('{string} is not in our Inbox', async function (activityName) {

0 commit comments

Comments
 (0)