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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
|
# -*- coding: utf-8 -*-
################################################################################
# EXTERNAL WEBAPP-CONFIG TESTS
################################################################################
# File: external.py
#
# Runs external (non-doctest) test cases.
#
# Copyright:
# (c) 2014 Devan Franchini
# Distributed under the terms of the GNU General Public License v2
#
# Author(s):
# Devan Franchini <twitch153@gentoo.org>
#
from __future__ import print_function
'''Runs external (non-doctest) test cases.'''
import os
import unittest
import sys
from WebappConfig.config import Config
from WebappConfig.content import Contents
from WebappConfig.db import WebappDB, WebappSource
from WebappConfig.debug import OUT
from WebappConfig.dotconfig import DotConfig
from WebappConfig.ebuild import Ebuild
from WebappConfig.filetype import FileType
from WebappConfig.protect import Protection
from WebappConfig.server import Basic
from WebappConfig.worker import WebappAdd, WebappRemove
from warnings import filterwarnings, resetwarnings
HERE = os.path.dirname(os.path.realpath(__file__))
class ContentsTest(unittest.TestCase):
def test_add_pretend(self):
loc = '/'.join((HERE, 'testfiles', 'contents', 'app'))
contents = Contents(loc, package = 'test', version = '1.0',
pretend = True)
OUT.color_off()
contents.add('file', 'config_owned', destination = loc, path = '/test1',
real_path = loc + '/test1', relative = True)
output = sys.stdout.getvalue().strip('\n')
self.assertEqual(output,
'* pretending to add: file 1 config_owned "test1"')
def test_add(self):
loc = '/'.join((HERE, 'testfiles', 'contents', 'app'))
contents = Contents(loc, package = 'test', version = '1.0')
OUT.color_off()
contents.add('file', 'config_owned', destination = loc, path = '/test1',
real_path = loc + '/test1', relative = True)
# Now trigger an error by adding a file that doesn't exist!
contents.add('file', 'config_owned', destination = loc, path = '/test0',
real_path = loc + '/test0', relative = True)
output = sys.stdout.getvalue().strip('\n')
self.assertTrue('WebappConfig/tests/testfiles/contents/app/test0 to '\
'add it as installation content. This should not '\
'happen!' in output)
# Test adding hardlinks:
contents.add('hardlink', 'config_owned', destination = loc,
path = '/test2', real_path = loc + '/test2', relative = True)
self.assertTrue('file 1 config_owned "test2" ' in contents.entry(loc +
'/test2'))
# Test adding dirs:
contents.add('dir', 'default_owned', destination = loc, path = '/dir1',
real_path = loc + '/dir1', relative = True)
self.assertTrue('dir 1 default_owned "dir1" ' in contents.entry(loc +
'/dir1'))
# Test adding symlinks:
contents.add('sym', 'virtual', destination = loc, path = '/test3',
real_path = loc + '/test3', relative = True)
self.assertTrue('sym 1 virtual "test3" ' in contents.entry(loc +
'/test3'))
# Printing out the db after adding these entries:
contents.db_print()
output = sys.stdout.getvalue().split('\n')
self.assertTrue('file 1 config_owned "test1" ' in output[1])
def test_can_rm(self):
contents = Contents('/'.join((HERE, 'testfiles', 'contents')),
package = 'test', version = '1.0')
contents.read()
contents.ignore += ['.svn']
self.assertEqual(contents.get_canremove('/'.join((HERE, 'testfiles',
'contents', 'inc'))), '!found inc')
self.assertEqual(contents.get_canremove('/'.join((HERE, 'testfiles',
'contents', 'inc', 'prefs.php'))),
'!found inc/prefs.php')
def test_read_clean(self):
contents = Contents('/'.join((HERE, 'testfiles', 'contents')),
package = 'test', version = '1.0')
contents.read()
contents.db_print()
output = sys.stdout.getvalue().split('\n')
self.assertTrue('file 1 virtual signup.php ' in output[3])
self.assertEqual(contents.get_directories()[1], '/'.join((HERE,
'testfiles',
'contents',
'inc')))
def test_read_corrupt(self):
contents = Contents('/'.join((HERE, 'testfiles', 'contents')),
package = 'test', version = '1.1')
OUT.color_off()
contents.read()
output = sys.stdout.getvalue().split('\n')
self.assertEqual(output[12], '* Not enough entries.')
def test_write(self):
contents = Contents('/'.join((HERE, 'testfiles', 'contents')),
package = 'test', version = '1.0', pretend = True)
OUT.color_off()
contents.read()
contents.write()
output = sys.stdout.getvalue().split('\n')
expected = '* Would have written content file ' + '/'.join((HERE,
'testfiles',
'contents',
'.webapp-test-1.0!'))
self.assertEqual(output[0], expected)
class WebappDBTest(unittest.TestCase):
def test_list_installs(self):
OUT.color_off()
db = WebappDB(root = '/'.join((HERE, 'testfiles', 'webapps')))
db.listinstalls()
output = sys.stdout.getvalue().split('\n')
self.assertEqual(output[1], '/var/www/localhost/htdocs/horde')
# Now test the verbosity:
db = WebappDB(root = '/'.join((HERE, 'testfiles', 'webapps')),
verbose = True)
db.listinstalls()
output = sys.stdout.getvalue().split('\n')
self.assertEqual(output[5], '* Installs for horde-3.0.5')
def test_list_locations(self):
OUT.color_off()
db = WebappDB(root = '/'.join((HERE, 'testfiles', 'webapps')))
sorted_db = [i[1] for i in db.list_locations().items()]
sorted_db.sort(key=lambda x: x[0]+x[1]+x[2])
self.assertEqual(sorted_db[1], ['', 'gallery', '2.0_rc2'])
# Now test with a specific package and version:
db = WebappDB(root = '/'.join((HERE, 'testfiles', 'webapps')),
package = 'horde', version = '3.0.5')
sorted_db = [i[1] for i in db.list_locations().items()]
self.assertEqual(sorted_db, [['', 'horde', '3.0.5']])
# Now test with an install file that doesn't exist:
db = WebappDB(root = '/'.join((HERE, 'testfiles', 'webapps')),
package = 'nihil', version = '3.0.5')
sorted_db = [i[1] for i in db.list_locations().items()]
self.assertEqual(sorted_db, [])
def test_add_rm(self):
OUT.color_off()
db = WebappDB(root = '/'.join((HERE, 'testfiles', 'webapps')),
pretend = True, package = 'horde', version = '3.0.5')
# Test adding:
db.add('/'.join(('/screwy', 'wonky', 'foobar', 'horde', 'hierarchy')),
user = 'me', group = 'me')
output = sys.stdout.getvalue().split('\n')
self.assertEqual(output[0], '* Pretended to append installation '\
'/screwy/wonky/foobar/horde/hierarchy')
# Test deleting a webapp that is actually in the database:
db.remove('/'.join(('/var', 'www', 'localhost', 'htdocs', 'horde')))
output = sys.stdout.getvalue().split('\n')
self.assertEqual(output[6], '* ')
# And now test deleting one that isn't:
db.remove('/'.join(('/screwy', 'wonky', 'foobar', 'horde', 'hierarchy')))
output = sys.stdout.getvalue().split('\n')
self.assertEqual(output[11], '* 1124612110 root root '\
'/var/www/localhost/htdocs/horde')
class WebappSourceTest(unittest.TestCase):
SHARE = '/'.join((HERE, 'testfiles', 'share-webapps'))
def test_list_unused(self):
source = WebappSource(root = '/'.join((HERE,
'testfiles',
'share-webapps')))
db = WebappDB(root = '/'.join((HERE, 'testfiles', 'webapps')))
source.listunused(db)
output = sys.stdout.getvalue().split('\n')
self.assertEqual(output[2], 'share-webapps/uninstalled-6.6.6')
def test_read(self):
source = WebappSource(root = '/'.join((HERE,
'testfiles',
'share-webapps')),
category = '',
package = 'horde',
version = '3.0.5')
source.read()
self.assertEqual(source.filetype('test1'), 'config-owned')
self.assertEqual(source.filetype('test2'), 'server-owned')
def test_src_exists(self):
source = WebappSource(root = '/'.join((HERE, 'testfiles',
'share-webapps')),
category = '',
package = 'horde',
version = '3.0.5')
self.assertTrue(source.source_exists('htdocs'))
self.assertFalse(source.source_exists('foobar'))
def test_get_src_dirs(self):
source = WebappSource(root = '/'.join((HERE, 'testfiles',
'share-webapps')),
category = '',
package = 'horde',
version = '3.0.5')
dirs = source.get_source_directories('htdocs')
dirs = [i for i in dirs if i != '.svn']
self.assertEqual(dirs, ['dir1', 'dir2'])
def test_get_src_files(self):
source = WebappSource(root = '/'.join((HERE, 'testfiles',
'share-webapps')),
category = '',
package = 'horde',
version = '3.0.5')
files = source.get_source_files('htdocs')
self.assertEqual(files, ['test1', 'test2'])
def test_pkg_avail(self):
source = WebappSource(root = '/'.join((HERE, 'testfiles',
'share-webapps')),
category = '',
package = 'nihil',
version = '3.0.5',
pm = 'portage')
self.assertEqual(source.packageavail(), 0)
class DotConfigTest(unittest.TestCase):
def test_has_dotconfig(self):
dotconf = DotConfig('/'.join((HERE, 'testfiles', 'htdocs', 'horde')))
self.assertTrue(dotconf.has_dotconfig())
dotconf = DotConfig('/'.join((HERE, 'testfiles', 'htdocs', 'empty')))
self.assertFalse(dotconf.has_dotconfig())
def test_is_empty(self):
dotconf = DotConfig('/'.join((HERE, 'testfiles', 'htdocs', 'horde')))
self.assertEqual(dotconf.is_empty(), None)
dotconf = DotConfig('/'.join((HERE, 'testfiles', 'htdocs', 'complain')))
self.assertEqual(dotconf.is_empty(), '!morecontents .webapp-cool-1.1.1')
def test_show_installed(self):
dotconf = DotConfig('/'.join((HERE, 'testfiles', 'htdocs', 'horde')))
dotconf.show_installed()
output = sys.stdout.getvalue().split('\n')
self.assertEqual(output[0], 'horde 3.0.5')
def test_install(self):
dotconf = DotConfig('/nowhere', pretend=True)
dotconf.write('www-apps', 'horde', '5.5.5', 'localhost', '/horde3',
'me:me')
output = sys.stdout.getvalue().split('\n')
self.assertEqual(output[14], '* WEB_INSTALLDIR="/horde3"')
def test_remove(self):
dotconf = DotConfig('/'.join((HERE, 'testfiles', 'htdocs', 'horde')),
pretend=True)
self.assertTrue(dotconf.kill())
output = sys.stdout.getvalue().split('\n')
self.assertEqual(output[0], '* Would have removed ' +
'/'.join((HERE, 'testfiles', 'htdocs', 'horde',
'.webapp')))
class EbuildTest(unittest.TestCase):
def test_showpostinst(self):
config = Config()
approot = '/'.join((HERE, 'testfiles', 'share-webapps'))
appdir = '/'.join((approot, 'horde', '3.0.5'))
conf = {'my_htdocsbase': 'htdocs', 'pn': 'horde', 'pvr': '3.0.5',
'vhost_server_uid': 'apache', 'vhost_server_git': 'apache',
'my_approot': approot,
'my_appdir': appdir,
'my_hookscriptsdir': '/'.join((appdir, 'hooks')),
'my_cgibinbase': 'cgi-bin', 'my_errorsbase': 'error',
'my_iconsbase': 'icons',
'my_serverconfigdir': '/'.join((appdir, 'conf')),
'my_hostrootdir': '/'.join((appdir, 'hostroot')),
'my_htdocsdir': '/'.join((appdir, 'htdocs')),
'my_sqlscriptsdir': '/'.join((appdir, 'sqlscripts')),
}
for key in conf.keys():
config.config.set('USER', key, conf[key])
ebuild = Ebuild(config)
ebuild.show_postinst()
output = sys.stdout.getvalue().split('\n')
self.assertEqual(output[5], 'MY_HOSTROOTDIR: ' + '/'.join((HERE,
'testfiles',
'share-webapps',
'horde',
'3.0.5',
'hostroot')))
class FileTypeTest(unittest.TestCase):
def test_filetypes(self):
config_owned = ('a', 'a/b/c/d', '/e', '/f/', '/g/h/', 'i\\n')
server_owned = ('j', 'k/l/m/n', '/o', '/p/', '/q/r/', 's\\n')
types = FileType(config_owned, server_owned)
self.assertEqual(types.filetype('a'), 'config-owned')
self.assertEqual(types.filetype('a/b/c/d'), 'config-owned')
self.assertEqual(types.filetype('j'), 'server-owned')
self.assertEqual(types.filetype('/o'), 'server-owned')
# It will always remove leading spaces or whitespace:
self.assertEqual(types.filetype('\t s\\n'), 'server-owned')
# Unspecified files will be set as virtual:
self.assertEqual(types.filetype('foo.txt'), 'virtual')
# However, you can set what you want your virtual-files to be:
types = FileType(config_owned, server_owned,
virtual_files='server-owned')
self.assertEqual(types.filetype('foo.txt'), 'server-owned')
def test_dirtypes(self):
config_owned = ('a', 'a/b/c/d', '/e', '/f/', '/g/h/', 'i\\n')
server_owned = ('j', 'k/l/m/n', '/o', '/p/', '/q/r/', 's\\n')
types = FileType(config_owned, server_owned)
self.assertEqual(types.dirtype('a'), 'config-owned')
self.assertEqual(types.dirtype('j'), 'server-owned')
# Same whitespace rules apply for dirtype():
self.assertEqual(types.dirtype('\t s\\n'), 'server-owned')
# Unspecified dirs will be set as default-owned:
self.assertEqual(types.dirtype('foo.txt'), 'default-owned')
class ProtectTest(unittest.TestCase):
def test_getprotectedname(self):
pro = Protection('', 'horde', '3.0.5', 'portage')
self.assertEqual(pro.get_protectedname('/'.join((HERE,
'testfiles',
'protect',
'empty')),
'test'),
'/'.join((HERE, 'testfiles', 'protect', 'empty',
'/._cfg0000_test')))
def test_dirisconfprotected(self):
pro = Protection('', 'horde', '3.0.5', 'portage')
strange_htdocs = '/'.join(('/my', 'strange', 'htdocs'))
pro.config_protect += ' ' + strange_htdocs
self.assertTrue(pro.dirisconfigprotected(strange_htdocs))
self.assertTrue(pro.dirisconfigprotected('/'.join((strange_htdocs,
'where', 'i',
'installed', 'x'))))
self.assertTrue(pro.dirisconfigprotected('/'.join((strange_htdocs,
'where', 'i',
'installed', 'x/'))))
pro.config_protect += ' bad_user' + strange_htdocs
self.assertFalse(pro.dirisconfigprotected('/'.join(('/my', 'bad_user',
'htdocs', 'where',
'i', 'installed',
'x'))))
self.assertFalse(pro.dirisconfigprotected('/'))
def test_how_to_update(self):
OUT.color_off()
pro = Protection('', 'horde', '3.0.5', 'portage')
strange_htdocs = '/'.join(('/my', 'strange', 'htdocs', 'where', 'i',
'installed', 'x'))
pro.how_to_update([strange_htdocs])
output = sys.stdout.getvalue().split('\n')
self.assertEqual(output[3], '* CONFIG_PROTECT="' + strange_htdocs +
'" etc-update')
# Adding a virtual config protected directory:
i = strange_htdocs.replace('/where/i/instaled/x', '')
pro.config_protect += ' ' + i
pro.how_to_update([strange_htdocs])
output = sys.stdout.getvalue().split('\n')
self.assertEqual(output[8], '* etc-update')
class WebappAddTest(unittest.TestCase):
def test_mk(self):
OUT.color_off()
contents = Contents('/'.join((HERE, 'testfiles', 'installtest')),
pretend = True)
webrm = WebappRemove(contents, True, True)
protect = Protection('', 'horde', '3.0.5', 'portage')
source = WebappSource(root = '/'.join((HERE, 'testfiles',
'share-webapps')),
category = '', package = 'installtest',
version = '1.0')
source.read()
source.ignore = ['.svn']
webadd = WebappAdd('htdocs',
'/'.join((HERE, 'testfiles', 'installtest')),
{'dir': {'default-owned': ('root',
'root',
'0644')},
'file': {'virtual': ('root',
'root',
'0644'),
'server-owned': ('apache',
'apache',
'0660'),
'config-owned': ('nobody',
'nobody',
'0600')}
},
{'content': contents,
'removal': webrm,
'protect': protect,
'source' : source},
{'relative': 1,
'upgrade' : False,
'pretend' : True,
'verbose' : False,
'linktype': 'soft'})
webadd.mkfile('test1')
webadd.mkfile('test4')
webadd.mkfile('test2')
webadd.mkfile('test3')
webadd.mkdir('dir1')
webadd.mkdir('dir2')
output = sys.stdout.getvalue().split('\n')
self.assertEqual(output[0], '* pretending to add: sym 1 virtual ' +
'"test1"')
self.assertEqual(output[1], '* pretending to add: file 1 ' +
'server-owned "test4"')
self.assertEqual(output[3], '* pretending to add: sym 1 virtual ' +
'"test2"')
self.assertEqual(output[4], '^o^ hiding test3')
self.assertEqual(output[6], '* pretending to add: dir 1 ' +
'default-owned "dir1"')
self.assertEqual(output[8], '* pretending to add: dir 1 ' +
'default-owned "dir2"')
# Now testing all of them combined:
webadd.mkdirs('')
output = sys.stdout.getvalue().split('\n')
self.assertEqual(output[20], '^o^ hiding /test3')
class WebappRemoveTest(unittest.TestCase):
def test_remove_files(self):
OUT.color_off()
contents = Contents('/'.join((HERE, 'testfiles', 'contents', 'app2')),
package = 'test', version = '1.0', pretend = True)
contents.read()
webrm = WebappRemove(contents, True, True)
webrm.remove_files()
output = sys.stdout.getvalue().split('\n')
self.assertEqual(output[3], '* pretending to remove: ' +
'/'.join((HERE, 'testfiles', 'contents', 'app2',
'test3')))
if __name__ == '__main__':
filterwarnings('ignore')
unittest.main(module=__name__, buffer=True)
resetwarnings()
|