Merge branch 'master' into 3408-production-datamanager
[arvados.git] / services / nodemanager / tests / testutil.py
1 #!/usr/bin/env python
2
3 from __future__ import absolute_import, print_function
4
5 import datetime
6 import threading
7 import time
8
9 import mock
10 import pykka
11
12 from . import pykka_timeout
13
14 no_sleep = mock.patch('time.sleep', lambda n: None)
15
16 def arvados_node_mock(node_num=99, job_uuid=None, age=-1, **kwargs):
17     mod_time = datetime.datetime.utcnow() - datetime.timedelta(seconds=age)
18     mod_time_s = mod_time.strftime('%Y-%m-%dT%H:%M:%S.%fZ')
19     if job_uuid is True:
20         job_uuid = 'zzzzz-jjjjj-jobjobjobjobjob'
21     crunch_worker_state = 'idle' if (job_uuid is None) else 'busy'
22     node = {'uuid': 'zzzzz-yyyyy-{:015x}'.format(node_num),
23             'created_at': '2014-01-01T01:02:03.04050607Z',
24             'modified_at': mod_time_s,
25             'first_ping_at': kwargs.pop('first_ping_at', mod_time_s),
26             'last_ping_at': mod_time_s,
27             'slot_number': node_num,
28             'hostname': 'compute{}'.format(node_num),
29             'domain': 'zzzzz.arvadosapi.com',
30             'ip_address': ip_address_mock(node_num),
31             'job_uuid': job_uuid,
32             'crunch_worker_state': crunch_worker_state,
33             'info': {'ping_secret': 'defaulttestsecret'}}
34     node.update(kwargs)
35     return node
36
37 def cloud_object_mock(name_id, **extra):
38     # A very generic mock, useful for stubbing libcloud objects we
39     # only search for and pass around, like locations, subnets, etc.
40     cloud_object = mock.NonCallableMagicMock(['id', 'name'],
41                                              name='cloud_object')
42     cloud_object.name = str(name_id)
43     cloud_object.id = 'id_' + cloud_object.name
44     cloud_object.extra = extra
45     return cloud_object
46
47 def cloud_node_mock(node_num=99, **extra):
48     node = mock.NonCallableMagicMock(
49         ['id', 'name', 'state', 'public_ips', 'private_ips', 'driver', 'size',
50          'image', 'extra'],
51         name='cloud_node')
52     node.id = str(node_num)
53     node.name = node.id
54     node.public_ips = []
55     node.private_ips = [ip_address_mock(node_num)]
56     node.extra = extra
57     return node
58
59 def cloud_node_fqdn(node):
60     # We intentionally put the FQDN somewhere goofy to make sure tested code is
61     # using this function for lookups.
62     return node.extra.get('testname', 'NoTestName')
63
64 def ip_address_mock(last_octet):
65     return '10.20.30.{}'.format(last_octet)
66
67 class MockShutdownTimer(object):
68     def _set_state(self, is_open, next_opening):
69         self.window_open = lambda: is_open
70         self.next_opening = lambda: next_opening
71
72
73 class MockSize(object):
74     def __init__(self, factor):
75         self.id = 'z{}.test'.format(factor)
76         self.name = self.id
77         self.ram = 128 * factor
78         self.disk = 100 * factor
79         self.bandwidth = 16 * factor
80         self.price = float(factor)
81         self.extra = {}
82
83     def __eq__(self, other):
84         return self.id == other.id
85
86
87 class MockTimer(object):
88     def __init__(self, deliver_immediately=True):
89         self.deliver_immediately = deliver_immediately
90         self.messages = []
91         self.lock = threading.Lock()
92
93     def deliver(self):
94         with self.lock:
95             to_deliver = self.messages
96             self.messages = []
97         for callback, args, kwargs in to_deliver:
98             callback(*args, **kwargs)
99
100     def schedule(self, want_time, callback, *args, **kwargs):
101         with self.lock:
102             self.messages.append((callback, args, kwargs))
103         if self.deliver_immediately:
104             self.deliver()
105
106
107 class ActorTestMixin(object):
108     FUTURE_CLASS = pykka.ThreadingFuture
109     TIMEOUT = pykka_timeout
110
111     def tearDown(self):
112         pykka.ActorRegistry.stop_all()
113
114     def stop_proxy(self, proxy):
115         return proxy.actor_ref.stop(timeout=self.TIMEOUT)
116
117     def wait_for_assignment(self, proxy, attr_name, unassigned=None,
118                             timeout=TIMEOUT):
119         deadline = time.time() + timeout
120         while True:
121             loop_timeout = deadline - time.time()
122             if loop_timeout <= 0:
123                 self.fail("actor did not assign {} in time".format(attr_name))
124             result = getattr(proxy, attr_name).get(loop_timeout)
125             if result is not unassigned:
126                 return result
127
128
129 class DriverTestMixin(object):
130     def setUp(self):
131         self.driver_mock = mock.MagicMock(name='driver_mock')
132         super(DriverTestMixin, self).setUp()
133
134     def new_driver(self, auth_kwargs={}, list_kwargs={}, create_kwargs={}):
135         create_kwargs.setdefault('ping_host', '100::')
136         return self.TEST_CLASS(
137             auth_kwargs, list_kwargs, create_kwargs,
138             driver_class=self.driver_mock)
139
140     def driver_method_args(self, method_name):
141         return getattr(self.driver_mock(), method_name).call_args
142
143
144 class RemotePollLoopActorTestMixin(ActorTestMixin):
145     def build_monitor(self, *args, **kwargs):
146         self.timer = mock.MagicMock(name='timer_mock')
147         self.client = mock.MagicMock(name='client_mock')
148         self.subscriber = mock.Mock(name='subscriber_mock')
149         self.monitor = self.TEST_CLASS.start(
150             self.client, self.timer, *args, **kwargs).proxy()