PeerTube/server/tests/plugins/translations.ts

75 lines
2.0 KiB
TypeScript
Raw Normal View History

2020-01-31 16:56:52 +01:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2019-07-26 14:44:50 +02:00
2022-08-17 15:44:32 +02:00
import { expect } from 'chai'
import { cleanupTests, createSingleServer, PeerTubeServer, PluginsCommand, setAccessTokensToServers } from '@shared/server-commands'
2019-07-26 14:44:50 +02:00
describe('Test plugin translations', function () {
2021-07-16 09:47:51 +02:00
let server: PeerTubeServer
2021-07-07 10:33:49 +02:00
let command: PluginsCommand
2019-07-26 14:44:50 +02:00
before(async function () {
this.timeout(30000)
2021-07-16 09:47:51 +02:00
server = await createSingleServer(1)
2019-07-26 14:44:50 +02:00
await setAccessTokensToServers([ server ])
2021-07-16 09:04:35 +02:00
command = server.plugins
2019-07-26 14:44:50 +02:00
2021-07-07 10:33:49 +02:00
await command.install({ path: PluginsCommand.getPluginTestPath() })
await command.install({ path: PluginsCommand.getPluginTestPath('-filter-translations') })
2019-07-26 14:44:50 +02:00
})
it('Should not have translations for locale pt', async function () {
2021-07-07 10:33:49 +02:00
const body = await command.getTranslations({ locale: 'pt' })
2019-07-26 14:44:50 +02:00
2021-07-07 10:33:49 +02:00
expect(body).to.deep.equal({})
2019-07-26 14:44:50 +02:00
})
it('Should have translations for locale fr', async function () {
2021-07-07 10:33:49 +02:00
const body = await command.getTranslations({ locale: 'fr-FR' })
2019-07-26 14:44:50 +02:00
2021-07-07 10:33:49 +02:00
expect(body).to.deep.equal({
2019-07-26 14:44:50 +02:00
'peertube-plugin-test': {
2020-01-31 16:56:52 +01:00
Hi: 'Coucou'
2019-07-26 14:44:50 +02:00
},
2021-06-17 16:02:38 +02:00
'peertube-plugin-test-filter-translations': {
2019-07-26 14:44:50 +02:00
'Hello world': 'Bonjour le monde'
}
})
})
it('Should have translations of locale it', async function () {
2021-07-07 10:33:49 +02:00
const body = await command.getTranslations({ locale: 'it-IT' })
2019-07-26 14:44:50 +02:00
2021-07-07 10:33:49 +02:00
expect(body).to.deep.equal({
2021-06-17 16:02:38 +02:00
'peertube-plugin-test-filter-translations': {
2019-07-26 14:44:50 +02:00
'Hello world': 'Ciao, mondo!'
}
})
})
it('Should remove the plugin and remove the locales', async function () {
2021-07-07 10:33:49 +02:00
await command.uninstall({ npmName: 'peertube-plugin-test-filter-translations' })
2019-07-26 14:44:50 +02:00
{
2021-07-07 10:33:49 +02:00
const body = await command.getTranslations({ locale: 'fr-FR' })
2019-07-26 14:44:50 +02:00
2021-07-07 10:33:49 +02:00
expect(body).to.deep.equal({
2019-07-26 14:44:50 +02:00
'peertube-plugin-test': {
2020-01-31 16:56:52 +01:00
Hi: 'Coucou'
2019-07-26 14:44:50 +02:00
}
})
}
{
2021-07-07 10:33:49 +02:00
const body = await command.getTranslations({ locale: 'it-IT' })
2019-07-26 14:44:50 +02:00
2021-07-07 10:33:49 +02:00
expect(body).to.deep.equal({})
2019-07-26 14:44:50 +02:00
}
})
after(async function () {
await cleanupTests([ server ])
})
})