1
0
Fork 0
peertube/server/tests/plugins/translations.ts

78 lines
2.1 KiB
TypeScript
Raw Normal View History

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