### fragment the molecule and check the number of configs AT_SETUP([Fragmentation - Automation]) AT_KEYWORDS([fragmentation automation worker]) WORKERPORT=1025 CONTROLLERPORT=1026 # start service in background ${AUTOTEST_PATH}/Fragmentation/Automation/Server $WORKERPORT $CONTROLLERPORT & AT_CHECK([sleep 1], 0, [ignore], [ignore], [pkill Server]) # add a job AT_CHECK([${AUTOTEST_PATH}/Fragmentation/Automation/JobAdder 127.0.0.1 $CONTROLLERPORT 1], 0, [stdout], [ignore], [pkill Server]) # first worker has a job AT_CHECK([${AUTOTEST_PATH}/Fragmentation/Automation/Worker 127.0.0.1 $WORKERPORT], 0, [stdout], [ignore], [pkill Server]) AT_CHECK([fgrep "Job id: 1" stdout], 0, [ignore], [ignore], [pkill Server]) # check number of done jobs AT_CHECK([${AUTOTEST_PATH}/Fragmentation/Automation/ResultChecker 127.0.0.1 $CONTROLLERPORT], 0, [stdout], [ignore], [pkill Server]) AT_CHECK([fgrep "1 jobs are calculated so far" stdout], 0, [ignore], [ignore], [pkill Server]) # add no job to shutdown socket AT_CHECK([${AUTOTEST_PATH}/Fragmentation/Automation/JobAdder 127.0.0.1 $CONTROLLERPORT 0], 0, [stdout], [ignore], [pkill Server]) # third job has none AT_CHECK([${AUTOTEST_PATH}/Fragmentation/Automation/Worker 127.0.0.1 $WORKERPORT], 1, [stdout], [ignore], [pkill Server]) AT_CHECK([fgrep "The server has no job for me" stdout], 0, [ignore], [ignore], [pkill Server]) # check that server is truely down AT_CHECK([sleep 1], 0, [ignore], [ignore], [pkill Server]) AT_CHECK([pkill Server], 1, [ignore], [ignore]) AT_CLEANUP