]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/run-frontend-unittests.sh
import 15.2.0 Octopus source
[ceph.git] / ceph / src / pybind / mgr / dashboard / run-frontend-unittests.sh
CommitLineData
11fdf7f2
TL
1#!/usr/bin/env bash
2
3failed=false
9f95a23c
TL
4SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
5: ${CEPH_ROOT:=$SCRIPTPATH/../../../../}
6
11fdf7f2 7cd $CEPH_ROOT/src/pybind/mgr/dashboard/frontend
9f95a23c 8[ -z "$BUILD_DIR" ] && BUILD_DIR=build
11fdf7f2 9if [ `uname` != "FreeBSD" ]; then
9f95a23c 10 . $CEPH_ROOT/${BUILD_DIR}/src/pybind/mgr/dashboard/node-env/bin/activate
11fdf7f2
TL
11fi
12
13# Build
14npm run build -- --prod --progress=false || failed=true
15
16# Unit Tests
17config='src/unit-test-configuration.ts'
18if [ -e $config ]; then
19 mv $config ${config}_old
20fi
21cp ${config}.sample $config
22
23npm run test:ci || failed=true
24
25rm $config
26if [ -e ${config}_old ]; then
27 mv ${config}_old $config
28fi
29
30# Linting
31npm run lint --silent
32if [ $? -gt 0 ]; then
33 failed=true
34 echo -e "\nTry running 'npm run fix' to fix some linting errors. \
35Some errors might need a manual fix."
36fi
37
38# I18N
eafe8130
TL
39npm run i18n:extract
40i18n_lint=`awk '/<source> |<source>$| <\/source>/,/<\/context-group>/ {printf "%-4s ", NR; print}' src/locale/messages.xlf`
11fdf7f2
TL
41if [[ ! -z $i18n_lint ]]; then
42 echo -e "The following source translations in 'messages.xlf' need to be \
43fixed, please check the I18N suggestions in 'HACKING.rst':\n"
44 echo "${i18n_lint}"
45 failed=true
46fi
47
48if [ `uname` != "FreeBSD" ]; then
49 deactivate
50fi
51
52if [ "$failed" = "true" ]; then
53 exit 1
54fi