]>
Commit | Line | Data |
---|---|---|
12e8547f | 1 | #!/bin/bash |
0e4ffb4b LA |
2 | |
3 | set -eu | |
18530063 C |
4 | |
5 | if [ $# -eq 0 ]; then | |
6 | echo "Need test suite argument." | |
7 | exit -1 | |
8 | fi | |
9 | ||
365b546c C |
10 | killall -q peertube || true |
11 | ||
7abb5c5d | 12 | retries=3 |
7abb5c5d C |
13 | |
14 | runTest () { | |
17ae86e9 C |
15 | jobname=$1 |
16 | shift | |
17 | ||
7abb5c5d C |
18 | jobs=$1 |
19 | shift | |
17ae86e9 | 20 | |
7abb5c5d C |
21 | files=$@ |
22 | ||
23 | echo $files | |
24 | ||
17ae86e9 C |
25 | joblog="$jobname-ci.log" |
26 | ||
59fd824c | 27 | parallel -j $jobs --retries $retries \ |
3d470a53 | 28 | "echo Trying {} >> $joblog; npm run mocha -- -c --timeout 30000 --exit --require ./dist/server/tests/register.js --bail {}" \ |
7abb5c5d | 29 | ::: $files |
17ae86e9 | 30 | |
34caef7f | 31 | cat "$joblog" | uniq -c |
17ae86e9 | 32 | rm "$joblog" |
7abb5c5d C |
33 | } |
34 | ||
35 | findTestFiles () { | |
29b7426c C |
36 | exception="-not -name index.js" |
37 | ||
38 | if [ ! -z ${2+x} ]; then | |
39 | exception="$exception -not -name $2" | |
40 | fi | |
41 | ||
42 | find $1 -type f -name "*.js" $exception | xargs echo | |
7abb5c5d | 43 | } |
be7ca0c6 | 44 | |
29b7426c | 45 | if [ "$1" = "client" ]; then |
59fd824c | 46 | npm run build |
7abb5c5d | 47 | |
3d470a53 C |
48 | feedsFiles=$(findTestFiles ./dist/server/tests/feeds) |
49 | helperFiles=$(findTestFiles ./dist/server/tests/helpers) | |
3d470a53 | 50 | miscFiles="./dist/server/tests/client.js ./dist/server/tests/misc-endpoints.js" |
29b7426c C |
51 | # Not in plugin task, it needs an index.html |
52 | pluginFiles="./dist/server/tests/plugins/html-injection.js" | |
7abb5c5d | 53 | |
29b7426c C |
54 | MOCHA_PARALLEL=true runTest "$1" 2 $feedsFiles $helperFiles $miscFiles $pluginFiles |
55 | elif [ "$1" = "cli-plugin" ]; then | |
1b6b4757 | 56 | npm run build:server |
b488ba1e | 57 | npm run setup:cli |
7abb5c5d | 58 | |
29b7426c | 59 | pluginsFiles=$(findTestFiles ./dist/server/tests/plugins html-injection.js) |
3d470a53 | 60 | cliFiles=$(findTestFiles ./dist/server/tests/cli) |
7abb5c5d | 61 | |
29b7426c | 62 | MOCHA_PARALLEL=true runTest "$1" 2 $pluginsFiles |
17ae86e9 | 63 | runTest "$1" 1 $cliFiles |
1297eb5d | 64 | elif [ "$1" = "api-1" ]; then |
15f25480 | 65 | npm run build:server |
7abb5c5d | 66 | |
3d470a53 C |
67 | checkParamFiles=$(findTestFiles ./dist/server/tests/api/check-params) |
68 | notificationsFiles=$(findTestFiles ./dist/server/tests/api/notifications) | |
69 | searchFiles=$(findTestFiles ./dist/server/tests/api/search) | |
7abb5c5d | 70 | |
17ae86e9 | 71 | MOCHA_PARALLEL=true runTest "$1" 3 $notificationsFiles $searchFiles $checkParamFiles |
1297eb5d | 72 | elif [ "$1" = "api-2" ]; then |
15f25480 | 73 | npm run build:server |
7abb5c5d | 74 | |
8ebf2a5d | 75 | liveFiles=$(findTestFiles ./dist/server/tests/api/live) |
3d470a53 C |
76 | serverFiles=$(findTestFiles ./dist/server/tests/api/server) |
77 | usersFiles=$(findTestFiles ./dist/server/tests/api/users) | |
7abb5c5d | 78 | |
17ae86e9 | 79 | MOCHA_PARALLEL=true runTest "$1" 3 $serverFiles $usersFiles $liveFiles |
1297eb5d C |
80 | elif [ "$1" = "api-3" ]; then |
81 | npm run build:server | |
7abb5c5d | 82 | |
3d470a53 | 83 | videosFiles=$(findTestFiles ./dist/server/tests/api/videos) |
7abb5c5d | 84 | |
17ae86e9 | 85 | MOCHA_PARALLEL=true runTest "$1" 3 $videosFiles |
2fbe7f19 | 86 | elif [ "$1" = "api-4" ]; then |
46b2cec7 | 87 | npm run build:server |
7abb5c5d | 88 | |
3d470a53 C |
89 | moderationFiles=$(findTestFiles ./dist/server/tests/api/moderation) |
90 | redundancyFiles=$(findTestFiles ./dist/server/tests/api/redundancy) | |
91 | activitypubFiles=$(findTestFiles ./dist/server/tests/api/activitypub) | |
7abb5c5d | 92 | |
c221d62a | 93 | MOCHA_PARALLEL=true TS_NODE_FILES=true runTest "$1" 2 $moderationFiles $redundancyFiles $activitypubFiles |
829b794a C |
94 | elif [ "$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 | 100 | elif [ "$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 | 107 | fi |