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
|
#
# 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.
#
import os
from ecflow import Defs, Suite, Variable, Limit, InLimit, Task, PartExpression, \
Event, Meter, Label, RepeatInteger, RepeatEnumerated, RepeatDate, RepeatDateList, RepeatString, \
TimeSlot, TimeSeries, Today, Time, Date, Day, Days, Cron, Autocancel, Late, \
DState, Clock, ChildCmdType, ZombieType, ZombieAttr, ZombieUserActionType, Client, debug_build
import ecflow_test_util as Test
if __name__ == "__main__":
Test.print_test_start(os.path.basename(__file__))
#
# Test for: See ECFLOW-106 Times/Dates attributes attached to suite node
#
defs = Defs()
suite = defs.add_suite("s1")
#
# Suite should not be allowed time based dependencies
# Check Today
expected_error = False
try:
suite.add_today("00:30")
except RuntimeError:
expected_error = True
assert expected_error, "Suite should not allow any time based dependencies"
expected_error = False
try:
suite.add_today(0, 30)
except RuntimeError:
expected_error = True
assert expected_error, "Suite should not allow any time based dependencies"
#
# Check Time
expected_error = False
try:
suite.add_time("+00:30")
except RuntimeError:
expected_error = True
assert expected_error, "Suite should not allow any time based dependencies"
expected_error = False
try:
suite.add_time(0, 30)
except RuntimeError:
expected_error = True
assert expected_error, "Suite should not allow any time based dependencies"
#
# Check Date::See ECFLOW-106 Times/Dates attributes attached to suite node
expected_error = False
try:
suite.add_date(1, 1, 2010)
except RuntimeError:
expected_error = True
assert expected_error, "Suite should not allow any time based dependencies"
#
# Check Day:: See ECFLOW-106 Times/Dates attributes attached to suite node
expected_error = False
try:
suite.add_day("sunday")
except RuntimeError:
expected_error = True
assert expected_error, "Suite should not allow any time based dependencies"
#
# Adding a RepeatDateList with a empty list should be an error
expected_error = False
task = Task("t")
try:
task.add_repeat(RepeatDateList("date", []))
except RuntimeError:
expected_error = True
assert expected_error, "RepeatDateList adding an empty date list should be an error"
print("All Tests pass")
|