Improve auto mute tests
authorChocobozzz <me@florianbigard.com>
Thu, 7 May 2020 15:08:16 +0000 (17:08 +0200)
committerChocobozzz <me@florianbigard.com>
Thu, 7 May 2020 15:08:16 +0000 (17:08 +0200)
server/tests/external-plugins/auto-mute.ts
shared/extra-utils/plugins/mock-blocklist.ts

index 49b104882a16910e9a76a5af29022eafebe98270..2f2c9102db184533913f40d904ff822a2b561b94 100644 (file)
@@ -1,11 +1,25 @@
 /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
 
 import 'mocha'
-
-
-import { installPlugin, MockBlocklist, setAccessTokensToServers, uploadVideoAndGetId, updatePluginSettings, doubleFollow, getVideosList, wait } from '../../../shared/extra-utils'
-import { cleanupTests, flushAndRunMultipleServers, ServerInfo } from '../../../shared/extra-utils/server/servers'
 import { expect } from 'chai'
+import { removeAccountFromServerBlocklist } from '@shared/extra-utils/users/blocklist'
+import {
+  doubleFollow,
+  getVideosList,
+  installPlugin,
+  MockBlocklist,
+  setAccessTokensToServers,
+  updatePluginSettings,
+  uploadVideoAndGetId,
+  wait
+} from '../../../shared/extra-utils'
+import {
+  cleanupTests,
+  flushAndRunMultipleServers,
+  killallServers,
+  reRunServer,
+  ServerInfo
+} from '../../../shared/extra-utils/server/servers'
 
 describe('Official plugin auto-mute', function () {
   let servers: ServerInfo[]
@@ -114,6 +128,44 @@ describe('Official plugin auto-mute', function () {
     expect(res.body.total).to.equal(2)
   })
 
+  it('Should auto mute an account, manually unmute it and do not remute it automatically', async function () {
+    this.timeout(20000)
+
+    const account = 'root@localhost:' + servers[1].port
+
+    blocklistServer.replace({
+      data: [
+        {
+          value: account,
+          updatedAt: new Date().toISOString()
+        }
+      ]
+    })
+
+    await wait(2000)
+
+    {
+      const res = await getVideosList(servers[0].url)
+      expect(res.body.total).to.equal(1)
+    }
+
+    await removeAccountFromServerBlocklist(servers[0].url, servers[0].accessToken, account)
+
+    {
+      const res = await getVideosList(servers[0].url)
+      expect(res.body.total).to.equal(2)
+    }
+
+    killallServers([ servers[0] ])
+    await reRunServer(servers[0])
+    await wait(2000)
+
+    {
+      const res = await getVideosList(servers[0].url)
+      expect(res.body.total).to.equal(2)
+    }
+  })
+
   after(async function () {
     await cleanupTests(servers)
   })
index ef57d96a85620c9b537fc02c7a07ec174615f20b..6fe3dee9f7341e1fedcb74d767c5a68f0bc59e40 100644 (file)
@@ -4,6 +4,7 @@ type BlocklistResponse = {
   data: {
     value: string
     action?: 'add' | 'remove'
+    updatedAt?: string
   }[]
 }