]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/ci.sh
Optimize server eslint
[github/Chocobozzz/PeerTube.git] / scripts / ci.sh
CommitLineData
12e8547f 1#!/bin/bash
0e4ffb4b
LA
2
3set -eu
18530063
C
4
5if [ $# -eq 0 ]; then
6 echo "Need test suite argument."
7 exit -1
8fi
9
7abb5c5d 10retries=3
7abb5c5d
C
11
12runTest () {
17ae86e9
C
13 jobname=$1
14 shift
15
7abb5c5d
C
16 jobs=$1
17 shift
17ae86e9 18
7abb5c5d
C
19 files=$@
20
21 echo $files
22
17ae86e9
C
23 joblog="$jobname-ci.log"
24
59fd824c 25 parallel -j $jobs --retries $retries \
3d470a53 26 "echo Trying {} >> $joblog; npm run mocha -- -c --timeout 30000 --exit --require ./dist/server/tests/register.js --bail {}" \
7abb5c5d 27 ::: $files
17ae86e9 28
34caef7f 29 cat "$joblog" | uniq -c
17ae86e9 30 rm "$joblog"
7abb5c5d
C
31}
32
33findTestFiles () {
29b7426c
C
34 exception="-not -name index.js"
35
36 if [ ! -z ${2+x} ]; then
37 exception="$exception -not -name $2"
38 fi
39
40 find $1 -type f -name "*.js" $exception | xargs echo
7abb5c5d 41}
be7ca0c6 42
29b7426c 43if [ "$1" = "client" ]; then
59fd824c 44 npm run build
7abb5c5d 45
3d470a53
C
46 feedsFiles=$(findTestFiles ./dist/server/tests/feeds)
47 helperFiles=$(findTestFiles ./dist/server/tests/helpers)
2b9f672b 48 libFiles=$(findTestFiles ./dist/server/tests/lib)
3d470a53 49 miscFiles="./dist/server/tests/client.js ./dist/server/tests/misc-endpoints.js"
29b7426c
C
50 # Not in plugin task, it needs an index.html
51 pluginFiles="./dist/server/tests/plugins/html-injection.js"
7abb5c5d 52
2b9f672b 53 MOCHA_PARALLEL=true runTest "$1" 2 $feedsFiles $helperFiles $miscFiles $pluginFiles $libFiles
29b7426c 54elif [ "$1" = "cli-plugin" ]; then
1b6b4757 55 npm run build:server
b488ba1e 56 npm run setup:cli
7abb5c5d 57
29b7426c 58 pluginsFiles=$(findTestFiles ./dist/server/tests/plugins html-injection.js)
3d470a53 59 cliFiles=$(findTestFiles ./dist/server/tests/cli)
7abb5c5d 60
29b7426c 61 MOCHA_PARALLEL=true runTest "$1" 2 $pluginsFiles
17ae86e9 62 runTest "$1" 1 $cliFiles
1297eb5d 63elif [ "$1" = "api-1" ]; then
15f25480 64 npm run build:server
7abb5c5d 65
3d470a53
C
66 checkParamFiles=$(findTestFiles ./dist/server/tests/api/check-params)
67 notificationsFiles=$(findTestFiles ./dist/server/tests/api/notifications)
68 searchFiles=$(findTestFiles ./dist/server/tests/api/search)
7abb5c5d 69
17ae86e9 70 MOCHA_PARALLEL=true runTest "$1" 3 $notificationsFiles $searchFiles $checkParamFiles
1297eb5d 71elif [ "$1" = "api-2" ]; then
15f25480 72 npm run build:server
7abb5c5d 73
8ebf2a5d 74 liveFiles=$(findTestFiles ./dist/server/tests/api/live)
3d470a53
C
75 serverFiles=$(findTestFiles ./dist/server/tests/api/server)
76 usersFiles=$(findTestFiles ./dist/server/tests/api/users)
7abb5c5d 77
13e13377 78 MOCHA_PARALLEL=true runTest "$1" 3 $liveFiles $serverFiles $usersFiles
1297eb5d
C
79elif [ "$1" = "api-3" ]; then
80 npm run build:server
7abb5c5d 81
3d470a53 82 videosFiles=$(findTestFiles ./dist/server/tests/api/videos)
7abb5c5d 83
17ae86e9 84 MOCHA_PARALLEL=true runTest "$1" 3 $videosFiles
2fbe7f19 85elif [ "$1" = "api-4" ]; then
46b2cec7 86 npm run build:server
7abb5c5d 87
3d470a53
C
88 moderationFiles=$(findTestFiles ./dist/server/tests/api/moderation)
89 redundancyFiles=$(findTestFiles ./dist/server/tests/api/redundancy)
0305db28 90 objectStorageFiles=$(findTestFiles ./dist/server/tests/api/object-storage)
3d470a53 91 activitypubFiles=$(findTestFiles ./dist/server/tests/api/activitypub)
7abb5c5d 92
fd5fa94b 93 MOCHA_PARALLEL=true runTest "$1" 2 $moderationFiles $redundancyFiles $activitypubFiles $objectStorageFiles
829b794a
C
94elif [ "$1" = "external-plugins" ]; then
95 npm run build:server
7abb5c5d 96
3d470a53 97 externalPluginsFiles=$(findTestFiles ./dist/server/tests/external-plugins)
7abb5c5d 98
17ae86e9 99 runTest "$1" 1 $externalPluginsFiles
18530063 100elif [ "$1" = "lint" ]; then
3d470a53 101 npm run eslint -- --ext .ts "./server/**/*.ts" "shared/**/*.ts" "scripts/**/*.ts"
a3705089 102 npm run swagger-cli -- validate support/doc/api/openapi.yaml
f2659ae0 103
0e4ffb4b
LA
104 ( cd client
105 npm run lint
106 )
18530063 107fi