]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/run-frontend-unittests.sh
update ceph source to reef 18.2.0
[ceph.git] / ceph / src / pybind / mgr / dashboard / run-frontend-unittests.sh
1 #!/usr/bin/env bash
2
3 failed=false
4 SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
5 : ${CEPH_ROOT:=$SCRIPTPATH/../../../../}
6
7 cd $CEPH_ROOT/src/pybind/mgr/dashboard/frontend
8 [ -z "$BUILD_DIR" ] && BUILD_DIR=build
9 if [ `uname` != "FreeBSD" ]; then
10 . $CEPH_ROOT/${BUILD_DIR}/src/pybind/mgr/dashboard/frontend/node-env/bin/activate
11 fi
12
13 # Build
14 npm run build -- --configuration=production --progress=false || failed=true
15
16 # Unit Tests
17 npm run test:ci || failed=true
18
19 # Linting
20 npm run lint --silent
21 if [ $? -gt 0 ]; then
22 failed=true
23 echo -e "\nTry running 'npm run fix' to fix some linting errors. \
24 Some errors might need a manual fix."
25 fi
26
27 # I18N
28 npm run i18n:extract
29 if [ $? -gt 0 ]; then
30 failed=true
31 echo -e "\nTranslations extraction has failed."
32 else
33 i18n_lint=`awk '/<source> |<source>$| <\/source>/,/<\/context-group>/ {printf "%-4s ", NR; print}' src/locale/messages.xlf`
34
35 # Excluding the node_modules/ folder errors from the lint error
36 if [[ -n "$i18n_lint" && $i18n_lint != *"node_modules/"* ]]; then
37 echo -e "\nThe following source translations in 'messages.xlf' need to be \
38 fixed, please check the I18N suggestions on https://docs.ceph.com/en/latest/dev/developer_guide/dash-devel/#i18n:\n"
39 echo "${i18n_lint}"
40 failed=true
41 fi
42 fi
43
44 if [ `uname` != "FreeBSD" ]; then
45 deactivate
46 fi
47
48 if [ "$failed" = "true" ]; then
49 exit 1
50 fi