1
0
Fork 0

Improve plugin constant tests

This commit is contained in:
Chocobozzz 2021-07-21 15:44:28 +02:00
parent dc3d902234
commit 2b9f672b58
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
5 changed files with 11 additions and 6 deletions

View File

@ -47,11 +47,12 @@ if [ "$1" = "client" ]; then
feedsFiles=$(findTestFiles ./dist/server/tests/feeds)
helperFiles=$(findTestFiles ./dist/server/tests/helpers)
libFiles=$(findTestFiles ./dist/server/tests/lib)
miscFiles="./dist/server/tests/client.js ./dist/server/tests/misc-endpoints.js"
# Not in plugin task, it needs an index.html
pluginFiles="./dist/server/tests/plugins/html-injection.js"
MOCHA_PARALLEL=true runTest "$1" 2 $feedsFiles $helperFiles $miscFiles $pluginFiles
MOCHA_PARALLEL=true runTest "$1" 2 $feedsFiles $helperFiles $miscFiles $pluginFiles $libFiles
elif [ "$1" = "cli-plugin" ]; then
npm run build:server
npm run setup:cli

View File

@ -7,24 +7,26 @@ async function register ({
getRouter
}) {
videoLanguageManager.addConstant('al_bhed', 'Al Bhed')
videoLanguageManager.addConstant('al_bhed2', 'Al Bhed 2')
videoLanguageManager.addLanguage('al_bhed2', 'Al Bhed 2')
videoLanguageManager.addConstant('al_bhed3', 'Al Bhed 3')
videoLanguageManager.deleteConstant('en')
videoLanguageManager.deleteConstant('fr')
videoLanguageManager.deleteLanguage('fr')
videoLanguageManager.deleteConstant('al_bhed3')
videoCategoryManager.addConstant(42, 'Best category')
videoCategoryManager.addCategory(42, 'Best category')
videoCategoryManager.addConstant(43, 'High best category')
videoCategoryManager.deleteConstant(1) // Music
videoCategoryManager.deleteConstant(2) // Films
videoCategoryManager.deleteCategory(2) // Films
videoLicenceManager.addConstant(42, 'Best licence')
videoLicenceManager.addLicence(42, 'Best licence')
videoLicenceManager.addConstant(43, 'High best licence')
videoLicenceManager.deleteConstant(1) // Attribution
videoLicenceManager.deleteConstant(7) // Public domain
videoPrivacyManager.deleteConstant(2)
videoPrivacyManager.deletePrivacy(2)
playlistPrivacyManager.deleteConstant(3)
playlistPrivacyManager.deletePlaylistPrivacy(3)
{
const router = getRouter()

View File

@ -6,3 +6,4 @@ import './cli/'
import './api/'
import './plugins/'
import './helpers/'
import './lib/'

View File

@ -0,0 +1 @@
export * from './video-constant-registry-factory'