TESTS.sh
1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env bash
TESTEXEC=vendor/bin/phpunit
TESTEXEC2=vendor/phpunit/phpunit/phpunit
# Tous les tests
TESTALL=1
# Quelques tests seulement (au moins 1)
#TESTALL=0
#echo "arg1 is: $1"
#echo "arg2 is: $2"
#echo "all is: $*"
# Souvent necessaire pour que les tests se passent bien:
sudo rm -rf tmp/cache/*
#rm -rf tmp/cache/*/*
##sudo chmod o+w tmp/cache/persistent/myapp_cake_core_translations_* > /dev/null 2>&1
# D'abord on affiche la version courante
./VERSION
if [[ "$1" != "" ]] ; then
#$TESTEXEC --filter $*
$TESTEXEC --filter $1
TESTALL=2
elif [[ $TESTALL == 1 ]] ; then
$TESTEXEC || $TESTEXEC2
# Si ca ne marche pas, essayer plutot:
#vendor/phpunit/phpunit/phpunit
# Plus de details:
#vendor/bin/phpunit --debug
#vendor/bin/phpunit --verbose --log-tap tap.log
#vendor/bin/phpunit --testdox
elif [[ $TESTALL == 0 ]] ; then
# Executer UN SEUL test:
# Ex: je veux executer ONLY le test testMat31CreateAs() de MaterielsControllerTest:
#vendor/bin/phpunit --filter testMat31CreateAs
#vendor/bin/phpunit --filter testMat32CreateAdministratifOrTechnicalAs
#vendor/bin/phpunit --filter testACLEditUtilisateur
#vendor/bin/phpunit --filter testMatCopy
$TESTEXEC --filter EmpruntsControllerTest::testAdd
fi
##sudo rm -f tmp/cache/persistent/myapp_cake_core_translations_*
sudo rm -rf tmp/cache/*