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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
#!/bin/bash
TESTDIR=/home/aminer/aecid-testsuite
if [ $# -gt 0 ]
then
sudo service rsyslog start
sudo service postfix start
fi
case "$1" in
runSuspendModeTest)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runUnittests)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runAminerDemo)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runAminerJsonInputDemo)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runAminerIntegrationTest)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runCoverageTests)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runRemoteControlTest)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runGettingStarted)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runTryItOut)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runHowToCreateYourOwnSequenceDetector)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runHowToCreateYourOwnFrequencyDetector)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runHowToMissingMatchPathValueDetector)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runHowToEntropyDetector)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runJsonDemo)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runAminerEncodingDemo)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runOfflineMode)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runMypy)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runConfAvailableTest)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
runReleaseStringCheck)
cd $TESTDIR
./${1}.sh ${*:2}
exit $?
;;
ALL)
cd $TESTDIR
./runMypy.sh
./runReleaseStringCheck.sh
./runSuspendModeTest.sh
./runUnittests.sh
./runRemoteControlTest.sh
./runConfAvailableTest.sh
./runAminerDemo.sh demo/aminer/demo-config.py
./runAminerDemo.sh demo/aminer/jsonConverterHandler-demo-config.py
./runAminerDemo.sh demo/aminer/template_config.py
./runAminerDemo.sh demo/aminer/template_config.yml
./runAminerDemo.sh demo/aminer/demo-config.yml
./runAminerEncodingDemo.sh demo/aminer/demo-config.py
./runAminerEncodingDemo.sh demo/aminer/demo-config.yml
./runAminerJsonInputDemo.sh
./runJsonDemo.sh demo/aminerJsonInputDemo/json-aminer-demo.yml
./runJsonDemo.sh demo/aminerJsonInputDemo/json-elastic-demo.yml
./runJsonDemo.sh demo/aminerJsonInputDemo/json-eve-demo.yml
./runJsonDemo.sh demo/aminerJsonInputDemo/json-journal-demo.yml
./runJsonDemo.sh demo/aminerJsonInputDemo/json-wazuh-demo.yml
./runAminerIntegrationTest.sh aminerIntegrationTest.sh config.py
./runAminerIntegrationTest.sh aminerIntegrationTest2.sh config21.py config22.py
./runOfflineMode.sh
./runGettingStarted.sh
./runTryItOut.sh
./runHowToCreateYourOwnSequenceDetector.sh
./runHowToCreateYourOwnFrequencyDetector.sh
./runHowToMissingMatchPathValueDetector.sh
./runHowToEntropyDetector.sh
./runCoverageTests.sh
exit $?
;;
SHELL)
bash
exit 0
;;
*)
echo "Usage: [ ALL | SHELL | runSuspendModeTest | runUnittests | runAminerDemo | runJsonDemo | runAminerJsonInputDemo "
echo " runAminerIntegrationTest | runOfflineMode | runCoverageTests | runRemoteControlTest | runTryItOut "
echo " runGettingStarted | runHowToCreateYourOwnSequenceDetector | runHowToCreateYourOwnFrequencyDetector"
echo " runHowToMissingMatchPathValueDetector | runHowToEntropyDetector | runAminerEncodingDemo | runMypy"
echo " runConfAvailableTest | runReleaseStringCheck ] <options>"
exit 1
;;
esac
exit 0
|