1 | ### test mpqc jobs
|
---|
2 |
|
---|
3 | # perform test with PoolWorkers using stastand-inn mpqc
|
---|
4 | AT_SETUP([Fragmentation - Automation: mpqc jobs])
|
---|
5 | AT_KEYWORDS([fragmentation automation server poolworker mpqc])
|
---|
6 |
|
---|
7 | # check that ports are unique over all tests such that they may run in parallel
|
---|
8 | WORKERPORT=1060
|
---|
9 | CONTROLLERPORT=1061
|
---|
10 | WORKERLISTENPORT=1062
|
---|
11 |
|
---|
12 | # start service in background
|
---|
13 | ${AUTOTEST_PATH}/Fragmentation/Automation/Server $WORKERPORT $CONTROLLERPORT &
|
---|
14 | server_pid=$!
|
---|
15 | AT_CHECK([sleep 1], 0, [ignore], [ignore], [kill $server_pid])
|
---|
16 |
|
---|
17 | # add one job
|
---|
18 | AT_CHECK([${AUTOTEST_PATH}/Fragmentation/Automation/Controller 127.0.0.1 $CONTROLLERPORT addjobs ../../mpqc ${abs_top_srcdir}/tests/regression/Fragmentation/Automation/pre/BondFragment00.in], 0, [ignore], [ignore], [kill $server_pid])
|
---|
19 |
|
---|
20 | # enlist a worker to work on jobs
|
---|
21 | ${AUTOTEST_PATH}/Fragmentation/Automation/PoolWorker 127.0.0.1 $WORKERPORT 127.0.0.1 $WORKERLISTENPORT &
|
---|
22 | worker_pid=$!
|
---|
23 | AT_CHECK([sleep 2], 0, [ignore], [ignore], [kill $server_pid $worker_pid])
|
---|
24 |
|
---|
25 | # send kill signal to worker such that it shuts down
|
---|
26 | AT_CHECK([kill -INT $worker_pid], 0, [stdout], [ignore], [kill $server_pid $worker_pid])
|
---|
27 |
|
---|
28 | # check number of done jobs
|
---|
29 | AT_CHECK([${AUTOTEST_PATH}/Fragmentation/Automation/Controller 127.0.0.1 $CONTROLLERPORT checkresults], 0, [stdout], [ignore], [kill $server_pid])
|
---|
30 | AT_CHECK([fgrep "1 jobs are calculated so far" stdout], 0, [ignore], [ignore], [kill $server_pid])
|
---|
31 |
|
---|
32 | # shutdown controller socket
|
---|
33 | AT_CHECK([${AUTOTEST_PATH}/Fragmentation/Automation/Controller 127.0.0.1 $CONTROLLERPORT shutdown], 0, [stdout], [ignore], [kill $server_pid])
|
---|
34 |
|
---|
35 | # check that server is truely down
|
---|
36 | AT_CHECK([sleep 1], 0, [ignore], [ignore], [kill $server_pid])
|
---|
37 | AT_CHECK([kill $server_pid], 1, [ignore], [ignore])
|
---|
38 |
|
---|
39 | AT_CLEANUP
|
---|