From 5c266302c518554e5a6ecefe12e0202aa7a0a9f7 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Thu, 17 Dec 2020 21:10:20 -0500 Subject: [PATCH] Adding unfollows. --- .drone.yml | 5 ++--- api_tests/src/post.spec.ts | 7 ++++++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 5e3ed48e0..ec0d69fee 100644 --- a/.drone.yml +++ b/.drone.yml @@ -63,14 +63,13 @@ steps: - mv target/x86_64-unknown-linux-musl/debug/lemmy_server target/lemmy_server - name: run federation tests - image: node:15.4.0 + image: node:15-alpine3.12 environment: LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432 DO_WRITE_HOSTS_FILE: 1 commands: - ls -la target/lemmy_server - # - apk add bash curl postgresql-client - - apt-get update && apt-get install -y postgresql postgresql-contrib + - apk add bash curl postgresql-client - bash api_tests/prepare-drone-federation-test.sh - cd api_tests/ - yarn diff --git a/api_tests/src/post.spec.ts b/api_tests/src/post.spec.ts index d90cc99c3..98ecd920c 100644 --- a/api_tests/src/post.spec.ts +++ b/api_tests/src/post.spec.ts @@ -35,14 +35,19 @@ beforeAll(async () => { await setupLogins(); let search = await searchForBetaCommunity(alpha); betaCommunity = search.communities[0]; + await unfollows(); }); afterAll(async () => { + await unfollows(); +}); + +async function unfollows() { await unfollowRemotes(alpha); await unfollowRemotes(gamma); await unfollowRemotes(delta); await unfollowRemotes(epsilon); -}); +} function assertPostFederation( postOne: Post,