-
Notifications
You must be signed in to change notification settings - Fork 5
/
runTestScenarios.sh
executable file
·74 lines (51 loc) · 1.46 KB
/
runTestScenarios.sh
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
#/bin/sh
set -e
signalfile=$1
function orchestratorLog() {
now=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
echo -e "[$now | Orchestrator | INFO] $1"
}
function waitForSeconds() {
wait=$1
orchestratorLog "Waiting ${wait} seconds"
sleep $wait
}
orchestratorLog "Orchestrator Started"
waitForSeconds 60
orchestratorLog "Commencing tests"
export ROOT_DIR=$(pwd)
pushd scenarios
./generatedArtifacts/createOneArtifact.sh
waitForSeconds 60
pushd industrial/gpsExample
./gpsExample.sh
popd
waitForSeconds 60
pushd industrial/salesSystem
./salesSystem.sh
popd
waitForSeconds 60
./generatedArtifacts/createTenRandomlyRelatedArtifacts.sh
waitForSeconds 60
./generatedArtifacts/createTwentyRandomlyRelatedArtifacts.sh
waitForSeconds 60
./generatedArtifacts/createOneHundredRandomlyRelatedArtifacts.sh
waitForSeconds 60
./generatedArtifacts/createTwoHundredRandomlyRelatedArtifactsOfVaryingSizes.sh
waitForSeconds 60
./generatedArtifacts/createOneThousandUnrelatedArtifactsOfFixedSize.sh
waitForSeconds 60
./generatedArtifacts/createFiveHundredRandomlyRelatedArtifactsOfVaryingSizes.sh
waitForSeconds 60
#./testCleanup.sh
popd
orchestratorLog "Scenario execution complete."
#orchestratorLog "Retrieving all blocks from the blockchain."
#./getAllBlocks.sh
if [ -z "${signalfile}" ]; then
orchestratorLog "No signal file defined."
else
orchestratorLog "Touching signal file ${signalfile}"
touch ${signalfile}
fi
orchestratorLog "Done."