forked from fedora-modularity/baseruntime-docker-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmoke.py
executable file
·303 lines (247 loc) · 11.1 KB
/
smoke.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
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
#!/usr/bin/env python
import os
import subprocess
import re
import shutil
import stat
import tarfile
import tempfile
from avocado import main
from moduleframework import module_framework
import brtconfig
class BaseRuntimeSmokeTest(module_framework.AvocadoTest):
"""
:avocado: enable
"""
def setUp(self):
super(self.__class__, self).setUp()
self.compiler_resource_dir = brtconfig.get_compiler_test_dir(self)
self.br_image_name = brtconfig.get_docker_image_name(self)
self.compiler_test_dir = None
def _check_cmd_result(self, cmd, return_code, cmd_output, expect_pass=True):
"""
Check based on return code if command passed or failed as expected
"""
if return_code == 0 and expect_pass:
self.log.info("command '%s' succeeded with output:\n%s" %
(cmd, cmd_output))
return True
elif return_code != 0 and not expect_pass:
self.log.info("command '%s' failed as expected with output:\n%s" %
(cmd, cmd_output))
return True
self.error("command '%s' returned unexpected exit status %d; output:\n%s" %
(cmd, return_code, cmd_output))
return False
def testSmoke(self):
"""
Run several smoke tests
"""
# TODO: fill this "placeholder" with actual, complete, smoke tests:
smoke_pass = [
"echo 'Hello, World!'",
"cat /etc/redhat-release",
"rpm -q glibc"]
smoke_fail = [
"exit 1"]
for cmd in smoke_pass:
cmd_result = self.run("%s" % cmd, ignore_status=True)
cmd_output = cmd_result.stdout + cmd_result.stderr
self._check_cmd_result(cmd, cmd_result.exit_status, cmd_output)
for cmd in smoke_fail:
cmd_result = self.run("%s" % cmd, ignore_status=True)
cmd_output = cmd_result.stdout + cmd_result.stderr
self._check_cmd_result(cmd, cmd_result.exit_status, cmd_output, expect_pass=False)
def testUserManipulation(self):
"""
Check if can add, remove and modify user
"""
#We want to run multiple commands using same docker container
new_user = "usertest"
pass_cmds = []
#Create new user
pass_cmds.append("adduser %s" % new_user)
#Make sure user is created
pass_cmds.append("cat /etc/passwd | grep %s" % new_user)
pass_cmds.append("ls /home/%s" % new_user)
#set user password
pass_cmds.append("usermod --password testpassword %s" % new_user)
#Test new user functionality
pass_cmds.append('su - %s -c "touch ~/testfile.txt"' % new_user)
#Make sure the file was created by the correct user
pass_cmds.append("ls -allh /home/%s/testfile.txt | grep '%s %s'" %
(new_user, new_user, new_user))
#Remove user
pass_cmds.append("userdel -r %s" % new_user)
for cmd in pass_cmds:
cmd_result = self.run("%s" % cmd, ignore_status=True)
cmd_output = cmd_result.stdout + cmd_result.stderr
self._check_cmd_result(cmd, cmd_result.exit_status, cmd_output)
fail_cmds = []
#Make sure user is removed
fail_cmds.append("ls /home/%s" % new_user)
fail_cmds.append("cat /etc/passwd | grep usertest")
#relying on __del__ from BaseRuntimeRunCmd to remove container
for cmd in fail_cmds:
cmd_result = self.run("%s" % cmd, ignore_status=True)
cmd_output = cmd_result.stdout + cmd_result.stderr
self._check_cmd_result(cmd, cmd_result.exit_status, cmd_output, expect_pass=False)
def testOsRelease(self):
"""
Check if OS release information is correct
"""
test_path = "resources/os_release/os_release.sh"
dest_path = "/tmp/os_release.sh"
try:
self.copyTo(test_path, dest_path)
except:
self.error("Could not copy test file from %s to module %s" %
(test_path, dest_path))
try:
self.run(dest_path)
except:
self.error("%s failed" % dest_path)
try:
self.run("rm -f %s" % dest_path)
except:
self.error("Could not delete %s" % dest_path)
def test_glibc_i18n(self):
"""
Test glibc support to internationalization
"""
lang_default = {
#cmd : cmd_output
"ls /invalid_path" : "ls: cannot access '/invalid_path': No such file or directory",
"cp invalid_file tmp" : "cp: cannot stat 'invalid_file': No such file or directory",
"date -u -d \"2017-03-31\"" : "Fri Mar 31 00:00:00 UTC 2017",
"touch file; yes | rm -i file" : "rm: remove regular empty file 'file'?",
"numfmt --grouping 1234567890.98" : "1234567890.98"
}
lang_english = {
"LC_ALL=en_US ls /invalid_path" : "ls: cannot access '/invalid_path': No such file or directory",
"LC_ALL=en_US cp invalid_file tmp" : "cp: cannot stat 'invalid_file': No such file or directory",
"LC_ALL=en_US date -u -d \"2017-03-31\"" : "Fri Mar 31 00:00:00 UTC 2017",
"touch file; yes | LC_ALL=en_US rm -i file" : "rm: remove regular empty file 'file'?",
"LC_ALL=en_US numfmt --grouping 1234567890.98" : "1,234,567,890.98"
}
lang_spanish = {
"LC_ALL=es_ES ls /invalid_path" : "ls: no se puede acceder a '/invalid_path': No existe el fichero o el directorio",
"LC_ALL=es_ES cp invalid_file tmp" : "cp: no se puede efectuar `stat' sobre 'invalid_file': No existe el fichero o el directorio",
"LC_ALL=es_ES date -u -d \"2017-03-31\"" : "vie mar 31 00:00:00 UTC 2017",
"touch file; yes | LC_ALL=es_ES rm -i file" : "borrar el fichero regular",
"LC_ALL=es_ES numfmt --grouping 1234567890,98" : "1.234.567.890,98"
}
langs = {}
langs["default"] = {
"pkg" : "glibc-minimal-langpack",
"cmds" : lang_default
}
langs["english"] = {
"pkg" : "glibc-langpack-en",
"cmds" : lang_english
}
langs["spanish"] = {
"pkg" : "glibc-langpack-es",
"cmds" : lang_spanish
}
for i18n in langs.keys():
lang = langs[i18n]
self.log.info("Testing %s" % lang["pkg"])
install_package = True
# glibc-minimal-langpack is installed by default
if lang["pkg"] == "glibc-minimal-langpack":
install_package = False
if install_package:
try:
self.run("microdnf install %s" % lang["pkg"])
except:
self.error("Could not install %s" % lang["pkg"])
for cmd in lang["cmds"].keys():
cmd_result = self.run("%s" % cmd, ignore_status=True)
output = cmd_result.stdout
output += cmd_result.stderr
output = output.strip()
#search for pattern as Spanish might have special characters
if not re.search(lang["cmds"][cmd], output):
self.error("'%s'expected output '%s', but got '%s'" %
(cmd, lang["cmds"][cmd], output))
if install_package:
try:
self.run("microdnf remove %s" % lang["pkg"])
except:
self.error("Could not remove %s" % lang["pkg"])
def _prepare_compiler_test_directory(self):
# create a temporary directory
tmpdir = tempfile.mkdtemp()
self.log.info("Compiler test temporary directory is %s" % tmpdir)
# Copy the `hello.sh` script from this resource directory into the
# temporary directory
src = os.path.join(self.compiler_resource_dir, "hello.sh")
dest = os.path.join(tmpdir, "hello.sh")
try:
shutil.copy(src, dest)
except shutil.Error as e:
self.log.info('Error: %s' % e)
except IOError as e:
self.log.info('Error: %s' % e.strerror)
# make sure destination script is executable
st = os.stat(dest)
os.chmod(dest, st.st_mode | stat.S_IEXEC)
# Place a gzipped tarball of `hello.c` and `Makefile` from the
# resource directory into the temporary directory with the name
# `hello.tgz`.
dest = os.path.join(tmpdir, "hello.tgz")
tar = tarfile.open(dest, "w:gz")
for f in ["hello.c", "Makefile"]:
src = os.path.join(self.compiler_resource_dir, f)
tar.add(src, arcname=f)
tar.close()
self.compiler_test_dir = tmpdir
def _cleanup_compiler_test_directory(self):
# clean up the temporary directory
if self.compiler_test_dir:
self.log.info("cleaning up compiler test directory")
shutil.rmtree(self.compiler_test_dir, ignore_errors=True)
def testCompiler(self):
"""
Run a basic C compiler test on our docker image.
This actually tests the integration of several things, including the
ability to install packages, extract a gzipped tarball, run make to
compile a very simple C program, and run the compiled executable.
"""
self._prepare_compiler_test_directory()
#The test dir should be the same one used on hello.sh
mod_compiler_test_dir = "/mnt"
#Make sure there is a container running
#TODO: Remove start() once https://pagure.io/modularity-testing-framework/issue/8 is fixed
self.start()
try:
self.copyTo("%s/." % self.compiler_test_dir, mod_compiler_test_dir)
except:
self.error("Could not copy test files from %s to module %s" %
(self.compiler_test_dir, mod_compiler_test_dir))
cmdline = "%s/hello.sh" % mod_compiler_test_dir
cmd_result = self.run("%s" % cmdline, ignore_status=True)
test_stdout = cmd_result.stdout
test_stderr = cmd_result.stderr
if cmd_result.exit_status:
self.error("command '%s' returned exit status %d; output:\n%s\nstderr:\n%s" %
(cmdline, cmd_result.exit_status, test_stdout, test_stderr))
self.log.info("command '%s' succeeded with output:\n%s\nstderr:\n%s" %
(cmdline, test_stdout, test_stderr))
# make sure we get exactly what we expect on stdout
# (all other output from commands in the script were sent to stderr)
expected_stdout = 'Hello, world!\n'
self.log.info("checking that compiler test returned expected output: %s" %
repr(expected_stdout))
if test_stdout != expected_stdout:
self.error("compiler test did not return unexpected output: %s" %
repr(test_stdout))
def tearDown(self):
"""
Tear-down
"""
super(self.__class__, self).tearDown()
self._cleanup_compiler_test_directory()
if __name__ == "__main__":
main()