-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtest_config.py
More file actions
1840 lines (1436 loc) · 66.9 KB
/
test_config.py
File metadata and controls
1840 lines (1436 loc) · 66.9 KB
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
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# Copyright (c) 2001 Bizar Software Pty Ltd (http://www.bizarsoftware.com.au/)
# This module is free software, and you may redistribute it and/or modify
# under the same terms as Python, so long as this copyright message and
# disclaimer are retained in their original form.
#
# IN NO EVENT SHALL BIZAR SOFTWARE PTY LTD BE LIABLE TO ANY PARTY FOR
# DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING
# OUT OF THE USE OF THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# BIZAR SOFTWARE PTY LTD SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
# BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
import configparser
import errno
import fileinput
import logging
import os
import pytest
import re
import shutil
import sys
import unittest
from os.path import normpath
from textwrap import dedent
from roundup import configuration
from roundup.backends import get_backend, have_backend
from roundup.hyperdb import DatabaseError
from .db_test_base import config
if not have_backend('postgresql'):
# FIX: workaround for a bug in pytest.mark.skip():
# https://github.com/pytest-dev/pytest/issues/568
from .pytest_patcher import mark_class
skip_postgresql = mark_class(pytest.mark.skip(
reason='Skipping PostgreSQL tests: backend not available'))
else:
try:
from roundup.backends.back_postgresql import psycopg2, db_command,\
get_database_schema_names
db_command(config, 'select 1')
skip_postgresql = lambda func, *args, **kwargs: func
except( DatabaseError ) as msg:
from .pytest_patcher import mark_class
skip_postgresql = mark_class(pytest.mark.skip(
reason='Skipping PostgreSQL tests: database not available'))
try:
import xapian
skip_xapian = lambda func, *args, **kwargs: func
from .pytest_patcher import mark_class
include_no_xapian = mark_class(pytest.mark.skip(
"Skipping missing Xapian indexer tests: 'xapian' is installed"))
except ImportError:
# FIX: workaround for a bug in pytest.mark.skip():
# https://github.com/pytest-dev/pytest/issues/568
from .pytest_patcher import mark_class
skip_xapian = mark_class(pytest.mark.skip(
"Skipping Xapian indexer tests: 'xapian' not installed"))
include_no_xapian = lambda func, *args, **kwargs: func
try:
import redis
skip_redis = lambda func, *args, **kwargs: func
except ImportError:
# FIX: workaround for a bug in pytest.mark.skip():
# https://github.com/pytest-dev/pytest/issues/568
from .pytest_patcher import mark_class
skip_redis = mark_class(pytest.mark.skip(
"Skipping redis tests: 'redis' not installed"))
_py3 = sys.version_info[0] > 2
if _py3:
skip_py2 = lambda func, *args, **kwargs: func
else:
# FIX: workaround for a bug in pytest.mark.skip():
# https://github.com/pytest-dev/pytest/issues/568
from .pytest_patcher import mark_class
skip_py2 = mark_class(pytest.mark.skip(
reason='Skipping test under python2.'))
config = configuration.CoreConfig()
config.DATABASE = "db"
config.RDBMS_NAME = "rounduptest"
config.RDBMS_HOST = "localhost"
config.RDBMS_USER = "rounduptest"
config.RDBMS_PASSWORD = "rounduptest"
config.RDBMS_TEMPLATE = "template0"
# these TRACKER_WEB and MAIL_DOMAIN values are used in mailgw tests
config.MAIL_DOMAIN = "your.tracker.email.domain.example"
config.TRACKER_WEB = "http://tracker.example/cgi-bin/roundup.cgi/bugs/"
# uncomment the following to have excessive debug output from test cases
# FIXME: tracker logging level should be increased by -v arguments
# to 'run_tests.py' script
#config.LOGGING_FILENAME = "/tmp/logfile"
#config.LOGGING_LEVEL = "DEBUG"
config.init_logging()
config.options['FOO'] = "value"
# for TrackerConfig test class
from roundup import instance
from . import db_test_base
class ConfigTest(unittest.TestCase):
def test_badConfigKeyword(self):
"""Run configure tests looking for invalid option name
"""
self.assertRaises(configuration.InvalidOptionError, config._get_option, "BadOptionName")
def test_validConfigKeyword(self):
"""Run configure tests looking for invalid option name
"""
self.assertEqual(config._get_option("FOO"), "value")
def testTrackerWeb(self):
config = configuration.CoreConfig()
self.assertEqual(None,
config._get_option('TRACKER_WEB').set("http://foo.example/bar/"))
self.assertEqual(None,
config._get_option('TRACKER_WEB').set("https://foo.example/bar/"))
self.assertRaises(configuration.OptionValueError,
config._get_option('TRACKER_WEB').set, "https://foo.example/bar")
self.assertRaises(configuration.OptionValueError,
config._get_option('TRACKER_WEB').set, "htt://foo.example/bar/")
self.assertRaises(configuration.OptionValueError,
config._get_option('TRACKER_WEB').set, "htt://foo.example/bar")
self.assertRaises(configuration.OptionValueError,
config._get_option('TRACKER_WEB').set, "")
def testRedis_Url(self):
config = configuration.CoreConfig()
with self.assertRaises(configuration.OptionValueError) as cm:
config._get_option('SESSIONDB_REDIS_URL').set(
"redis://foo.example/bar?decode_responses=False")
self.assertIn('decode_responses', cm.exception.__str__())
config._get_option('SESSIONDB_REDIS_URL').set(
"redis://localhost:6379/0?health_check_interval=2")
def testLoginAttemptsMin(self):
config = configuration.CoreConfig()
self.assertEqual(None,
config._get_option('WEB_LOGIN_ATTEMPTS_MIN').set("0"))
self.assertEqual(None,
config._get_option('WEB_LOGIN_ATTEMPTS_MIN').set("200"))
self.assertRaises(configuration.OptionValueError,
config._get_option('WEB_LOGIN_ATTEMPTS_MIN').set, "fred")
self.assertRaises(configuration.OptionValueError,
config._get_option('WEB_LOGIN_ATTEMPTS_MIN').set, "-1")
self.assertRaises(configuration.OptionValueError,
config._get_option('WEB_LOGIN_ATTEMPTS_MIN').set, "")
def testTimeZone(self):
config = configuration.CoreConfig()
self.assertEqual(None,
config._get_option('TIMEZONE').set("0"))
# not a valid timezone
self.assertRaises(configuration.OptionValueError,
config._get_option('TIMEZONE').set, "Zot")
# 25 is not a valid UTC offset: -12 - +14 is range
# possibly +/- 1 for DST. But roundup.date doesn't
# constrain to this range.
#self.assertRaises(configuration.OptionValueError,
# config._get_option('TIMEZONE').set, "25")
try:
import pytz
self.assertEqual(None,
config._get_option('TIMEZONE').set("UTC"))
self.assertEqual(None,
config._get_option('TIMEZONE').set("America/New_York"))
self.assertEqual(None,
config._get_option('TIMEZONE').set("EST"))
self.assertRaises(configuration.OptionValueError,
config._get_option('TIMEZONE').set, "Zool/Zot")
except ImportError:
# UTC is a known offset of 0 coded into roundup.date
# so it works even without pytz.
self.assertEqual(None,
config._get_option('TIMEZONE').set("UTC"))
# same with EST known timeone offset of 5
self.assertEqual(None,
config._get_option('TIMEZONE').set("EST"))
self.assertRaises(configuration.OptionValueError,
config._get_option('TIMEZONE').set, "America/New_York")
def testWebSecretKey(self):
config = configuration.CoreConfig()
self.assertEqual(None,
config._get_option('WEB_SECRET_KEY').set("skskskd"))
self.assertRaises(configuration.OptionValueError,
config._get_option('WEB_SECRET_KEY').set, "")
def testStaticFiles(self):
config = configuration.CoreConfig()
if ("/tmp/bar" == normpath("/tmp/bar/")):
result_list = ["./foo", "/tmp/bar"]
else:
result_list = [".\\foo", "\\tmp\\bar"]
self.assertEqual(None,
config._get_option('STATIC_FILES').set("foo /tmp/bar"))
print(config.STATIC_FILES)
self.assertEqual(config.STATIC_FILES, result_list)
def testIsolationLevel(self):
config = configuration.CoreConfig()
self.assertEqual(None,
config._get_option('RDBMS_ISOLATION_LEVEL').set("read uncommitted"))
self.assertEqual(None,
config._get_option('RDBMS_ISOLATION_LEVEL').set("read committed"))
self.assertEqual(None,
config._get_option('RDBMS_ISOLATION_LEVEL').set("repeatable read"))
self.assertRaises(configuration.OptionValueError,
config._get_option('RDBMS_ISOLATION_LEVEL').set, "not a level")
def testConfigSave(self):
config = configuration.CoreConfig()
# make scratch directory to create files in
self.startdir = os.getcwd()
self.dirname = os.getcwd() + '/_test_config'
os.mkdir(self.dirname)
try:
os.chdir(self.dirname)
self.assertFalse(os.access("config.ini", os.F_OK))
self.assertFalse(os.access("config.bak", os.F_OK))
config.save()
config.save() # creates .bak file
self.assertTrue(os.access("config.ini", os.F_OK))
self.assertTrue(os.access("config.bak", os.F_OK))
config.save() # trigger delete of old .bak file
# FIXME: this should test to see if a new .bak
# was created. For now verify .bak still exists
self.assertTrue(os.access("config.bak", os.F_OK))
self.assertFalse(os.access("foo.bar", os.F_OK))
self.assertFalse(os.access("foo.bak", os.F_OK))
config.save("foo.bar")
config.save("foo.bar") # creates .bak file
self.assertTrue(os.access("foo.bar", os.F_OK))
self.assertTrue(os.access("foo.bak", os.F_OK))
finally:
# cleanup scratch directory and files
try:
os.chdir(self.startdir)
shutil.rmtree(self.dirname)
except OSError as error:
if error.errno not in (errno.ENOENT, errno.ESRCH): raise
def testFloatAndInt_with_update_option(self):
config = configuration.CoreConfig()
# Update existing IntegerNumberGeqZeroOption to IntegerNumberOption
config.update_option('WEB_LOGIN_ATTEMPTS_MIN',
configuration.IntegerNumberOption,
"0", description="new desc")
# -1 is allowed now that it is an int.
self.assertEqual(None,
config._get_option('WEB_LOGIN_ATTEMPTS_MIN').set("-1"))
# but can't float this
self.assertRaises(configuration.OptionValueError,
config._get_option('WEB_LOGIN_ATTEMPTS_MIN').set, "2.4")
# but fred is still an issue
self.assertRaises(configuration.OptionValueError,
config._get_option('WEB_LOGIN_ATTEMPTS_MIN').set, "fred")
# Update existing IntegerNumberOption to FloatNumberOption
config.update_option('WEB_LOGIN_ATTEMPTS_MIN',
configuration.FloatNumberOption,
"0.0")
self.assertEqual(config['WEB_LOGIN_ATTEMPTS_MIN'], -1)
# can float this
self.assertEqual(None,
config._get_option('WEB_LOGIN_ATTEMPTS_MIN').set("3.1415926"))
# but fred is still an issue
self.assertRaises(configuration.OptionValueError,
config._get_option('WEB_LOGIN_ATTEMPTS_MIN').set, "fred")
self.assertAlmostEqual(config['WEB_LOGIN_ATTEMPTS_MIN'], 3.1415926,
places=6)
# test removal of .0 on floats that are integers
self.assertEqual(None,
config._get_option('WEB_LOGIN_ATTEMPTS_MIN').set("3.0"))
self.assertEqual("3",
config._get_option('WEB_LOGIN_ATTEMPTS_MIN')._value2str(3.00))
def testIntegerNumberGtZeroOption(self):
config = configuration.CoreConfig()
# Update existing IntegerNumberGeqZeroOption to IntegerNumberOption
config.update_option('WEB_LOGIN_ATTEMPTS_MIN',
configuration.IntegerNumberGtZeroOption,
"1", description="new desc")
self.assertEqual(None,
config._get_option('WEB_LOGIN_ATTEMPTS_MIN').set("1"))
# -1 is not allowed
self.assertRaises(configuration.OptionValueError,
config._get_option('WEB_LOGIN_ATTEMPTS_MIN').set, "-1")
# but can't float this
self.assertRaises(configuration.OptionValueError,
config._get_option('WEB_LOGIN_ATTEMPTS_MIN').set, "2.4")
# but can't float this
self.assertRaises(configuration.OptionValueError,
config._get_option('WEB_LOGIN_ATTEMPTS_MIN').set, "0.5")
def testOriginHeader(self):
config = configuration.CoreConfig()
with self.assertRaises(configuration.OptionValueError) as cm:
config._get_option('WEB_ALLOWED_API_ORIGINS').set("https://foo.edu *")
config._get_option('WEB_ALLOWED_API_ORIGINS').set("* https://foo.edu HTTP://baR.edu")
self.assertEqual(config['WEB_ALLOWED_API_ORIGINS'][0], '*')
self.assertEqual(config['WEB_ALLOWED_API_ORIGINS'][1], 'https://foo.edu')
self.assertEqual(config['WEB_ALLOWED_API_ORIGINS'][2], 'HTTP://baR.edu')
def testOptionAsString(self):
config = configuration.CoreConfig()
config._get_option('WEB_LOGIN_ATTEMPTS_MIN').set("2552")
v = config._get_option('WEB_LOGIN_ATTEMPTS_MIN').__str__()
print(v)
self.assertIn("55", v)
v = config._get_option('WEB_LOGIN_ATTEMPTS_MIN').__repr__()
print(v)
self.assertIn("55", v)
def testBooleanOption(self):
config = configuration.CoreConfig()
with self.assertRaises(configuration.OptionValueError) as cm:
config._get_option('INSTANT_REGISTRATION').set("3")
# test multiple boolean representations
for b in [ "yes", "1", "true", "TRUE", "tRue", "on",
"oN", 1, True ]:
self.assertEqual(None,
config._get_option('INSTANT_REGISTRATION').set(b))
self.assertEqual(1,
config._get_option('INSTANT_REGISTRATION').get())
for b in ["no", "0", "false", "FALSE", "fAlse", "off",
"oFf", 0, False]:
self.assertEqual(None,
config._get_option('INSTANT_REGISTRATION').set(b))
self.assertEqual(0,
config._get_option('INSTANT_REGISTRATION').get())
def testOctalNumberOption(self):
config = configuration.CoreConfig()
with self.assertRaises(configuration.OptionValueError) as cm:
config._get_option('UMASK').set("xyzzy")
print(type(config._get_option('UMASK')))
@pytest.mark.usefixtures("save_restore_logging")
class TrackerConfig(unittest.TestCase):
@pytest.fixture(autouse=True)
def inject_fixtures(self, caplog):
self._caplog = caplog
@pytest.fixture(autouse=True)
def save_restore_logging(self):
"""Save logger state and try to restore it after each test
has finished.
The primary test is testDictLoggerConfigViaJson which
can change the loggers and break tests that depend on caplog
"""
# Save logger state for root and roundup top level logger
loggernames = ("", "roundup")
# The state attributes to save. Lists are shallow copied
state_to_save = ("filters", "handlers", "level", "propagate")
logger_state = {}
for name in loggernames:
logger_state[name] = {}
roundup_logger = logging.getLogger(name)
for i in state_to_save:
attr = getattr(roundup_logger, i)
if isinstance(attr, list):
logger_state[name][i] = attr.copy()
else:
logger_state[name][i] = getattr(roundup_logger, i)
# run all class tests here
yield
# rip down all the loggers leaving the root logger reporting
# to stdout.
# otherwise logger config is leaking to other tests
roundup_loggers = [logging.getLogger(name) for name in
logging.root.manager.loggerDict
if name.startswith("roundup")]
# cribbed from configuration.py:init_loggers
hdlr = logging.StreamHandler(sys.stdout)
formatter = logging.Formatter(
'%(asctime)s %(trace_id)s %(levelname)s %(message)s')
hdlr.setFormatter(formatter)
for logger in roundup_loggers:
# no logging API to remove all existing handlers!?!
for h in logger.handlers:
h.close()
logger.removeHandler(h)
logger.handlers = [hdlr]
logger.setLevel("WARNING")
logger.propagate = True # important as caplog requires this
# Restore the info we stored before running tests
for name in loggernames:
local_logger = logging.getLogger(name)
for attr in logger_state[name]:
setattr(local_logger, attr, logger_state[name][attr])
# reset logging as well
from importlib import reload
logging.shutdown()
reload(logging)
def reset_logging(self):
"""https://til.tafkas.net/posts/-resetting-python-logging-before-running-tests/"""
loggers = [logging.getLogger(name) for name in logging.root.manager.loggerDict]
loggers.append(logging.getLogger())
for logger in loggers:
handlers = logger.handlers[:]
for handler in handlers:
logger.removeHandler(handler)
handler.close()
logger.setLevel(logging.NOTSET)
logger.propagate = True
backend = 'anydbm'
def setUp(self):
self.dirname = '_test_instance'
# set up and open a tracker
self.instance = db_test_base.setupTracker(self.dirname, self.backend)
# open the database
self.db = self.instance.open('admin')
self.db.commit()
self.db.close()
def tearDown(self):
if self.db:
self.db.close()
try:
shutil.rmtree(self.dirname)
except OSError as error:
if error.errno not in (errno.ENOENT, errno.ESRCH): raise
def munge_configini(self, mods = None, section=None):
""" modify config.ini to meet testing requirements
mods is a list of tuples:
[ ( "a = ", "b" ), ("c = ", None), ("d = ", "b", "z = ") ]
Match line with first tuple element e.g. "a = ". Note specify
trailing "=" and space to delimit keyword and properly format
replacement line. If there are two elements in the tuple,
and the first element matches, the line is
replaced with the concatenation of the first and second elements.
If second element is None ("" doesn't work), the line will be
deleted. If there are three elements in the tuple, the line
is replaced with the contcatentation of the third and second
elements (used to replace commented out parameters).
Note if the key/first element of tuple is not unique in
config.ini, you must set the section to match the bracketed
section name.
"""
if mods is None:
return
# if section is defined, the tests in the loop will turn
# it off on [main] if section != '[main]'.
in_section = True
for line in fileinput.input(os.path.join(self.dirname, "config.ini"),
inplace=True):
if section:
if line.startswith('['):
in_section = False
if line.startswith(section):
in_section = True
if in_section:
for rule in mods:
if len(rule) == 3:
match, value, repl = rule
else:
match, value = rule
repl = None
if line.startswith(match):
if value is not None:
if repl:
print(repl + value)
else:
print(match + value)
break
else:
print(line[:-1]) # remove trailing \n
else:
print(line[:-1]) # remove trailing \n
def testNoDBInConfig(self):
"""Arguably this should be tested in test_instance since it is
triggered by instance.open. But it raises an error in the
configuration module with a missing required param in
config.ini.
"""
# remove the backend key in config.ini
self.munge_configini(mods=[ ("backend = ", None) ])
# this should fail as backend isn't defined.
with self.assertRaises(configuration.OptionUnsetError) as cm:
instance.open(self.dirname)
self.assertEqual("RDBMS_BACKEND is not set"
" and has no default", cm.exception.__str__())
def testUnsetMailPassword_with_set_username(self):
""" Set [mail] username but don't set the
[mail] password. Should get an OptionValueError.
"""
# SETUP: set mail username
self.munge_configini(mods=[ ("username = ", "foo"), ],
section="[mail]")
config = configuration.CoreConfig()
with self.assertRaises(configuration.OptionValueError) as cm:
config.load(self.dirname)
print(cm.exception)
# test repr. The type is right since it passed assertRaises.
self.assertIn("OptionValueError", repr(cm.exception))
# look for 'not defined'
self.assertEqual("not defined", cm.exception.args[1])
def testUnsetMailPassword_with_unset_username(self):
""" Set [mail] username but don't set the
[mail] password. Should get an OptionValueError.
"""
config = configuration.CoreConfig()
config.load(self.dirname)
self.assertEqual(config['MAIL_USERNAME'], '')
with self.assertRaises(configuration.OptionUnsetError) as cm:
self.assertEqual(config['MAIL_PASSWORD'], 'NO DEFAULT')
def testSecretMandatory_missing_file(self):
# SETUP:
self.munge_configini(mods=[ ("secret_key = ", "file://secret_key"), ])
config = configuration.CoreConfig()
with self.assertRaises(configuration.OptionValueError) as cm:
config.load(self.dirname)
print(cm.exception)
self.assertEqual(cm.exception.args[0].setting, "secret_key")
def testSecretMandatory_load_from_file(self):
# SETUP:
self.munge_configini(mods=[ ("secret_key = ", "file://secret_key"), ])
secret = "ASDQWEZXCRFVBGTYHNMJU"
with open(self.dirname + "/secret_key", "w") as f:
f.write(secret + "\n")
config = configuration.CoreConfig()
config.load(self.dirname)
self.assertEqual(config['WEB_SECRET_KEY'], secret)
def testSecretMandatory_load_from_abs_file(self):
abs_file = "/tmp/secret_key.%s"%os.getpid()
# SETUP:
self.munge_configini(mods=[ ("secret_key = ", "file://%s"%abs_file), ])
secret = "ASDQWEZXCRFVBGTYHNMJU"
with open(abs_file, "w") as f:
f.write(secret + "\n")
config = configuration.CoreConfig()
config.load(self.dirname)
self.assertEqual(config['WEB_SECRET_KEY'], secret)
os.remove(abs_file)
def testSecretMandatory_empty_file(self):
self.munge_configini(mods=[ ("secret_key = ", "file:// secret_key"), ])
# file with no value just newline.
with open(self.dirname + "/secret_key", "w") as f:
f.write("\n")
config = configuration.CoreConfig()
with self.assertRaises(configuration.OptionValueError) as cm:
config.load(self.dirname)
print(cm.exception.args)
self.assertEqual(cm.exception.args[2],"Value must not be empty.")
def testNullableSecret_empty_file(self):
self.munge_configini(mods=[ ("password = ", "file://db_password"), ])
# file with no value just newline.
with open(self.dirname + "/db_password", "w") as f:
f.write("\n")
config = configuration.CoreConfig()
config.load(self.dirname)
v = config['RDBMS_PASSWORD']
self.assertEqual(v, None)
def testNullableSecret_with_file_value(self):
self.munge_configini(mods=[ ("password = ", "file://db_password"), ])
# file with no value just newline.
with open(self.dirname + "/db_password", "w") as f:
f.write("test\n")
config = configuration.CoreConfig()
config.load(self.dirname)
v = config['RDBMS_PASSWORD']
self.assertEqual(v, "test")
def testNullableSecret_with_value(self):
self.munge_configini(mods=[ ("password = ", "test"), ])
config = configuration.CoreConfig()
config.load(self.dirname)
v = config['RDBMS_PASSWORD']
self.assertEqual(v, "test")
def testListSecret_for_jwt_invalid_secret(self):
"""A jwt_secret is made of ',' separated strings.
If the first string is < 32 characters (like the default
value of disabled) then jwt is disabled and no harm done.
If any other secrets are <32 characters we raise a red flag
on startup to prevent them from being used.
"""
self.munge_configini(mods=[ ("jwt_secret = ", "disable, test"), ])
config = configuration.CoreConfig()
with self.assertRaises(configuration.OptionValueError) as cm:
config.load(self.dirname)
print(cm.exception.args)
self.assertEqual(
cm.exception.args[2],
"One or more secrets less then 32 characters in length\nfound: test")
def testSetMailPassword_with_set_username(self):
""" Set [mail] username and set the password.
Should have both values set.
"""
# SETUP: set mail username
self.munge_configini(mods=[ ("username = ", "foo"),
("#password = ", "passwordfoo",
"password = ") ],
section="[mail]")
config = configuration.CoreConfig()
config.load(self.dirname)
self.assertEqual(config['MAIL_USERNAME'], 'foo')
self.assertEqual(config['MAIL_PASSWORD'], 'passwordfoo')
def testSetMailPassword_from_file(self):
""" Set [mail] username and set the password.
Should have both values set.
"""
# SETUP: set mail username
self.munge_configini(mods=[ ("username = ", "foo"),
("#password = ", "file://password",
"password = ") ],
section="[mail]")
with open(self.dirname + "/password", "w") as f:
f.write("passwordfoo\n")
config = configuration.CoreConfig()
config.load(self.dirname)
self.assertEqual(config['MAIL_USERNAME'], 'foo')
self.assertEqual(config['MAIL_PASSWORD'], 'passwordfoo')
@skip_xapian
def testInvalidIndexerLanguage_w_empty(self):
""" make sure we have a reasonable error message if
invalid indexer language is specified. This uses
default search path for indexers.
"""
# SETUP: set indexer_language value to an invalid value.
self.munge_configini(mods=[ ("indexer = ", ""),
("indexer_language = ", "NO_LANG") ])
config = configuration.CoreConfig()
with self.assertRaises(configuration.OptionValueError) as cm:
config.load(self.dirname)
print(cm.exception)
# test repr. The type is right since it passed assertRaises.
self.assertIn("OptionValueError", repr(cm.exception))
# look for failing language
self.assertIn("NO_LANG", cm.exception.args[1])
# look for supported language
self.assertIn("english", cm.exception.args[2])
@include_no_xapian
def testInvalidIndexerLanguage_w_empty_no_xapian(self):
""" Test case for empty indexer if xapian really isn't installed
This should behave like testInvalidIndexerLanguage_xapian_missing
but without all the sys.modules mangling.
"""
print("Testing when xapian is not installed")
# SETUP: set indexer_language value to an invalid value.
self.munge_configini(mods=[ ("indexer = ", ""),
("indexer_language = ", "NO_LANG") ])
config = configuration.CoreConfig()
config.load(self.dirname)
self.assertEqual(config['INDEXER_LANGUAGE'], 'NO_LANG')
def testInvalidIndexerLanguage_xapian_missing(self):
"""Using default path for indexers, make import of xapian
fail and prevent exception from happening even though
the indexer_language would be invalid for xapian.
"""
print("Testing xapian not loadable")
# SETUP: same as testInvalidIndexerLanguage_w_empty
self.munge_configini(mods=[ ("indexer = ", ""),
("indexer_language = ", "NO_LANG") ])
import sys
# Set module to Non to prevent xapian from loading
sys.modules['xapian'] = None
config.load(self.dirname)
# need to delete both to make python2 not error finding _xapian
del(sys.modules['xapian'])
if 'xapian._xapian' in sys.modules:
del(sys.modules['xapian._xapian'])
self.assertEqual(config['INDEXER_LANGUAGE'], 'NO_LANG')
# do a reset here to test reset rather than wasting cycles
# to do setup in a different test
config.reset()
self.assertEqual(config['INDEXER_LANGUAGE'], 'english')
def testInvalidIndexerLanguage_w_native(self):
"""indexer_language is invalid but indexer is not "" or xapian
Config load should succeed without exception.
"""
print("Testing indexer = native")
self.munge_configini(mods = [ ("indexer = ", "native"),
("indexer_language = ", "NO_LANG") ])
config.load(self.dirname)
self.assertEqual(config['HTML_VERSION'], 'html4')
self.assertEqual(config['INDEXER_LANGUAGE'], 'NO_LANG')
@skip_xapian
def testInvalidIndexerLanguage_w_xapian(self):
""" Use explicit xapian indexer. Verify exception is
generated.
"""
print("Testing explicit xapian")
self.munge_configini(mods=[ ("indexer = ", "xapian"),
("indexer_language = ", "NO_LANG") ])
with self.assertRaises(configuration.OptionValueError) as cm:
config.load(self.dirname)
# don't test exception content. Done in
# testInvalidIndexerLanguage_w_empty
# if exception not generated assertRaises
# will generate failure.
def testInvalidIndexerLanguage_w_native_fts(self):
""" Use explicit native-fts indexer. Verify exception is
generated.
"""
self.munge_configini(mods=[ ("indexer = ", "native-fts"),
("indexer_language = ", "NO_LANG") ])
with self.assertRaises(configuration.OptionValueError) as cm:
config.load(self.dirname)
# test repr. The type is right since it passed assertRaises.
self.assertIn("OptionValueError", repr(cm.exception))
# look for failing language
self.assertIn("NO_LANG", cm.exception.args[1])
# look for supported language
self.assertIn("basque", cm.exception.args[2])
@skip_redis
def testLoadSessionDbRedisCompatible(self):
""" run load to validate config """
config = configuration.CoreConfig()
# compatible pair
config.RDBMS_BACKEND = "sqlite"
config.SESSIONDB_BACKEND = "redis"
config.validator(config.options)
# compatible pair
config.RDBMS_BACKEND = "anydbm"
config.SESSIONDB_BACKEND = "redis"
config.validator(config.options)
@skip_redis
@skip_postgresql
def testLoadSessionDbRedisIncompatible(self):
""" run load to validate config """
# incompatible pair
config.RDBMS_BACKEND = "postgresql"
config.SESSIONDB_BACKEND = "redis"
with self.assertRaises(configuration.OptionValueError) as cm:
config.validator(config.options)
self.assertIn(" db type: redis with postgresql",
cm.exception.__str__())
def testLoadSessionDb(self):
""" run load to validate config """
config = configuration.CoreConfig()
# incompatible pair
config.RDBMS_BACKEND = "sqlite"
config.SESSIONDB_BACKEND = "foo"
with self.assertRaises(configuration.OptionValueError) as cm:
config.validator(config.options)
self.assertIn(" db type: foo with sqlite",
cm.exception.__str__())
# compatible pair
config.RDBMS_BACKEND = "sqlite"
config.SESSIONDB_BACKEND = ""
config.validator(config.options) # any exception will fail test
config.RDBMS_BACKEND = "sqlite"
config.SESSIONDB_BACKEND = "anydbm"
config.validator(config.options) # any exception will fail test
config.RDBMS_BACKEND = "anydbm"
config.SESSIONDB_BACKEND = "redis"
# make it looks like redis is not available
try:
del(sys.modules['redis'])
except KeyError:
# redis is not available anyway.
pass
sys.modules['redis'] = None
with self.assertRaises(configuration.OptionValueError) as cm:
config.validator(config.options)
del(sys.modules['redis'])
self.assertIn("Unable to load redis module",
cm.exception.__str__())
def testLoadConfig(self):
""" run load to validate config """
config = configuration.CoreConfig()
config.load(self.dirname)
# test various ways of accessing config data
with self.assertRaises(configuration.InvalidOptionError) as cm:
# using lower case name fails
c = config['indexer_language']
print(cm.exception)