-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_operations.py
276 lines (255 loc) · 8.06 KB
/
test_operations.py
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
# SPDX-FileCopyrightText: 2023 Ross Patterson <[email protected]>
# SPDX-License-Identifier: MIT
"""
Test Prunerr's configurable operations.
"""
import os
import logging
from unittest import mock
import prunerrtests
import prunerr.runner
import prunerr.downloadclient
import prunerr.downloaditem
import prunerr.operations
from . import test_downloaditem
@mock.patch.dict(os.environ, prunerrtests.PrunerrTestCase.ENV)
class PrunerrDownloadItemTests(prunerrtests.PrunerrTestCase):
"""
Test Prunerr's configurable operations.
"""
HOME = test_downloaditem.PrunerrDownloadItemTests.HOME
CONFIG = test_downloaditem.PrunerrDownloadItemTests.CONFIG
RESPONSES_DIR = test_downloaditem.PrunerrDownloadItemTests.RESPONSES_DIR
def setUp(self): # pylint: disable=invalid-name
"""
Assemble the components required to run operations.
"""
super().setUp()
runner = prunerr.runner.PrunerrRunner(config=self.CONFIG)
runner.config = self.config
self.download_client = prunerr.downloadclient.PrunerrDownloadClient(runner)
self.operations = prunerr.operations.PrunerrOperations(self.download_client, {})
# Collect a download client item
self.mock_responses()
self.download_client.update(
{
"url": self.DOWNLOAD_CLIENT_URL,
"password": "secret",
}
)
self.item = self.download_client.items[1]
def test_operation_invalid_executor(self):
"""
Executing an operation that doesn't exist raises a clear error.
"""
with self.assertRaises(
NotImplementedError,
msg="Executing an operation that doesn't exist didn't raise an error",
):
self.operations.exec_operations(
[{"type": "foo"}],
self.item,
)
def test_operation_invalid_options(self):
"""
Some operation configuration options conflict.
"""
with self.assertRaises(
ValueError,
msg="Executing invalid operation options didn't raise an error",
):
self.operations.exec_operations(
[
{
"type": "value",
"name": "status",
"equals": "seeding",
"maximum": 1,
},
],
self.item,
)
def test_operation_invalid_reversed(self):
"""
Some operation values can't be reversed.
"""
with self.assertRaises(
NotImplementedError,
msg="Executing invalid operation reversal didn't raise an error",
):
self.operations.exec_operations(
[
{
"type": "value",
"name": "peersFrom",
"reversed": True,
},
],
self.item,
)
def test_operation_invalid_value(self):
"""
An operation for a non-existent attribute/property isn't included.
"""
self.assertEqual(
self.operations.exec_operations(
[
{
"type": "value",
"name": "foo",
},
],
self.item,
)[1],
(),
"Wrong non-existent attribute/property result",
)
def test_operation_and(self):
"""
The `and` operation executes multiple operations and requires all to be True.
"""
include, sort_key = self.operations.exec_operations(
[
{
"type": "and",
"filter": True,
"operations": [
{
"type": "value",
"name": "status",
"equals": "seeding",
},
{
"type": "value",
"name": "priorities",
},
],
}
],
self.item,
)
self.assertEqual(
(include, sort_key),
(False, (False,)),
"Wrong `and` operation `False` result",
)
# If all operations return `True` the value of the last one is returned
include, sort_key = self.operations.exec_operations(
[
{
"type": "and",
"filter": True,
"operations": [
{
"type": "value",
"name": "priorities",
"reversed": True,
},
{
"type": "value",
"name": "status",
},
],
}
],
self.item,
)
self.assertEqual(
(include, sort_key),
(True, ("downloading",)),
"Wrong `and` operation `True` result",
)
def test_operation_executor_files_count(self):
"""
The files executor provides returns the count of item files.
"""
self.assertEqual(
self.operations.exec_operations(
[
{
"type": "files",
},
],
self.item,
)[
1
][0],
2,
"Wrong item files count",
)
def test_operation_executor_files_sum(self):
"""
The files executor provides returns the sum of item file sizes.
"""
self.assertEqual(
self.operations.exec_operations(
[
{
"type": "files",
"name": "size",
},
],
self.item,
)[1][0],
2147483648,
"Wrong item files size sum",
)
def test_operation_executor_files_invalid_aggregation(self):
"""
Executing invalid files aggregation exist raises a clear error.
"""
with self.assertRaises(
ValueError,
msg="Executing invalid files aggregation doesn't raise a clear error.",
):
self.operations.exec_operations(
[
{
"type": "files",
"aggregation": "foo",
},
],
self.item,
)
def test_operation_executor_files_missing(self):
"""
The files executor tolerates missing/empty item files.
"""
with self.assertLogs(
prunerr.operations.logger,
level=logging.DEBUG,
) as logged_msgs:
self.assertIs(
self.operations.exec_operations(
[
{
"type": "files",
},
],
self.download_client.items[0],
)[1][0],
False,
"Wrong missing item files result",
)
self.assertIs(
self.operations.exec_operations(
[
{
"type": "files",
},
],
self.download_client.items[0],
)[1][0],
False,
"Wrong missing item files result",
)
self.assertEqual(
len(logged_msgs.records),
1,
"Wrong number of operations logged records",
)
self.assertIn(
"contains no files",
logged_msgs.records[0].message,
"Wrong logged record message",
)