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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507
|
#!/usr/bin/env python2.7
#////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
# Name :
# Author : Avi
# Revision : $Revision: #10 $
#
# Copyright 2009- ECMWF.
# This software is licensed under the terms of the Apache Licence version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
# In applying this licence, ECMWF does not waive the privileges and immunities
# granted to it by virtue of its status as an intergovernmental organisation
# nor does it submit to any jurisdiction.
#////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
import argparse # for argument parsing
import time
import os
import sys
import pwd
from datetime import datetime
from socket import gethostname
import shutil # used to remove directory tree
# ecflow_test_util, see File ecflow_test_util.py
import ecflow
from ecflow import Defs, Clock, DState, Style, State, RepeatDate, PrintStyle, File, Client, SState, \
CheckPt, Cron, Late, debug_build, Flag, FlagType
class Tester(object) :
def __init__(self,ci,args):
self.ci_ = ci
self.port_ = self.ci_.get_port()
self.ARGS_ = args
def clean_up_server(self):
self.log_msg(" clean_up server, clear log, remove check-pt, and white list file" )
self.ci_.clear_log()
try: os.remove(self.checkpt_file_path())
except: pass
try: os.remove(self.backup_checkpt_file_path())
except: pass
try: os.remove(self.white_list_file_path())
except: pass
def clean_up_data(self):
self.log_msg(" Attempting to Removing ECF_HOME " + self.ecf_home())
try:
shutil.rmtree(self.ecf_home(),True) # True means ignore errors
shutil.rmtree("test_gui",True) # True means ignore errors
print(" Remove OK")
except:
print(" Remove Failed")
pass
def ecf_home(self):
# debug_build() is defined for ecflow. Used in test to distinguish debug/release ecflow
# Vary ECF_HOME based on debug/release/port allowing multiple invocations of these tests
if debug_build():
return os.getcwd() + "/test_gui/data/ecf_home_debug_" + str(self.port_)
return os.getcwd() + "/test_gui/data/ecf_home_release_" + str(self.port_)
def ecf_includes(self) : return os.getcwd() + "/libs/pyext/test/data/includes"
def log_file_path(self): return "./" + gethostname() + "." + self.port_ + ".ecf.log"
def checkpt_file_path(self): return "./" + gethostname() + "." + self.port_ + ".ecf.check"
def backup_checkpt_file_path(self): return "./" + gethostname() + "." + self.port_ + ".ecf.check.b"
def white_list_file_path(self): return "./" + gethostname() + "." + self.port_ + ".ecf.lists"
def path_to_ecflow_client(self):
if self.ARGS_.ecflow_client != "":
return self.ARGS_.ecflow_client
# to use the local build, in preference, to release version of ecflow
path_to_client = File.find_client() # version used by the ecflow module, may not exist anymore
if os.path.exists(path_to_client):
return path_to_client
path_to_client = "/usr/local/apps/ecflow/" + self.ci_.version() + "/bin/ecflow_client"
if os.path.exists(path_to_client):
return path_to_client
return "ecflow_client" # fall back, just search on $PATH *IN* the shell where the server was started
def create_defs(self,name=""):
defs = Defs()
suite_name = name
if len(suite_name) == 0: suite_name = "s1"
suite = defs.add_suite(suite_name);
ecfhome = self.ecf_home()
suite.add_variable("ECF_HOME", ecfhome)
suite.add_variable("ECF_CLIENT_EXE_PATH", self.path_to_ecflow_client())
suite.add_variable("SLEEP", "1"); # not strictly required since default is 1 second
suite.add_variable("ECF_INCLUDE", self.ecf_includes());
family = suite.add_family("f1")
family.add_task("t1")
family.add_task("t2")
return defs;
def sync_local(self,sleep_time=4):
"""Delay added so that we can see the change in the GUI.
The GUI refresh rate should be set to 1 second
"""
self.ci_.sync_local()
if self.ARGS_.sync_sleep != 0 and sleep_time != 0:
time.sleep(self.ARGS_.sync_sleep)
def log_msg(self,msg):
print(msg)
self.ci_.log_msg("======================== " + msg + " ========================")
def test_version(self):
self.log_msg("test_version Client_version(" + self.ci_.version() + ") server version(" + self.ci_.server_version() + ")")
def test_client_get_server_defs(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
self.ci_.load(self.create_defs(test))
self.sync_local()
assert self.ci_.get_defs().find_suite(test) is not None, "Expected to find suite of name " + test + ":\n" + str(self.ci_.get_defs())
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
self.sync_local()
def test_client_restart_server(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
self.ci_.restart_server()
self.sync_local()
assert self.ci_.get_defs().get_server_state() == SState.RUNNING, "Expected server to be running"
paths = list(self.ci_.changed_node_paths)
#for path in self.ci_.changed_node_paths:
# print(" changed node path " + path);
assert len(paths) == 1, "expected changed node to be the root node"
assert paths[0] == "/", "Expected root path but found " + str(paths[0])
def test_client_halt_server(self):
self.log_msg(sys._getframe().f_code.co_name)
self.ci_.halt_server()
self.sync_local()
assert self.ci_.get_defs().get_server_state() == SState.HALTED, "Expected server to be halted"
paths = list(self.ci_.changed_node_paths)
#for path in self.ci_.changed_node_paths:
# print(" changed node path " + path);
assert len(paths) == 1, "expected changed node to be the root node"
assert paths[0] == "/", "Expected root path but found " + str(paths[0])
self.ci_.restart_server()
def test_client_shutdown_server(self):
self.log_msg(sys._getframe().f_code.co_name)
self.ci_.shutdown_server()
self.sync_local()
assert self.ci_.get_defs().get_server_state() == SState.SHUTDOWN, "Expected server to be shutdown"
paths = list(self.ci_.changed_node_paths)
#for path in self.ci_.changed_node_paths:
# print(" changed node path " + path);
assert len(paths) == 1, "expected changed node to be the root node"
assert paths[0] == "/", "Expected root path but found " + str(paths[0])
def test_client_load_in_memory_defs(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
self.ci_.load(self.create_defs(test))
self.sync_local()
assert self.ci_.get_defs().find_suite(test) is not None, "Expected to find suite of name " + test + ":\n" + str(self.ci_.get_defs())
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_load_from_disk(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
defs = self.create_defs(test);
defs_file = test + ".def"
defs.save_as_defs(defs_file)
assert os.path.exists(defs_file), "Expected file " + defs_file + " to exist after defs.save_as_defs()"
self.ci_.load(defs_file) # open and parse defs file, and load into server.\n"
# check load worked
self.sync_local()
assert self.ci_.get_defs().find_suite(test) is not None, "Expected to find suite of name " + test + ":\n" + str(self.ci_.get_defs())
os.remove(defs_file)
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_checkpt(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
try:
os.remove(self.checkpt_file_path())
os.remove(self.backup_checkpt_file_path())
except: pass
self.ci_.load(self.create_defs(test))
self.sync_local()
self.ci_.checkpt()
assert os.path.exists(self.checkpt_file_path()), "Expected check pt file " + self.checkpt_file_path() + " to exist after self.ci_.checkpt()"
assert os.path.exists(self.backup_checkpt_file_path()) == False, "Expected back up check pt file to *NOT* exist"
self.ci_.checkpt() # second check pt should cause backup check pt to be written
assert os.path.exists(self.backup_checkpt_file_path()), "Expected back up check pt file to exist after second self.ci_.checkpt()"
self.ci_.checkpt(CheckPt.NEVER) # switch of check pointing
self.ci_.checkpt(CheckPt.ALWAYS) # always check point, at any state change
self.ci_.checkpt(CheckPt.ON_TIME) # Check point periodically, by interval set in server
self.ci_.checkpt(CheckPt.ON_TIME, 200) # Check point periodically, by interval set in server
self.ci_.checkpt(CheckPt.UNDEFINED, 0, 35) # Change check point save time alarm
os.remove(self.checkpt_file_path())
os.remove(self.backup_checkpt_file_path())
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_restore_from_checkpt(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
try:
os.remove(self.checkpt_file_path())
os.remove(self.backup_checkpt_file_path())
except: pass
self.ci_.load(self.create_defs(test))
self.sync_local()
self.ci_.checkpt()
self.ci_.delete_all()
self.sync_local()
assert len(list(self.ci_.get_defs().suites)) == 0, "Expected all suites to be delete:\n"
self.ci_.halt_server() # server must be halted, otherwise restore_from_checkpt will throw
self.ci_.restore_from_checkpt()
self.sync_local()
assert self.ci_.get_defs().find_suite(test) is not None, "Expected to find suite " + test + " after restore from checkpt:\n" + str(self.ci_.get_defs())
os.remove(self.checkpt_file_path())
self.ci_.restart_server()
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def get_username(self): return pwd.getpwuid(os.getuid())[ 0 ]
def test_client_reload_wl_file(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
expected = False
try: self.ci_.reload_wl_file();
except: expected = True
assert expected, "Expected reload to fail when no white list specified"
# create a white list file
wl_file = open(self.white_list_file_path(), 'w')
wl_file.write("#\n")
wl_file.write("4.4.14 # comment\n\n")
wl_file.write("# These user have read and write access to the server\n")
wl_file.write(self.get_username() + "\n") # add current user otherwise remaining test's, wont have access from server anymore
wl_file.write("axel # admin\n")
wl_file.write("john # admin\n\n")
wl_file.write("# Read only users\n")
wl_file.write("-fred # needs read access only\n")
wl_file.write("-joe90 # needs read access only\n")
wl_file.close();
self.ci_.reload_wl_file();
os.remove(self.white_list_file_path())
def generate_scripts_and_load_defs(self,defs):
defs.generate_scripts();
msg = defs.check_job_creation()
assert len(msg) == 0, msg
self.ci_.restart_server()
self.ci_.load(defs)
self.sync_local() # clear changed_node_paths
def create_and_load_defs(self,test,add_defstatus = True):
self.log_msg(test)
defs = self.create_defs(test)
suite = defs.find_suite(test)
if add_defstatus :
suite.add_defstatus(DState.suspended)
self.generate_scripts_and_load_defs(defs);
self.ci_.begin_suite(test)
def test_client_run(self):
test = sys._getframe().f_code.co_name # returns function name
self.create_and_load_defs(test)
self.ci_.run("/" + test, False)
count = 0
while 1:
count += 1
self.sync_local(0) # get the changes, synced with local defs
suite = self.ci_.get_defs().find_suite(test)
assert suite is not None, "Expected to find suite " + test + ":\n" + str(self.ci_.get_defs())
if suite.get_state() == State.complete:
break;
time.sleep(3)
if count > 20:
assert False, "test_client_run aborted after " + str(count) + " loops:\n" + str(self.ci_.get_defs())
self.ci_.log_msg("Looped " + str(count) + " times")
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_run_with_multiple_paths(self):
test = sys._getframe().f_code.co_name # returns function name
self.create_and_load_defs(test)
path_list = [ "/" + test + "/f1/t1", "/" + test + "/f1/t2"]
self.ci_.run( path_list, False)
count = 0
while 1:
count += 1
self.sync_local(0) # get the changes, synced with local defs
suite = self.ci_.get_defs().find_suite(test)
assert suite is not None, "Expected to find suite " + tests + ":\n" + str(self.ci_.get_defs())
if suite.get_state() == State.complete:
break;
time.sleep(3)
if count > 20:
assert False, test + " aborted after " + str(count) + " loops:\n" + str(self.ci_.get_defs())
self.ci_.log_msg("Looped " + str(count) + " times")
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_requeue(self):
test = sys._getframe().f_code.co_name # returns function name
self.create_and_load_defs(test)
self.ci_.force_state_recursive("/" + test,State.unknown)
self.sync_local();
suite = self.ci_.get_defs().find_suite(test)
assert suite.get_state() == State.unknown, "Expected to find suite with state unknown"
self.ci_.requeue("/" + test)
self.sync_local();
suite = self.ci_.get_defs().find_suite(test)
assert suite.get_state() == State.queued, "Expected to find suite with state queued"
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_requeue_with_multiple_paths(self):
test = sys._getframe().f_code.co_name # returns function name
self.create_and_load_defs(test)
self.ci_.force_state_recursive("/" + test,State.unknown)
self.sync_local();
task1 = self.ci_.get_defs().find_abs_node("/" + test + "/f1/t1")
task2 = self.ci_.get_defs().find_abs_node("/" + test + "/f1/t2")
assert task1.get_state() == State.unknown, "Expected to find t1 with state unknown"
assert task2.get_state() == State.unknown, "Expected to find t2 with state unknown"
path_list = [ "/" + test + "/f1/t1", "/" + test + "/f1/t2" ]
self.ci_.requeue( path_list)
self.sync_local();
task1 = self.ci_.get_defs().find_abs_node("/" + test + "/f1/t1")
task2 = self.ci_.get_defs().find_abs_node("/" + test + "/f1/t2")
assert task1.get_state() == State.queued, "Expected to find task t1 with state queued"
assert task2.get_state() == State.queued, "Expected to find task t2 with state queued"
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_free_dep(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
# add a real clock, since we are adding date dependencies
# Note: adding a future time dependency on a task, will cause it to requeue, when complete
# Hence even when we free these dependency they get requeued.
# So we use todays date.
ltime = time.localtime();
day = ltime.tm_mday
month = ltime.tm_mon
year = ltime.tm_year
defs = Defs()
suite = defs.add_suite(test);
suite.add_clock(Clock(False)) # true means hybrid, False means real
ecfhome = self.ecf_home();
suite.add_variable("ECF_HOME", ecfhome);
suite.add_variable("ECF_CLIENT_EXE_PATH", self.path_to_ecflow_client());
suite.add_variable("SLEEPTIME", "1");
suite.add_variable("ECF_INCLUDE", self.ecf_includes());
family = suite.add_family("f1")
family.add_task("t1").add_time("00:01")
family.add_task("t2").add_date(day,month,year)
family.add_task("t3").add_trigger("1 == 0")
t4 = family.add_task("t4")
t4.add_time("00:01")
t4.add_date(day,month,year)
t4.add_trigger("1 == 0")
self.generate_scripts_and_load_defs(defs);
self.ci_.begin_suite(test)
t1_path = "/" + test + "/f1/t1"
t2_path = "/" + test + "/f1/t2"
t3_path = "/" + test + "/f1/t3"
t4_path = "/" + test + "/f1/t4"
while 1:
self.sync_local(0)
t1 = self.ci_.get_defs().find_abs_node(t1_path)
t2 = self.ci_.get_defs().find_abs_node(t2_path)
t3 = self.ci_.get_defs().find_abs_node(t3_path)
t4 = self.ci_.get_defs().find_abs_node(t4_path)
if t1.get_state() == State.queued: self.ci_.free_time_dep(t1_path)
if t2.get_state() == State.queued: self.ci_.free_date_dep(t2_path)
if t3.get_state() == State.queued: self.ci_.free_trigger_dep(t3_path)
if t4.get_state() == State.queued: self.ci_.free_all_dep(t4_path)
suite = self.ci_.get_defs().find_suite(test)
if suite.get_state() == State.complete:
break;
time.sleep(3)
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_check(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
defs = Defs()
defs.add_extern("/a/b/c/d")
defs.add_extern("/a/b/c/d/e:event")
defs.add_extern("/a/b/c/d/e:meter")
defs.add_extern("/made/up/redundant/extren")
defs.add_extern("/made/up/redundant/extren")
defs.add_extern("/limits:c1a")
defs.add_extern("/limits:c1a")
defs.add_extern("fred")
defs.add_extern("limits:hpcd")
defs.add_extern("/suiteName:sg1")
defs.add_extern("/obs/limits:hpcd")
suite = defs.add_suite(test)
family_f1 = suite.add_family("f1")
family_f1.add_task("p").add_trigger("/a/b/c/d == complete") # extern path
family_f1.add_task("q").add_trigger("/a/b/c/d/e:event == set") # extern event path
family_f1.add_task("r").add_trigger("/a/b/c/d/e:meter le 30") # extern meter path
suite.add_inlimit("c1a","/limits")
suite.add_inlimit("fred")
family_anon = suite.add_family("anon")
family_anon.add_inlimit("hpcd","limits")
family_anon.add_task("t1").add_inlimit("sg1","/suiteName")
family_anon.add_task("t2").add_inlimit("hpcd","/obs/limits")
family_anon.add_task("t3").add_inlimit("c1a","/limits")
# CLIENT side check
client_check = defs.check()
assert len(client_check) == 0, "Expected clean defs check due to externs but found:\n" + client_check + "\n" + str(defs)
# SERVER side check
self.ci_.load(defs)
self.sync_local()
server_check = self.ci_.check("") # empty string means check the whole defs, otherwise a node path can be specified.
server_check = self.ci_.check("/" + test)
# print server_check
assert len(server_check) > 0, "Expected defs to fail, since no externs in server "
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_suites(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
no_of_suites = len(self.ci_.suites())
defs = self.create_defs("test_client_suites")
self.ci_.load(defs)
assert len(self.ci_.suites()) == no_of_suites + 1 ,"expected " + str(no_of_suites + 1) + " suites"
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_ch_suites(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
defs = Defs()
for i in range(1,7): defs.add_suite(test + str(i))
self.ci_.load(defs)
self.sync_local()
suite_names = [ test + '1', test + '2', test + '3' ]
self.ci_.ch_register(True,suite_names) # register interest in suites s1,s2,s3 and any new suites
self.ci_.ch_register(False,[ test + "1"]) # register interest in suites s1
self.sync_local();
self.ci_.ch_suites() # writes to standard out, list of suites and handles
for i in range(1,7): self.ci_.delete("/" + test + str(i) ) # stop downstream test from re-starting this
self.sync_local();
def test_client_ch_register(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg("test_client_ch_register")
try: self.ci_.ch_drop_user("") # drop all handle associated with current user
except: pass # Drop throws if no handle registered
defs = Defs()
for i in range(1,7): defs.add_suite( test + str(i))
self.ci_.load(defs)
self.sync_local();
suite_names = [ test + '1', test + '2', test + '3' ]
self.ci_.ch_register(True, suite_names) # register interest in suites s1,s2,s3 and any new suites
self.ci_.ch_register(False,suite_names) # register interest in suites s1,s2,s3 only
self.sync_local();
for i in range(1,7): self.ci_.delete("/" + test + str(i) ) # stop downstream test from re-starting this
def test_client_ch_drop(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
try: self.ci_.ch_drop_user("") # drop all handle associated with current user
except: pass # Drop throws if no handle registered
defs = Defs()
for i in range(1,7): defs.add_suite(test + str(i))
self.ci_.load(defs)
self.sync_local()
try:
# register interest in suites s1,s2,s3 and any new suites
suite_names = [ test + '1', test + '2', test + '3' ]
self.ci_.ch_register(True, suite_names)
self.sync_local();
finally:
self.ci_.ch_drop() # drop using handle stored in self.ci_., from last register
for i in range(1,7): self.ci_.delete("/" + test + str(i) ) # stop downstream test from re-starting this
def test_client_ch_drop_user(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
try: self.ci_.ch_drop_user("") # drop all handle associated with current user
except: pass # Drop throws if no handle registered
defs = Defs()
for i in range(1,7): defs.add_suite(test + str(i))
self.ci_.load(defs)
self.sync_local()
try:
# register interest in suites s1,s2,s3 and any new suites
suite_names = [ test + '1', test + '2', test + '3' ]
self.ci_.ch_register(True, suite_names)
self.sync_local();
except RuntimeError as e:
print(str(e))
self.ci_.ch_drop_user("") # drop all handle associated with current user
for i in range(1,7): self.ci_.delete("/" + test + str(i) ) # stop downstream test from re-starting this
def test_client_ch_add(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
try: self.ci_.ch_drop_user("") # drop all handle associated with current user
except: pass # Drop throws if no handle registered
defs = Defs()
for i in range(1,7): defs.add_suite(test + str(i))
self.ci_.load(defs)
self.sync_local()
try:
suite_names = []
self.ci_.ch_register(True,suite_names) # register interest in any new suites
suite_names = [ test + '1', test + '2' ]
self.ci_.ch_add(suite_names) # add suites s1,s2 to the last added handle
suite_names = [ test + '3', test + '4' ]
self.ci_.ch_add( self.ci_.ch_handle(),suite_names) # add suites s3,s4 using last handle
self.sync_local();
except RuntimeError as e:
print(str(e))
self.ci_.ch_drop_user("") # drop all handle associated with current user
for i in range(1,7): self.ci_.delete("/" + test + str(i) ) # stop downstream test from re-starting this
def test_client_ch_auto_add(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
try: self.ci_.ch_drop_user("") # drop all handle associated with current user
except: pass # Drop throws if no handle registered
defs = Defs()
for i in range(1,7): defs.add_suite(test + str(i))
self.ci_.load(defs)
self.sync_local()
try:
suite_names = [ test + '1', test + '2', test + '3' ]
self.ci_.ch_register(True,suite_names) # register interest in suites s1,s2,s3 and any new suites
self.ci_.ch_auto_add( False ) # disable adding newly created suites to last registered handle
self.ci_.ch_auto_add( True ) # enable adding newly created suites to last registered handle
self.ci_.ch_auto_add( self.ci_.ch_handle(), False ) # disable adding newly created suites to handle
self.sync_local();
except RuntimeError as e:
print(str(e))
self.ci_.ch_drop_user("") # drop all handle associated with current user
for i in range(1,7): self.ci_.delete("/" + test + str(i) ) # stop downstream test from re-starting this
def test_client_ch_remove(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
try: self.ci_.ch_drop_user("") # drop all handle associated with current user
except: pass # Drop throws if no handle registered
defs = Defs()
for i in range(1,7): defs.add_suite(test + str(i))
self.ci_.load(defs)
self.sync_local()
try:
suite_names = [ test + '1', test + '2', test + '3' ]
self.ci_.ch_register(True,suite_names) # register interest in suites s1,s2,s3 and any new suites
suite_names = [ test + '1' ]
self.ci_.ch_remove( suite_names ) # remove suites s1 from the last added handle\n"
suite_names = [ test + '2' ]
self.ci_.ch_remove( self.ci_.ch_handle(), suite_names ) # remove suites s2 from the last added handle\n"
self.sync_local();
except RuntimeError as e:
print(str(e))
self.ci_.ch_drop_user("") # drop all handle associated with current user
for i in range(1,7): self.ci_.delete("/" + test + str(i) ) # stop downstream test from re-starting this
def test_client_get_file(self):
test = sys._getframe().f_code.co_name # returns function name
self.create_and_load_defs(test,False)
while 1:
if self.ci_.news_local():
self.sync_local(0) # get the changes, synced with local defs
suite = self.ci_.get_defs().find_suite(test)
assert suite is not None, "Expected to find suite"
if suite.get_state() == State.complete:
break;
time.sleep(3)
try:
for file_t in [ 'script', 'job', 'jobout', 'manual' ]:
the_returned_file = self.ci_.get_file('/' + test +'/f1/t1',file_t) # make a request to the server
assert len(the_returned_file) > 0,"Expected self.ci_.get_file(/" + test + "/f1/t1," + file_t + ") to return something"
except RuntimeError as e:
print(str(e))
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_alter_add(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
self.ci_.load(self.create_defs(test))
self.sync_local()
t1 = "/" + test + "/f1/t1"
self.ci_.alter(t1,"add","variable","var","var_name")
self.ci_.alter(t1,"add","time","+00:30")
self.ci_.alter(t1,"add","time","01:30")
self.ci_.alter(t1,"add","time","01:30 20:00 00:30")
self.ci_.alter(t1,"add","today","+00:30")
self.ci_.alter(t1,"add","today","01:30")
self.ci_.alter(t1,"add","today","01:30 20:00 00:30")
self.ci_.alter(t1,"add","date","01.01.2001")
self.ci_.alter(t1,"add","date","*.01.2001")
self.ci_.alter(t1,"add","date","*.*.2001")
self.ci_.alter(t1,"add","date","*.*.*")
self.ci_.alter(t1,"add","day","sunday")
self.ci_.alter(t1,"add","day","monday")
self.ci_.alter(t1,"add","day","tuesday")
self.ci_.alter(t1,"add","day","wednesday")
self.ci_.alter(t1,"add","day","thursday")
self.ci_.alter(t1,"add","day","friday")
self.ci_.alter(t1,"add","day","saturday")
self.ci_.alter(t1,"add","late","late -s +00:15 -a 20:00 -c +02:00")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.variables))) == 1 ,"Expected 1 variable :\n" + str(self.ci_.get_defs())
assert( len(list(task_t1.times))) == 3 ,"Expected 3 time :\n" + str(self.ci_.get_defs())
assert( len(list(task_t1.todays))) == 3 ,"Expected 3 today's :\n" + str(self.ci_.get_defs())
assert( len(list(task_t1.dates))) == 4 ,"Expected 4 dates :\n" + str(self.ci_.get_defs())
assert( len(list(task_t1.days))) == 7 ,"Expected 7 days :\n" + str(self.ci_.get_defs())
assert str(task_t1.get_late()) == "late -s +00:15 -a 20:00 -c +02:00", "Expected late 'late -s +00:15 -a 20:00 -c +02:00'" + str(self.ci_.get_defs())
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_alter_delete(self):
test = sys._getframe().f_code.co_name # returns function name
defs = self.create_defs(test)
t1 = "/" + test + "/f1/t1"
task_t1 = defs.find_abs_node(t1)
task_t1.add_variable("var","value")
task_t1.add_variable("var1","value")
task_t1.add_time("00:30")
task_t1.add_time("00:31")
task_t1.add_today("00:30")
task_t1.add_today("00:31")
task_t1.add_date(1,1,2001)
task_t1.add_date(1,1,2002)
task_t1.add_day("sunday")
task_t1.add_day("monday")
cron = Cron()
cron.set_week_days( [0,1,2,3,4,5,6] )
cron.set_time_series( "+00:30" )
task_t1.add_cron(cron)
task_t1.add_cron(cron)
task_t1.add_event("event")
task_t1.add_event("event1")
task_t1.add_meter("meter",0,100,100)
task_t1.add_meter("meter1",0,100,100)
task_t1.add_label("label","name")
task_t1.add_label("label1","name")
task_t1.add_limit("limit",10)
task_t1.add_limit("limit1",10)
task_t1.add_inlimit( "limit",t1,2)
task_t1.add_inlimit( "limit1",t1,2)
task_t1.add_trigger( "t2 == active" )
task_t1.add_complete( "t2 == complete" )
assert task_t1.get_late() is None, "expected no late"
late = Late()
late.submitted(20, 10)
late.active(20, 10)
late.complete(20, 10, True)
task_t1.add_late(late)
assert task_t1.get_late() is not None, "expected late"
t2 = "/" + test + "/f1/t2"
task_t2 = defs.find_abs_node(t2)
task_t2.add_repeat( RepeatDate("date",20100111,20100115,2) ) # can't add cron and repeat at the same level
self.ci_.load(defs)
self.sync_local()
self.ci_.alter(t1,"delete","variable","var")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.variables))) == 1 ,"Expected 1 variable :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","variable") # delete all variables
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.variables))) == 0 ,"Expected 0 variable :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","time","00:30")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.times))) == 1 ,"Expected 1 time :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","time")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.times))) == 0 ,"Expected 0 time :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","today","00:30")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.todays))) == 1 ,"Expected 1 today :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","today")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.todays))) == 0 ,"Expected 0 today :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","date","01.01.2001")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.dates))) == 1 ,"Expected 1 date :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","date")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.dates))) == 0 ,"Expected 0 date :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","day","sunday")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.days))) == 1 ,"Expected 1 day :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","day")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.days))) == 0 ,"Expected 0 day :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","event","event")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.events))) == 1 ,"Expected 1 event :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","event")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.events))) == 0 ,"Expected 0 event :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","meter","meter")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.meters))) == 1 ,"Expected 1 meter :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","meter")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.meters))) == 0 ,"Expected 0 meter :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","label","label")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.labels))) == 1 ,"Expected 1 label :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","label")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.labels))) == 0 ,"Expected 0 label :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","limit","limit")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.limits))) == 1 ,"Expected 1 limit :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","limit")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.limits))) == 0 ,"Expected 0 limit :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","inlimit","limit")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.inlimits))) == 1 ,"Expected 1 inlimit :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","inlimit")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.inlimits))) == 0 ,"Expected 0 inlimit :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","cron")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert( len(list(task_t1.crons))) == 0 ,"Expected 0 crons :\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","late")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert task_t1.get_late() is None, "expected no late after delete"
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert task_t1.get_trigger() is not None, "Expected trigger:\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","trigger")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert task_t1.get_trigger() is None, "Expected trigger to be deleted:\n" + str(self.ci_.get_defs())
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert task_t1.get_complete() is not None, "Expected complete:\n" + str(self.ci_.get_defs())
self.ci_.alter(t1,"delete","complete")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
assert task_t1.get_complete() is None, "Expected complete to be deleted:\n" + str(self.ci_.get_defs())
self.ci_.alter(t2,"delete","repeat")
self.sync_local()
task_t2 = self.ci_.get_defs().find_abs_node(t2)
repeat = task_t2.get_repeat()
assert repeat.empty(), "Expected repeat to be deleted:\n" + str(self.ci_.get_defs())
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_alter_change(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
defs = self.create_defs(test)
t1 = "/" + test + "/f1/t1"
repeat_date_path = "/" + test + "/f1/repeat_date"
task_t1 = defs.find_abs_node(t1)
task_t1.add_variable("var","value")
task_t1.add_variable("var1","value")
task_t1.add_event("event")
task_t1.add_event("event1")
task_t1.add_meter("meter",0,100,100)
task_t1.add_meter("meter1",0,100,100)
task_t1.add_label("label","name")
task_t1.add_label("label1","name1")
task_t1.add_limit("limit",10)
task_t1.add_limit("limit1",10)
task_t1.add_inlimit( "limit",t1,2)
task_t1.add_inlimit( "limit1",t1,2)
task_t1.add_trigger( "t2 == active" )
task_t1.add_complete( "t2 == complete" )
late = Late()
late.submitted(20, 10)
late.active(20, 10)
late.complete(20, 10, True)
task_t1.add_late(late)
f1 = defs.find_abs_node("/" + test + "/f1")
repeat_date = f1.add_task("repeat_date")
repeat_date.add_repeat( RepeatDate("date",20100111,20100115,2) ) # can't add cron and repeat at the same level
self.ci_.load(defs)
self.sync_local()
self.ci_.alter(t1,"change","late","-s +10:00")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
variable = task_t1.get_late()
assert str(task_t1.get_late()) == "late -s +10:00", "Expected alter of late to be 'late -s +10:00' but found " + str(task_t1.get_late())
self.ci_.alter(t1,"change","variable","var","changed_var")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
variable = task_t1.find_variable("var")
assert variable.value() == "changed_var", "Expected alter of variable to be 'change_var' but found " + variable.value()
self.ci_.alter(t1,"change","meter","meter","10")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
meter = task_t1.find_meter("meter")
assert meter.value() == 10, "Expected alter of meter to be 10 but found " + str(meter.value())
self.ci_.alter(t1,"change","event","event","set")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
event = task_t1.find_event("event")
assert event.value() == True, "Expected alter of event to be set but found " + str(event.value())
self.ci_.alter(t1,"change","trigger","t2 == aborted")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
trigger = task_t1.get_trigger()
assert trigger.get_expression() == "t2 == aborted", "Expected alter of trigger to be 't2 == aborted' but found " + trigger.get_expression()
self.ci_.alter(t1,"change","trigger","/test_client_alter_change/f1/t2 == complete")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
trigger = task_t1.get_trigger()
assert trigger.get_expression() == "/test_client_alter_change/f1/t2 == complete", "Expected alter of trigger to be '/test_client_alter_change/f1/t2 == complete' but found " + trigger.get_expression()
self.ci_.alter(t1,"change","complete","t2 == aborted")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
complete = task_t1.get_complete()
assert complete.get_expression() == "t2 == aborted", "Expected alter of complete to be 't2 == aborted' but found " + complete.get_expression()
self.ci_.alter(t1,"change","complete","/test_client_alter_change/f1/t2 == active")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
complete = task_t1.get_complete()
assert complete.get_expression() == "/test_client_alter_change/f1/t2 == active", "Expected alter of complete to be '/test_client_alter_change/f1/t2 == active' but found " + complete.get_expression()
self.ci_.alter(t1,"change","limit_max","limit", "2")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
limit = task_t1.find_limit("limit")
assert limit is not None, "Expected to find limit"
assert limit.limit() == 2, "Expected alter of limit_max to be 2 but found " + str(limit.limit())
self.ci_.alter(t1,"change","limit_value","limit", "2")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
limit = task_t1.find_limit("limit")
assert limit is not None, "Expected to find limit"
assert limit.value() == 2, "Expected alter of limit_value to be 2 but found " + str(limit.value())
self.ci_.alter(t1,"change","label","label","new-value")
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
label = task_t1.find_label("label")
assert label.new_value() == "new-value", "Expected alter of label to be 'new-value' but found " + label.new_value()
self.ci_.alter(repeat_date_path,"change","repeat","20100113")
self.sync_local()
task = self.ci_.get_defs().find_abs_node(repeat_date_path)
repeat = task.get_repeat()
assert repeat.value() == 20100113, "Expected alter of repeat to be 20100113 but found " + str(repeat.value())
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_alter_flag(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
defs = self.create_defs(test)
t1 = "/" + test + "/f1/t1"
task_t1 = defs.find_abs_node(t1)
self.ci_.load(defs)
self.sync_local()
flag = Flag()
flag_list = flag.list() # flag_list is of type FlagTypeVec
for flg in flag_list:
self.ci_.alter(t1,"set_flag",flag.type_to_string(flg) )
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
task_flag = task_t1.get_flag()
assert task_flag.is_set( flg ),"expected flag %r to be set" % task_flag.type_to_string(flg)
# alter itself causes the flag message to be set, and preserved
if flg == FlagType.message: continue
self.ci_.alter(t1,"clear_flag",flag.type_to_string(flg) )
self.sync_local()
task_t1 = self.ci_.get_defs().find_abs_node(t1)
task_flag = task_t1.get_flag()
assert not task_flag.is_set( flg ),"expected flag %r NOT to be set" % task_flag.type_to_string(flg)
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_force(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
defs = self.create_defs(test)
path_list = [ "/" + test + "/f1/t1", "/" + test + "/f1/t2" ]
t1 = path_list[0]
for path in path_list:
task = defs.find_abs_node(path)
assert task is not None, "Expected to find task at path " + path
task.add_event("event")
self.ci_.load(defs)
self.sync_local()
state_list = [ State.unknown, State.active, State.complete, State.submitted, State.aborted, State.queued ]
for state in state_list:
self.ci_.force_state(t1,state)
self.sync_local()
task = self.ci_.get_defs().find_abs_node(t1)
assert task.get_state() == state, "Expected state " + state + " but found " + str(task.get_state())
for state in state_list:
self.ci_.force_state( path_list,state)
self.sync_local()
for path in path_list:
task = self.ci_.get_defs().find_abs_node(path)
assert task.get_state() == state, "Expected state " + state + " but found " + str(task.get_state())
for state in state_list:
self.ci_.force_state_recursive("/" + test,state)
self.sync_local()
task = self.ci_.get_defs().find_abs_node(t1)
assert task.get_state() == state, "Expected state " + state + " but found " + str(task.get_state())
suite_paths = [ "/" + test ]
for state in state_list:
self.ci_.force_state_recursive( suite_paths,state)
self.sync_local()
task = self.ci_.get_defs().find_abs_node(t1)
assert task.get_state() == state, "Expected state " + state + " but found " + str(task.get_state())
event_states = [ "set", "clear" ]
for ev_state in event_states:
for path in path_list:
self.ci_.force_event(path + ":event" , ev_state)
self.sync_local()
task = self.ci_.get_defs().find_abs_node(path)
event_fnd = False
for event in task.events:
event_fnd = True
if ev_state == "set" : assert event.value() == True ," Expected event value to be set"
else: assert event.value() == False ," Expected event value to be clear"
assert event_fnd == True," Expected event to be found"
event_path_list = [ "/" + test + "/f1/t1:event", "/" + test + "/f1/t2:event" ]
event_states = [ "set", "clear" ]
for ev_state in event_states:
self.ci_.force_event( event_path_list , ev_state)
self.sync_local()
for path in path_list:
task = self.ci_.get_defs().find_abs_node(path)
event_fnd = False
for event in task.events:
event_fnd = True
if ev_state == "set" : assert event.value() == True ," Expected event value to be set"
else: assert event.value() == False ," Expected event value to be clear"
assert event_fnd == True," Expected event to be found"
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_replace(self,on_disk):
test = sys._getframe().f_code.co_name # returns function name
if on_disk:
test = test + "on_disk"
self.log_msg(test)
self.ci_.log_msg(str(on_disk))
# Create and load the following defs
# s1
# f1
# t1
# t2
self.ci_.load(self.create_defs(test))
self.sync_local()
#===============================================================================
# Example of using replace to ADD a *NEW* node hierarchy to an existing suite
# we should end up with:
# s1
# f1
# t1
# t2
# f2
# t1
client_def = self.create_defs(test)
client_def.find_suite(test).add_family("f2").add_task("t1")
if on_disk:
client_def.save_as_defs(test + ".def")
client_def = test + ".def"
self.ci_.replace("/" + test + "/f2",client_def,True,False) # True means create parents as needed, False means don't bypass checks/zombies
self.sync_local()
assert self.ci_.get_defs().find_abs_node("/" + test + "/f2/t1") is not None, "Expected to find task /" + test + "/f2/t1\n" + str(self.ci_.get_defs())
# Example of using replace to *REMOVE* node hierarchy to an existing suite, could have used delete
assert self.ci_.get_defs().find_abs_node("/" + test + "/f1/t1") is not None, "Expected to find task /" + test + "/f1/t1\n" + str(self.ci_.get_defs())
assert self.ci_.get_defs().find_abs_node("/" + test + "/f2/t1") is not None, "Expected to find task /" + test + "/f2/t1\n" + str(self.ci_.get_defs())
client_def = Defs()
client_def.add_suite(test) # should only have the suite
if on_disk:
client_def.save_as_defs(test + ".def")
client_def = test + ".def"
self.ci_.replace("/" + test,client_def)
self.sync_local()
assert self.ci_.get_defs().find_abs_node("/" + test + "/f1/t1") is None, "Expected NOT to find task /" + test + "/f1/t1\n" + str(self.ci_.get_defs())
assert self.ci_.get_defs().find_abs_node("/" + test + "/f2/t1") is None, "Expected NOT to find task /" + test + "/f2/t1\n" + str(self.ci_.get_defs())
#===============================================================================
# Example of using replace to add a *NEW* suite
test2 = test + "2";
client_def = Defs();
client_def.add_suite(test2)
if on_disk:
client_def.save_as_defs(test + ".def")
client_def = test + ".def"
self.ci_.replace("/" + test2,client_def,True,False) # True means create parents as needed, False means don't bypass checks/zombies
self.sync_local()
suite = self.ci_.get_defs().find_suite(test2)
assert suite is not None ,"Expected to find suite :" + test2 + "\n" + str(self.ci_.get_defs())
# replace added suite s2 with a new s2 which has a task,
# s2 must exist on the client defs
client_def = Defs();
client_def.add_suite(test2).add_task("t1")
if on_disk:
client_def.save_as_defs(test + ".def")
client_def = test + ".def"
self.ci_.replace("/" + test2,client_def)
self.sync_local()
assert self.ci_.get_defs().find_abs_node("/" + test2 + "/t1") is not None, "Expected to find task /" + test2 + "/t1\n" + str(self.ci_.get_defs())
if on_disk:
os.remove(client_def)
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
self.ci_.suspend("/" + test2 ) # stop downstream test from re-starting this
self.sync_local()
def test_client_suspend(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
defs = self.create_defs(test)
defs.find_suite(test).add_variable("ECF_DUMMY_TASK","")
self.ci_.load(defs)
self.sync_local()
self.ci_.begin_suite(test)
self.ci_.suspend("/" + test )
self.sync_local();
suite = self.ci_.get_defs().find_suite(test)
assert suite.is_suspended(), "Expected to find suite suspended"
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_suspend_multiple_paths(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
defs = self.create_defs(test)
suite = defs.find_suite(test)
suite.add_variable("ECF_DUMMY_TASK","")
self.ci_.load(defs)
self.ci_.begin_suite(test)
self.sync_local()
path_list = [ "/" + test + "/f1/t1", "/" + test + "/f1/t2" ]
self.ci_.suspend( path_list )
self.sync_local();
task_t1 = self.ci_.get_defs().find_abs_node("/" + test + "/f1/t1")
task_t2 = self.ci_.get_defs().find_abs_node("/" + test + "/f1/t2")
assert task_t1.is_suspended(), "Expected to find task t1 to be suspended"
assert task_t2.is_suspended(), "Expected to find task t2 to be suspended"
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_resume(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
defs = self.create_defs(test)
defs.find_suite(test).add_variable("ECF_DUMMY_TASK","")
self.ci_.load(defs)
self.ci_.begin_suite(test)
self.sync_local()
self.ci_.suspend("/" + test )
self.sync_local();
suite = self.ci_.get_defs().find_suite(test)
assert suite.is_suspended(), "Expected to find suite suspended"
self.ci_.resume("/" + test )
self.sync_local();
suite = self.ci_.get_defs().find_suite(test)
assert suite.is_suspended() == False, "Expected to find suite resumed"
# suspend to stop down stream tests from restarting this test
self.ci_.suspend("/" + test )
def test_client_resume_multiple_paths(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
defs = self.create_defs(test)
defs.find_suite(test).add_variable("ECF_DUMMY_TASK","")
self.ci_.load(defs)
self.ci_.begin_suite(test)
self.sync_local()
path_list = [ "/" + test + "/f1/t1", "/" + test + "/f1/t2" ]
self.ci_.suspend( path_list )
self.sync_local();
task_t1 = self.ci_.get_defs().find_abs_node("/" + test + "/f1/t1")
task_t2 = self.ci_.get_defs().find_abs_node("/" + test + "/f1/t2")
assert task_t1.is_suspended(), "Expected to find task t1 to be suspended"
assert task_t2.is_suspended(), "Expected to find task t2 to be suspended"
self.ci_.resume( path_list )
self.sync_local();
task_t1 = self.ci_.get_defs().find_abs_node("/" + test + "/f1/t1")
task_t2 = self.ci_.get_defs().find_abs_node("/" + test + "/f1/t2")
assert task_t1.is_suspended() == False, "Expected to find task t1 to be resumed"
assert task_t2.is_suspended() == False, "Expected to find task t2 to be resumed"
# suspend to stop down stream tests from restarting this test
self.ci_.suspend("/" + test )
def test_client_delete_node(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
defs = self.create_defs(test)
task_vec = defs.get_all_tasks();
assert len(task_vec) > 0, "Expected some tasks but found none:\n" + str(defs)
self.ci_.load(defs)
self.sync_local();
for task in task_vec:
node = self.ci_.get_defs().find_abs_node(task.get_abs_node_path())
assert node is not None , "Expected to find task " + task.get_abs_node_path() + ":\n" + str(self.ci_.get_defs())
for task in task_vec:
self.ci_.delete(task.get_abs_node_path())
self.sync_local();
for task in task_vec:
node = self.ci_.get_defs().find_abs_node(task.get_abs_node_path())
assert node is None , "Expected not to find task " + task.get_abs_node_path() + " as it should have been deleted:\n" + str(self.ci_.get_defs())
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_delete_node_multiple_paths(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
defs = self.create_defs(test)
task_vec = defs.get_all_tasks();
assert len(task_vec) > 0, "Expected some tasks but found none:\n" + str(defs)
paths = []
for task in task_vec:
paths.append(task.get_abs_node_path())
self.ci_.load(defs)
self.sync_local();
for task in task_vec:
node = self.ci_.get_defs().find_abs_node(task.get_abs_node_path())
assert node is not None , "Expected to find task " + task.get_abs_node_path() + ":\n" + str(self.ci_.get_defs())
self.ci_.delete(paths)
self.sync_local();
for task in task_vec:
node = self.ci_.get_defs().find_abs_node(task.get_abs_node_path())
assert node is None , "Expected not to find task " + task.get_abs_node_path() + " as it should have been deleted:\n" + str(self.ci_.get_defs())
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_client_check_defstatus(self):
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
defs = self.create_defs(test)
# stop defs from running when begin is called.
defs.find_suite(test).add_defstatus(DState.suspended)
t1 = "/" + test + "/f1/t1"
t2 = "/" + test + "/f1/t2"
task_t1 = defs.find_abs_node(t1)
task_t1.add_defstatus(DState.suspended)
self.generate_scripts_and_load_defs(defs);
self.ci_.begin_suite(test)
self.sync_local() # get the changes, synced with local defs
#print self.ci_.get_defs();
task_t1 = self.ci_.get_defs().find_abs_node(t1)
task_t2 = self.ci_.get_defs().find_abs_node(t2)
assert task_t1 is not None,"Could not find t1"
assert task_t2 is not None,"Could not find t2"
assert task_t1.get_state() == State.queued, "Expected state queued but found " + str(task_t1.get_state())
assert task_t2.get_state() == State.queued, "Expected state queued " + str(task_t2.get_state())
assert task_t1.get_dstate() == DState.suspended, "Expected state suspended but found " + str(task_t1.get_state())
assert task_t2.get_dstate() == DState.queued, "Expected state queued but found " + str(task_t2.get_state())
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_ECFLOW_189(self):
# Bug, when a node is resumed it ignored holding dependencies higher up the tree.
# i.e Previously when we resumed a node, it ignored trigger/time/node state, dependencies higher up the tree
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
self.generate_scripts_and_load_defs(self.create_defs(test));
self.ci_.suspend("/" + test )
self.ci_.suspend("/" + test + "/f1/t1")
self.ci_.suspend("/" + test + "/f1/t2")
self.ci_.begin_suite(test)
self.sync_local() # get the changes, synced with local defs
#print self.ci_.get_defs();
task_t1 = self.ci_.get_defs().find_abs_node("/" + test + "/f1/t1")
task_t2 = self.ci_.get_defs().find_abs_node("/" + test + "/f1/t2")
assert task_t1 is not None,"Could not find /" + test + "/f1/t1"
assert task_t2 is not None,"Could not find /" + test + "/f1/t2"
assert task_t1.get_state() == State.queued, "Expected state queued but found " + str(task_t1.get_state())
assert task_t2.get_state() == State.queued, "Expected state queued but found " + str(task_t2.get_state())
assert task_t1.get_dstate() == DState.suspended, "Expected state suspended but found " + str(task_t1.get_dstate())
assert task_t2.get_dstate() == DState.suspended, "Expected state suspended but found " + str(task_t2.get_dstate())
# ok now resume t1/t2, they should remain queued, since the Suite is still suspended
self.ci_.resume("/" + test + "/f1/t1")
self.ci_.resume("/" + test + "/f1/t2")
self.sync_local() # get the changes, synced with local defs
#print self.ci_.get_defs();
task_t1 = self.ci_.get_defs().find_abs_node("/" + test + "/f1/t1")
task_t2 = self.ci_.get_defs().find_abs_node("/" + test + "/f1/t2")
assert task_t1.get_state() == State.queued, "Expected state queued but found " + str(task_t1.get_state())
assert task_t2.get_state() == State.queued, "Expected state queued but found " + str(task_t2.get_state())
assert task_t1.get_dstate() == DState.queued, "Expected state queued but found " + str(task_t1.get_dstate())
assert task_t2.get_dstate() == DState.queued, "Expected state queued but found " + str(task_t2.get_dstate())
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_ECFLOW_199(self):
# Test ClientInvoker::changed_node_paths
test = sys._getframe().f_code.co_name # returns function name
self.log_msg(test)
self.generate_scripts_and_load_defs(self.create_defs(test));
self.ci_.suspend("/" + test )
self.ci_.suspend("/" + test + "/f1/t1")
self.ci_.suspend("/" + test + "/f1/t2")
self.sync_local() # get the changes, synced with local defs
self.ci_.begin_suite(test)
self.sync_local() # get the changes, synced with local defs
#print self.ci_.get_defs();
assert len(list(self.ci_.changed_node_paths)) == 0, "Expected first call to sync_local, to have no changed paths but found " + str(len(list(self.ci_.changed_node_paths)))
# ok now resume t1/t2, they should remain queued, since the Suite is still suspended
self.ci_.resume("/" + test + "/f1/t1")
self.sync_local()
if len(list(self.ci_.changed_node_paths)) != 1:
for path in self.ci_.changed_node_paths:
print(" changed node path " + path);
assert False, "Expected 1 changed path but found " + str(len(list(self.ci_.changed_node_paths)))
self.ci_.resume("/" + test + "/f1/t2")
self.sync_local()
if len(list(self.ci_.changed_node_paths)) != 1:
for path in self.ci_.changed_node_paths:
print(" changed node path " + path);
assert False, "Expected 1 changed path but found " + str(len(list(self.ci_.changed_node_paths)))
self.ci_.suspend("/" + test ) # stop downstream test from re-starting this
def test_gui(self):
self.ci_.delete_all() # start fresh
self.test_version()
PrintStyle.set_style( Style.STATE ) # show node state
self.test_client_get_server_defs()
self.test_client_restart_server()
self.test_client_halt_server()
self.test_client_shutdown_server()
self.test_client_load_in_memory_defs()
self.test_client_load_from_disk()
self.test_client_checkpt()
self.test_client_restore_from_checkpt()
self.test_client_reload_wl_file()
self.test_client_run()
self.test_client_run_with_multiple_paths()
self.test_client_requeue()
self.test_client_requeue_with_multiple_paths()
self.test_client_free_dep()
self.test_client_suites()
self.test_client_ch_suites()
self.test_client_ch_register()
self.test_client_ch_drop()
self.test_client_ch_drop_user()
self.test_client_ch_add()
self.test_client_ch_auto_add()
self.test_client_ch_remove()
self.test_client_get_file()
self.test_client_alter_add()
self.test_client_alter_delete()
self.test_client_alter_change()
self.test_client_alter_flag()
self.test_client_force()
self.test_client_replace(False)
self.test_client_replace(True)
self.test_client_suspend()
self.test_client_suspend_multiple_paths()
self.test_client_resume()
self.test_client_resume_multiple_paths()
self.test_client_delete_node()
self.test_client_delete_node_multiple_paths()
self.test_client_check()
self.test_client_check_defstatus()
self.test_ECFLOW_189()
self.test_ECFLOW_199()
if __name__ == "__main__":
DESC = """Will run various tests on the server. These will be used to test the GUI
This assumes that gui has been set to sync every second, as this will allows changes
in the server to be reflected in the GUI.
The test will sleep for sync_sleep seconds, after each change to the server.
This should allow GUI (1 second poll), to see the effects of this test.
To debug this tests, just set sync_sleep = 0, this will also preserve the test data.
- Test data is created in directory: test_gui, this will deleted at the end of the test.
- Assumes includes head.h and tail.h are in CWD + /libs/pyext/test/data/includes
- We will look for the ecflow_client in the embedded child commands in the generated scripts,
o first look in the current cmake build tree of the ecflow module(this may no longer exist)
o Next will use /usr/local/apps/ecflow/ with same version as this ecflow python api *IF* it exists
o Finally use 'ecflow_client' hence will expect to find it on $PATH, *ON* the server environment
To override this use --ecflow_client=/path/to/your/ecflow_client
Usage:
TestGui.py --host <hostname> --port <portname> --time <sec> --sync_sleep <sec> --ecflow_client <path>
"""
PARSER = argparse.ArgumentParser(description=DESC,
formatter_class=argparse.RawDescriptionHelpFormatter)
PARSER.add_argument('--host', default="localhost",
help="The name of the host machine, defaults to 'localhost'")
PARSER.add_argument('--port', default="3141",
help="The port on the host, defaults to 3141")
PARSER.add_argument('--time', default=0,
help="How long to run the tests in seconds. default is 0, which is one test loop")
PARSER.add_argument('--sync_sleep', type=int,default=4,
help="Time to wait after sync_local. Allow GUI to refresh. Set to 0 for debug.")
PARSER.add_argument('--ecflow_client',default="",
help="Path to ecflow_client.")
ARGS = PARSER.parse_args()
print ARGS
if ARGS.ecflow_client != "":
if not os.path.exists(ARGS.ecflow_client):
print("Could not find ecflow_client on path ",ARGS.ecflow_client)
sys.exit(1)
# ===========================================================================
CL = ecflow.Client(ARGS.host, ARGS.port)
tester = Tester(CL,ARGS)
try:
CL.ping()
tester.clean_up_data()
tester.clean_up_server()
count = 1
start_time = time.time()
while True:
tester.test_gui()
elapsed = int(time.time() - start_time)
print "======================================================"
print "elapsed time :",elapsed, "s loop:",count
print "======================================================"
count += 1
if elapsed > int(ARGS.time):
break
except RuntimeError, ex:
print "Error: " + str(ex)
print "Check host and port number are correct."
# When debugging keep test data.
if ARGS.sync_sleep != 0:
tester.clean_up_server()
tester.clean_up_data()
|