-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtests_without_side_effects.py
253 lines (207 loc) · 9.53 KB
/
tests_without_side_effects.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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Automatic Tests for exoskeleton
! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
There are two groups of automatic tests for exoskeleton:
* Unit-tests without side-effects that run extremly fast and cover about 1/3.
* A system-test that actually interacts with a database and the network.
This file contains the fast tests without side effects. These tests can be run
with Linux, MacOS and Windows while the other tests require Linux as the
database service is not yet available for the other systems. See:
https://docs.github.com/en/actions/guides/about-service-containers
! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
While the latter one is much slower, it also tests the SQL code and the code
interacting with the network. It simulates a user interacting with the
framework.
Even though much *could* be mocked, it is better to actually run it:
There might be changes to the SQL part and sometimes the DBMS itself
might introduce a bug.
To run only these tests here:
coverage run --source exoskeleton -m pytest tests_without_side_effects.py
To generate a report limited to that run afterwards:
coverage html
~~~~~~~~~~~~~~~~~~~~~
Source: https://github.com/RuedigerVoigt/exoskeleton
(c) 2019-2021 Rüdiger Voigt
Released under the Apache License 2.0
"""
import logging
from unittest.mock import patch
logging.basicConfig(level=logging.DEBUG)
import pyfakefs
import pytest
from exoskeleton import actions
from exoskeleton import database_connection
from exoskeleton import exo_url
from exoskeleton import file_manager
from exoskeleton import helpers
from exoskeleton import notification_manager
from exoskeleton import remote_control_chrome
from exoskeleton import time_manager
# #############################################################################
# DatabaseConnection Class
# #############################################################################
def test_DatabaseConnection():
# missing settings dictionary
with pytest.raises(ValueError):
database_connection.DatabaseConnection(None)
# missing necessary key
with pytest.raises(ValueError) as excinfo:
database_connection.DatabaseConnection(
database_settings={'database': 'foo'})
assert "Necessary key username missing" in str(excinfo.value)
# necessary key present, but set to None
with pytest.raises(ValueError) as excinfo:
database_connection.DatabaseConnection(
database_settings={'database': None, 'username': 'foo'})
assert "You must provide the name of the database" in str(excinfo.value)
with pytest.raises(ValueError) as excinfo:
database_connection.DatabaseConnection(
database_settings={'database': 'foo', 'username': None})
assert "You must provide a database user" in str(excinfo.value)
# Port out of range
with pytest.raises(ValueError) as excinfo:
database_connection.DatabaseConnection(
database_settings={'database': 'foo', 'username': 'foo', 'port': 999999999})
assert "port outside valid range" in str(excinfo.value)
# #############################################################################
# ExoActions Class
# #############################################################################
def test_actions_BAD_QUEUE_ID():
# queue id is not a string
with pytest.raises(ValueError) as excinfo:
_ = actions.GetObjectBaseClass(
objects=dict(),
queue_id=1, # !
url='https://www.example.com',
prettify_html=False
)
assert "queue_id must be a string" in str(excinfo.value)
def test_actions_MISSING_URL():
# queue id is not a string
with pytest.raises(ValueError) as excinfo:
_ = actions.GetObjectBaseClass(
objects=dict(),
queue_id='foo',
url=None,
prettify_html=False
)
assert "Missing parameter url" in str(excinfo.value)
# #############################################################################
# ExoUrl class
# #############################################################################
def test_exo_url_GUARDS():
with pytest.raises(ValueError) as excinfo:
exo_url.ExoUrl(None)
assert "Missing URL" in str(excinfo.value)
def test_exo_url_DUNDERS():
url_str = 'https://www.example.com'
myUrl = exo_url.ExoUrl(url_str)
assert str(myUrl) == url_str
# #############################################################################
# HELPER FUNCTIONS
# #############################################################################
def test_prettify_html():
# prettify_html
# Not checking how the improved version looks like as this may change
# slightly with newer version of beautiful soup.
broken_html = "<a href='https://www.example.com'>example</b></b><p></p>"
assert helpers.prettify_html(broken_html) != broken_html
def test_strip_code():
text_with_html = '<h1>Example</h1> foo'
assert helpers.strip_code(text_with_html) == 'Example foo'
# #############################################################################
# FileManager Class
# #############################################################################
def test_FileManager_functions():
# empty string
assert file_manager.FileManager._FileManager__clean_prefix('') == ''
# only whitespace
assert file_manager.FileManager._FileManager__clean_prefix(' ') == ''
# exactly 16 characters ( = allowed length) plus whitespace
assert file_manager.FileManager._FileManager__clean_prefix(' 1234567890123456 ') == '1234567890123456'
# more than 16 characters ( = allowed length)
with pytest.raises(ValueError):
assert file_manager.FileManager._FileManager__clean_prefix('12345678901234567') == ''
assert file_manager.FileManager._FileManager__clean_prefix(None) == ''
# fs is a fixture provided by pyfakefs
def test_FileManager_target_directory(fs):
fs.create_file('/fake/example.file')
# directory exists
assert file_manager.FileManager._FileManager__check_target_directory("/fake/")
# directory is not exist
with pytest.raises(FileNotFoundError):
assert file_manager.FileManager._FileManager__check_target_directory("/fake/nonexistent")
# user supplied file instead of directory
with pytest.raises(AttributeError):
assert file_manager.FileManager._FileManager__check_target_directory("/fake/example.file")
# Missing parameter
with pytest.raises(TypeError):
assert file_manager.FileManager._FileManager__check_target_directory()
# Parameter, but no directory provided. Fallback to cwd
assert file_manager.FileManager._FileManager__check_target_directory(None)
assert file_manager.FileManager._FileManager__check_target_directory(' ')
# #############################################################################
# NotificationManager Class
# #############################################################################
# #############################################################################
# RemoteControlChrome Class
# #############################################################################
def test_RemoteControlChrome():
remote_control_chrome.RemoteControlChrome(None, None, None)
def test_RemoteControlChrome_functions():
my_chrome = remote_control_chrome.RemoteControlChrome(None, None, None)
# unsupported browser
with pytest.raises(ValueError):
my_chrome.check_browser_support('SaFaRi')
# Supported browser
assert my_chrome.check_browser_support('google-chrome') is True
# Unsupported browser
with pytest.raises(ValueError) as excinfo:
my_chrome.check_browser_support('Firefox')
assert "unsupported" in str(excinfo.value)
# no browser selected but trying to save a page:
with pytest.raises(ValueError):
my_chrome.page_to_pdf('https://www.example.com', './', '12343454')
# #############################################################################
# TimeManager Class
# #############################################################################
def test_TimeManager():
# No parameters
time_manager.TimeManager()
# Valid parameters
time_manager.TimeManager(10, 40)
# non numeric value for wait_min
with pytest.raises(ValueError):
time_manager.TimeManager('abc', 40)
# non numeric value for wait_max
with pytest.raises(ValueError):
time_manager.TimeManager(10, 'abc')
# Contradiction: wait_min > wait_max
with pytest.raises(ValueError):
time_manager.TimeManager(100, 10)
def test_TimeManager_functions():
my_tm = time_manager.TimeManager()
# Increase the wait time
min_before = my_tm.wait_min
max_before = my_tm.wait_max
my_tm.increase_wait()
assert my_tm.wait_min == min_before + 1
assert my_tm.wait_max == max_before + 1
# at wait tresholds:
my_tm.wait_min = 30
my_tm.wait_max = 50
my_tm.increase_wait()
# process time
assert isinstance(my_tm.get_process_time(), float) is True
# absolute run time
assert isinstance(my_tm.absolute_run_time(), float) is True
# estimate for remaining time
assert my_tm.estimate_remaining_time(0, 0) == -1 # nothing done
assert my_tm.estimate_remaining_time(0, 10000) == -1 # nothing done
assert my_tm.estimate_remaining_time(10000, 0) == 0
assert isinstance(my_tm.estimate_remaining_time(10000, 10), int) is True
# random-wait needs to be patched
with patch('time.sleep', return_value=None):
my_tm.random_wait()