source: ThirdParty/JobMarket/tests/regression/testsuite-numberworkers.at@ 90ece9

AutomationFragmentation_failures Candidate_v1.6.1 ChemicalSpaceEvaluator Exclude_Hydrogens_annealWithBondGraph ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_contraction-expansion Gui_displays_atomic_force_velocity PythonUI_with_named_parameters StoppableMakroAction TremoloParser_IncreasedPrecision
Last change on this file since 90ece9 was 0542e2, checked in by Frederik Heber <frederik.heber@…>, 7 years ago

Added GetNumberWorkersOperation, Controller returns number of workers.

  • TEST: Added regression test on this new functionality.
  • Property mode set to 100644
File size: 1.8 KB
Line 
1### fragment the molecule and check the number of configs
2
3AT_SETUP([Fragmentation - Getting number of workers])
4AT_KEYWORDS([fragmentation numberworkers server worker])
5
6# check that ports are unique over all tests such that they may run in parallel
7WORKERPORT=11085
8CONTROLLERPORT=11086
9WORKERLISTENPORT=11087
10
11# start service in background
12${AUTOTEST_PATH}/JobMarketServer --workerport $WORKERPORT --controllerport $CONTROLLERPORT &
13server_pid=$!
14AT_CHECK([sleep 1], 0, [ignore], [ignore], [kill $server_pid])
15
16# enlist a worker to work on jobs
17${AUTOTEST_PATH}/JobMarketPoolWorker -v 5 --signal 2 --server 127.0.0.1:${WORKERPORT} --hostname 127.0.0.1 --listen $WORKERLISTENPORT &
18worker_pid=$!
19AT_CHECK([sleep 2], 0, [ignore], [ignore], [kill $server_pid $worker_pid])
20
21# check number of workers
22AT_CHECK([${AUTOTEST_PATH}/JobMarketController --server 127.0.0.1:$CONTROLLERPORT --command numberworkers], 0, [stdout], [ignore], [kill $server_pid])
23AT_CHECK([fgrep "0 are busy and 1 are idle" stdout], 0, [ignore], [ignore], [kill $server_pid $worker_pid])
24
25# send kill signal to worker such that it shuts down
26AT_CHECK([kill -INT $worker_pid], 0, [stdout], [ignore], [kill $server_pid $worker_pid])
27
28# check number of workers
29AT_CHECK([${AUTOTEST_PATH}/JobMarketController --server 127.0.0.1:$CONTROLLERPORT --command numberworkers], 0, [stdout], [ignore], [kill $server_pid])
30AT_CHECK([fgrep "0 are busy and 0 are idle" stdout], 0, [ignore], [ignore], [kill $server_pid])
31
32# shutdown controller socket
33AT_CHECK([${AUTOTEST_PATH}/JobMarketController --server 127.0.0.1:$CONTROLLERPORT --command shutdown], 0, [stdout], [ignore], [kill $server_pid])
34
35# check that server is truely down
36AT_CHECK([sleep 1], 0, [ignore], [ignore], [kill $server_pid])
37AT_CHECK([kill $server_pid], 1, [ignore], [ignore])
38
39AT_CLEANUP
Note: See TracBrowser for help on using the repository browser.