-
-
Notifications
You must be signed in to change notification settings - Fork 530
/
Copy pathtest_config.py
2298 lines (2051 loc) · 78.6 KB
/
test_config.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
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
import sys
import os
from textwrap import dedent
import py
import pytest
import tox
import tox.config
from tox.config import (
SectionReader, is_section_substitution, CommandParser,
parseconfig, DepOption, get_homedir, getcontextname,
)
from tox.venv import VirtualEnv
class TestVenvConfig:
def test_config_parsing_minimal(self, tmpdir, newconfig):
config = newconfig([], """
[testenv:py1]
""")
assert len(config.envconfigs) == 1
assert config.toxworkdir.realpath() == tmpdir.join(".tox").realpath()
assert config.envconfigs['py1'].basepython == sys.executable
assert config.envconfigs['py1'].deps == []
assert config.envconfigs['py1'].platform == ".*"
def test_config_parsing_multienv(self, tmpdir, newconfig):
config = newconfig([], """
[tox]
toxworkdir = %s
indexserver =
xyz = xyz_repo
[testenv:py1]
deps=hello
[testenv:py2]
deps=
world1
:xyz:http://hello/world
""" % (tmpdir, ))
assert config.toxworkdir == tmpdir
assert len(config.envconfigs) == 2
assert config.envconfigs['py1'].envdir == tmpdir.join("py1")
dep = config.envconfigs['py1'].deps[0]
assert dep.name == "hello"
assert dep.indexserver is None
assert config.envconfigs['py2'].envdir == tmpdir.join("py2")
dep1, dep2 = config.envconfigs['py2'].deps
assert dep1.name == "world1"
assert dep2.name == "http://hello/world"
assert dep2.indexserver.name == "xyz"
assert dep2.indexserver.url == "xyz_repo"
def test_envdir_set_manually(self, tmpdir, newconfig):
config = newconfig([], """
[testenv:devenv]
envdir = devenv
""")
envconfig = config.envconfigs['devenv']
assert envconfig.envdir == tmpdir.join('devenv')
def test_envdir_set_manually_with_substitutions(self, tmpdir, newconfig):
config = newconfig([], """
[testenv:devenv]
envdir = {toxworkdir}/foobar
""")
envconfig = config.envconfigs['devenv']
assert envconfig.envdir == config.toxworkdir.join('foobar')
def test_force_dep_version(self, initproj):
"""
Make sure we can override dependencies configured in tox.ini when using the command line
option --force-dep.
"""
initproj("example123-0.5", filedefs={
'tox.ini': '''
[tox]
[testenv]
deps=
dep1==1.0
dep2>=2.0
dep3
dep4==4.0
'''
})
config = parseconfig(
['--force-dep=dep1==1.5', '--force-dep=dep2==2.1',
'--force-dep=dep3==3.0'])
assert config.option.force_dep == [
'dep1==1.5', 'dep2==2.1', 'dep3==3.0']
assert [str(x) for x in config.envconfigs['python'].deps] == [
'dep1==1.5', 'dep2==2.1', 'dep3==3.0', 'dep4==4.0',
]
def test_force_dep_with_url(self, initproj):
initproj("example123-0.5", filedefs={
'tox.ini': '''
[tox]
[testenv]
deps=
dep1==1.0
https://pypi.python.org/xyz/pkg1.tar.gz
'''
})
config = parseconfig(
['--force-dep=dep1==1.5'])
assert config.option.force_dep == [
'dep1==1.5'
]
assert [str(x) for x in config.envconfigs['python'].deps] == [
'dep1==1.5', 'https://pypi.python.org/xyz/pkg1.tar.gz'
]
def test_is_same_dep(self):
"""
Ensure correct parseini._is_same_dep is working with a few samples.
"""
assert DepOption._is_same_dep('pkg_hello-world3==1.0', 'pkg_hello-world3')
assert DepOption._is_same_dep('pkg_hello-world3==1.0', 'pkg_hello-world3>=2.0')
assert DepOption._is_same_dep('pkg_hello-world3==1.0', 'pkg_hello-world3>2.0')
assert DepOption._is_same_dep('pkg_hello-world3==1.0', 'pkg_hello-world3<2.0')
assert DepOption._is_same_dep('pkg_hello-world3==1.0', 'pkg_hello-world3<=2.0')
assert not DepOption._is_same_dep('pkg_hello-world3==1.0', 'otherpkg>=2.0')
class TestConfigPlatform:
def test_config_parse_platform(self, newconfig):
config = newconfig([], """
[testenv:py1]
platform = linux2
""")
assert len(config.envconfigs) == 1
assert config.envconfigs['py1'].platform == "linux2"
def test_config_parse_platform_rex(self, newconfig, mocksession, monkeypatch):
config = newconfig([], """
[testenv:py1]
platform = a123|b123
""")
assert len(config.envconfigs) == 1
envconfig = config.envconfigs['py1']
venv = VirtualEnv(envconfig, session=mocksession)
assert not venv.matching_platform()
monkeypatch.setattr(sys, "platform", "a123")
assert venv.matching_platform()
monkeypatch.setattr(sys, "platform", "b123")
assert venv.matching_platform()
monkeypatch.undo()
assert not venv.matching_platform()
@pytest.mark.parametrize("plat", ["win", "lin", ])
def test_config_parse_platform_with_factors(self, newconfig, plat, monkeypatch):
monkeypatch.setattr(sys, "platform", "win32")
config = newconfig([], """
[tox]
envlist = py27-{win,lin,osx}
[testenv]
platform =
win: win32
lin: linux2
""")
assert len(config.envconfigs) == 3
platform = config.envconfigs['py27-' + plat].platform
expected = {"win": "win32", "lin": "linux2"}.get(plat)
assert platform == expected
class TestConfigPackage:
def test_defaults(self, tmpdir, newconfig):
config = newconfig([], "")
assert config.setupdir.realpath() == tmpdir.realpath()
assert config.toxworkdir.realpath() == tmpdir.join(".tox").realpath()
envconfig = config.envconfigs['python']
assert envconfig.args_are_paths
assert not envconfig.recreate
assert not envconfig.pip_pre
def test_defaults_distshare(self, tmpdir, newconfig):
config = newconfig([], "")
assert config.distshare == config.homedir.join(".tox", "distshare")
def test_defaults_changed_dir(self, tmpdir, newconfig):
tmpdir.mkdir("abc").chdir()
config = newconfig([], "")
assert config.setupdir.realpath() == tmpdir.realpath()
assert config.toxworkdir.realpath() == tmpdir.join(".tox").realpath()
def test_project_paths(self, tmpdir, newconfig):
config = newconfig("""
[tox]
toxworkdir=%s
""" % tmpdir)
assert config.toxworkdir == tmpdir
class TestParseconfig:
def test_search_parents(self, tmpdir):
b = tmpdir.mkdir("a").mkdir("b")
toxinipath = tmpdir.ensure("tox.ini")
old = b.chdir()
try:
config = parseconfig([])
finally:
old.chdir()
assert config.toxinipath == toxinipath
def test_explicit_config_path(self, tmpdir):
"""
Test explicitly setting config path, both with and without the filename
"""
path = tmpdir.mkdir('tox_tmp_directory')
config_file_path = path.ensure('tox.ini')
config = parseconfig(['-c', str(config_file_path)])
assert config.toxinipath == config_file_path
# Passing directory of the config file should also be possible
# ('tox.ini' filename is assumed)
config = parseconfig(['-c', str(path)])
assert config.toxinipath == config_file_path
def test_get_homedir(monkeypatch):
monkeypatch.setattr(py.path.local, "_gethomedir",
classmethod(lambda x: {}[1]))
assert not get_homedir()
monkeypatch.setattr(py.path.local, "_gethomedir",
classmethod(lambda x: 0 / 0))
assert not get_homedir()
monkeypatch.setattr(py.path.local, "_gethomedir",
classmethod(lambda x: "123"))
assert get_homedir() == "123"
class TestGetcontextname:
def test_blank(self, monkeypatch):
monkeypatch.setattr(os, "environ", {})
assert getcontextname() is None
def test_jenkins(self, monkeypatch):
monkeypatch.setattr(os, "environ", {"JENKINS_URL": "xyz"})
assert getcontextname() == "jenkins"
def test_hudson_legacy(self, monkeypatch):
monkeypatch.setattr(os, "environ", {"HUDSON_URL": "xyz"})
assert getcontextname() == "jenkins"
class TestIniParserAgainstCommandsKey:
"""Test parsing commands with substitutions"""
def test_command_substitution_from_other_section(self, newconfig):
config = newconfig("""
[section]
key = whatever
[testenv]
commands =
echo {[section]key}
""")
reader = SectionReader("testenv", config._cfg)
x = reader.getargvlist("commands")
assert x == [["echo", "whatever"]]
def test_command_substitution_from_other_section_multiline(self, newconfig):
"""Ensure referenced multiline commands form from other section injected
as multiple commands."""
config = newconfig("""
[section]
commands =
cmd1 param11 param12
# comment is omitted
cmd2 param21 \
param22
[base]
commands = cmd 1 \
2 3 4
cmd 2
[testenv]
commands =
{[section]commands}
{[section]commands}
# comment is omitted
echo {[base]commands}
""")
reader = SectionReader("testenv", config._cfg)
x = reader.getargvlist("commands")
assert x == [
"cmd1 param11 param12".split(),
"cmd2 param21 param22".split(),
"cmd1 param11 param12".split(),
"cmd2 param21 param22".split(),
["echo", "cmd", "1", "2", "3", "4", "cmd", "2"],
]
def test_command_substitution_from_other_section_posargs(self, newconfig):
"""Ensure subsitition from other section with posargs succeeds"""
config = newconfig("""
[section]
key = thing {posargs} arg2
[testenv]
commands =
{[section]key}
""")
reader = SectionReader("testenv", config._cfg)
reader.addsubstitutions([r"argpos"])
x = reader.getargvlist("commands")
assert x == [['thing', 'argpos', 'arg2']]
def test_command_section_and_posargs_substitution(self, newconfig):
"""Ensure subsitition from other section with posargs succeeds"""
config = newconfig("""
[section]
key = thing arg1
[testenv]
commands =
{[section]key} {posargs} endarg
""")
reader = SectionReader("testenv", config._cfg)
reader.addsubstitutions([r"argpos"])
x = reader.getargvlist("commands")
assert x == [['thing', 'arg1', 'argpos', 'endarg']]
def test_command_env_substitution(self, newconfig):
"""Ensure referenced {env:key:default} values are substituted correctly."""
config = newconfig("""
[testenv:py27]
setenv =
TEST=testvalue
commands =
ls {env:TEST}
""")
envconfig = config.envconfigs["py27"]
assert envconfig.commands == [["ls", "testvalue"]]
assert envconfig.setenv["TEST"] == "testvalue"
def test_command_env_substitution_global(self, newconfig):
"""Ensure referenced {env:key:default} values are substituted correctly."""
config = newconfig("""
[testenv]
setenv = FOO = bar
commands = echo {env:FOO}
""")
envconfig = config.envconfigs['python']
assert envconfig.commands == [["echo", "bar"]]
def test_regression_issue595(self, newconfig):
config = newconfig("""
[tox]
envlist = foo
[testenv]
setenv = VAR = x
[testenv:bar]
setenv = {[testenv]setenv}
[testenv:baz]
setenv =
""")
assert config.envconfigs['foo'].setenv['VAR'] == 'x'
assert config.envconfigs['bar'].setenv['VAR'] == 'x'
assert 'VAR' not in config.envconfigs['baz'].setenv
class TestIniParser:
def test_getstring_single(self, tmpdir, newconfig):
config = newconfig("""
[section]
key=value
""")
reader = SectionReader("section", config._cfg)
x = reader.getstring("key")
assert x == "value"
assert not reader.getstring("hello")
x = reader.getstring("hello", "world")
assert x == "world"
def test_missing_substitution(self, tmpdir, newconfig):
config = newconfig("""
[mydefault]
key2={xyz}
""")
reader = SectionReader("mydefault", config._cfg, fallbacksections=['mydefault'])
assert reader is not None
with pytest.raises(tox.exception.ConfigError):
reader.getstring("key2")
def test_getstring_fallback_sections(self, tmpdir, newconfig):
config = newconfig("""
[mydefault]
key2=value2
[section]
key=value
""")
reader = SectionReader("section", config._cfg, fallbacksections=['mydefault'])
x = reader.getstring("key2")
assert x == "value2"
x = reader.getstring("key3")
assert not x
x = reader.getstring("key3", "world")
assert x == "world"
def test_getstring_substitution(self, tmpdir, newconfig):
config = newconfig("""
[mydefault]
key2={value2}
[section]
key={value}
""")
reader = SectionReader("section", config._cfg, fallbacksections=['mydefault'])
reader.addsubstitutions(value="newvalue", value2="newvalue2")
x = reader.getstring("key2")
assert x == "newvalue2"
x = reader.getstring("key3")
assert not x
x = reader.getstring("key3", "{value2}")
assert x == "newvalue2"
def test_getlist(self, tmpdir, newconfig):
config = newconfig("""
[section]
key2=
item1
{item2}
""")
reader = SectionReader("section", config._cfg)
reader.addsubstitutions(item1="not", item2="grr")
x = reader.getlist("key2")
assert x == ['item1', 'grr']
def test_getdict(self, tmpdir, newconfig):
config = newconfig("""
[section]
key2=
key1=item1
key2={item2}
""")
reader = SectionReader("section", config._cfg)
reader.addsubstitutions(item1="not", item2="grr")
x = reader.getdict("key2")
assert 'key1' in x
assert 'key2' in x
assert x['key1'] == 'item1'
assert x['key2'] == 'grr'
x = reader.getdict("key3", {1: 2})
assert x == {1: 2}
def test_normal_env_sub_works(self, monkeypatch, newconfig):
monkeypatch.setenv("VAR", "hello")
config = newconfig("[section]\nkey={env:VAR}")
assert SectionReader("section", config._cfg).getstring("key") == "hello"
def test_missing_env_sub_raises_config_error_in_non_testenv(self, newconfig):
config = newconfig("[section]\nkey={env:VAR}")
with pytest.raises(tox.exception.ConfigError):
SectionReader("section", config._cfg).getstring("key")
def test_missing_env_sub_populates_missing_subs(self, newconfig):
config = newconfig("[testenv:foo]\ncommands={env:VAR}")
print(SectionReader("section", config._cfg).getstring("commands"))
assert config.envconfigs['foo'].missing_subs == ['VAR']
def test_getstring_environment_substitution_with_default(self, monkeypatch, newconfig):
monkeypatch.setenv("KEY1", "hello")
config = newconfig("""
[section]
key1={env:KEY1:DEFAULT_VALUE}
key2={env:KEY2:DEFAULT_VALUE}
key3={env:KEY3:}
""")
reader = SectionReader("section", config._cfg)
x = reader.getstring("key1")
assert x == "hello"
x = reader.getstring("key2")
assert x == "DEFAULT_VALUE"
x = reader.getstring("key3")
assert x == ""
def test_value_matches_section_substituion(self):
assert is_section_substitution("{[setup]commands}")
def test_value_doesn_match_section_substitution(self):
assert is_section_substitution("{[ ]commands}") is None
assert is_section_substitution("{[setup]}") is None
assert is_section_substitution("{[setup] commands}") is None
def test_getstring_other_section_substitution(self, newconfig):
config = newconfig("""
[section]
key = rue
[testenv]
key = t{[section]key}
""")
reader = SectionReader("testenv", config._cfg)
x = reader.getstring("key")
assert x == "true"
def test_argvlist(self, tmpdir, newconfig):
config = newconfig("""
[section]
key2=
cmd1 {item1} {item2}
cmd2 {item2}
""")
reader = SectionReader("section", config._cfg)
reader.addsubstitutions(item1="with space", item2="grr")
# pytest.raises(tox.exception.ConfigError,
# "reader.getargvlist('key1')")
assert reader.getargvlist('key1') == []
x = reader.getargvlist("key2")
assert x == [["cmd1", "with", "space", "grr"],
["cmd2", "grr"]]
def test_argvlist_windows_escaping(self, tmpdir, newconfig):
config = newconfig("""
[section]
comm = pytest {posargs}
""")
reader = SectionReader("section", config._cfg)
reader.addsubstitutions([r"hello\this"])
argv = reader.getargv("comm")
assert argv == ["pytest", "hello\\this"]
def test_argvlist_multiline(self, tmpdir, newconfig):
config = newconfig("""
[section]
key2=
cmd1 {item1} \
{item2}
""")
reader = SectionReader("section", config._cfg)
reader.addsubstitutions(item1="with space", item2="grr")
# pytest.raises(tox.exception.ConfigError,
# "reader.getargvlist('key1')")
assert reader.getargvlist('key1') == []
x = reader.getargvlist("key2")
assert x == [["cmd1", "with", "space", "grr"]]
def test_argvlist_quoting_in_command(self, tmpdir, newconfig):
config = newconfig("""
[section]
key1=
cmd1 'part one' \
'part two'
""")
reader = SectionReader("section", config._cfg)
x = reader.getargvlist("key1")
assert x == [["cmd1", "part one", "part two"]]
def test_argvlist_comment_after_command(self, tmpdir, newconfig):
config = newconfig("""
[section]
key1=
cmd1 --flag # run the flag on the command
""")
reader = SectionReader("section", config._cfg)
x = reader.getargvlist("key1")
assert x == [["cmd1", "--flag"]]
def test_argvlist_command_contains_hash(self, tmpdir, newconfig):
config = newconfig("""
[section]
key1=
cmd1 --re "use the # symbol for an arg"
""")
reader = SectionReader("section", config._cfg)
x = reader.getargvlist("key1")
assert x == [["cmd1", "--re", "use the # symbol for an arg"]]
def test_argvlist_positional_substitution(self, tmpdir, newconfig):
config = newconfig("""
[section]
key2=
cmd1 []
cmd2 {posargs:{item2} \
other}
""")
reader = SectionReader("section", config._cfg)
posargs = ['hello', 'world']
reader.addsubstitutions(posargs, item2="value2")
# pytest.raises(tox.exception.ConfigError,
# "reader.getargvlist('key1')")
assert reader.getargvlist('key1') == []
argvlist = reader.getargvlist("key2")
assert argvlist[0] == ["cmd1"] + posargs
assert argvlist[1] == ["cmd2"] + posargs
reader = SectionReader("section", config._cfg)
reader.addsubstitutions([], item2="value2")
# pytest.raises(tox.exception.ConfigError,
# "reader.getargvlist('key1')")
assert reader.getargvlist('key1') == []
argvlist = reader.getargvlist("key2")
assert argvlist[0] == ["cmd1"]
assert argvlist[1] == ["cmd2", "value2", "other"]
def test_argvlist_quoted_posargs(self, tmpdir, newconfig):
config = newconfig("""
[section]
key2=
cmd1 --foo-args='{posargs}'
cmd2 -f '{posargs}'
cmd3 -f {posargs}
""")
reader = SectionReader("section", config._cfg)
reader.addsubstitutions(["foo", "bar"])
assert reader.getargvlist('key1') == []
x = reader.getargvlist("key2")
assert x == [["cmd1", "--foo-args=foo bar"],
["cmd2", "-f", "foo bar"],
["cmd3", "-f", "foo", "bar"]]
def test_argvlist_posargs_with_quotes(self, tmpdir, newconfig):
config = newconfig("""
[section]
key2=
cmd1 -f {posargs}
""")
reader = SectionReader("section", config._cfg)
reader.addsubstitutions(["foo", "'bar", "baz'"])
assert reader.getargvlist('key1') == []
x = reader.getargvlist("key2")
assert x == [["cmd1", "-f", "foo", "bar baz"]]
def test_positional_arguments_are_only_replaced_when_standing_alone(self, tmpdir, newconfig):
config = newconfig("""
[section]
key=
cmd0 []
cmd1 -m '[abc]'
cmd2 -m '\'something\'' []
cmd3 something[]else
""")
reader = SectionReader("section", config._cfg)
posargs = ['hello', 'world']
reader.addsubstitutions(posargs)
argvlist = reader.getargvlist('key')
assert argvlist[0] == ['cmd0'] + posargs
assert argvlist[1] == ['cmd1', '-m', '[abc]']
assert argvlist[2] == ['cmd2', '-m', "something"] + posargs
assert argvlist[3] == ['cmd3', 'something[]else']
def test_posargs_are_added_escaped_issue310(self, newconfig):
config = newconfig("""
[section]
key= cmd0 {posargs}
""")
reader = SectionReader("section", config._cfg)
posargs = ['hello world', '--x==y z', '--format=%(code)s: %(text)s']
reader.addsubstitutions(posargs)
argvlist = reader.getargvlist('key')
assert argvlist[0] == ['cmd0'] + posargs
def test_substitution_with_multiple_words(self, newconfig):
inisource = """
[section]
key = pytest -n5 --junitxml={envlogdir}/junit-{envname}.xml []
"""
config = newconfig(inisource)
reader = SectionReader("section", config._cfg)
posargs = ['hello', 'world']
reader.addsubstitutions(posargs, envlogdir='ENV_LOG_DIR', envname='ENV_NAME')
expected = [
'pytest', '-n5', '--junitxml=ENV_LOG_DIR/junit-ENV_NAME.xml', 'hello', 'world'
]
assert reader.getargvlist('key')[0] == expected
def test_getargv(self, newconfig):
config = newconfig("""
[section]
key=some command "with quoting"
""")
reader = SectionReader("section", config._cfg)
expected = ['some', 'command', 'with quoting']
assert reader.getargv('key') == expected
def test_getpath(self, tmpdir, newconfig):
config = newconfig("""
[section]
path1={HELLO}
""")
reader = SectionReader("section", config._cfg)
reader.addsubstitutions(toxinidir=tmpdir, HELLO="mypath")
x = reader.getpath("path1", tmpdir)
assert x == tmpdir.join("mypath")
def test_getbool(self, tmpdir, newconfig):
config = newconfig("""
[section]
key1=True
key2=False
key1a=true
key2a=falsE
key5=yes
""")
reader = SectionReader("section", config._cfg)
assert reader.getbool("key1") is True
assert reader.getbool("key1a") is True
assert reader.getbool("key2") is False
assert reader.getbool("key2a") is False
pytest.raises(KeyError, 'reader.getbool("key3")')
pytest.raises(tox.exception.ConfigError, 'reader.getbool("key5")')
class TestIniParserPrefix:
def test_basic_section_access(self, tmpdir, newconfig):
config = newconfig("""
[p:section]
key=value
""")
reader = SectionReader("section", config._cfg, prefix="p")
x = reader.getstring("key")
assert x == "value"
assert not reader.getstring("hello")
x = reader.getstring("hello", "world")
assert x == "world"
def test_fallback_sections(self, tmpdir, newconfig):
config = newconfig("""
[p:mydefault]
key2=value2
[p:section]
key=value
""")
reader = SectionReader("section", config._cfg, prefix="p",
fallbacksections=['p:mydefault'])
x = reader.getstring("key2")
assert x == "value2"
x = reader.getstring("key3")
assert not x
x = reader.getstring("key3", "world")
assert x == "world"
def test_value_matches_prefixed_section_substituion(self):
assert is_section_substitution("{[p:setup]commands}")
def test_value_doesn_match_prefixed_section_substitution(self):
assert is_section_substitution("{[p: ]commands}") is None
assert is_section_substitution("{[p:setup]}") is None
assert is_section_substitution("{[p:setup] commands}") is None
def test_other_section_substitution(self, newconfig):
config = newconfig("""
[p:section]
key = rue
[p:testenv]
key = t{[p:section]key}
""")
reader = SectionReader("testenv", config._cfg, prefix="p")
x = reader.getstring("key")
assert x == "true"
class TestConfigTestEnv:
def test_commentchars_issue33(self, tmpdir, newconfig):
config = newconfig("""
[testenv] # hello
deps = http://abc#123
commands=
python -c "x ; y"
""")
envconfig = config.envconfigs["python"]
assert envconfig.deps[0].name == "http://abc#123"
assert envconfig.commands[0] == ["python", "-c", "x ; y"]
def test_defaults(self, tmpdir, newconfig):
config = newconfig("""
[testenv]
commands=
xyz --abc
""")
assert len(config.envconfigs) == 1
envconfig = config.envconfigs['python']
assert envconfig.commands == [["xyz", "--abc"]]
assert envconfig.changedir == config.setupdir
assert envconfig.sitepackages is False
assert envconfig.usedevelop is False
assert envconfig.ignore_errors is False
assert envconfig.envlogdir == envconfig.envdir.join("log")
assert list(envconfig.setenv.definitions.keys()) == ['PYTHONHASHSEED']
hashseed = envconfig.setenv['PYTHONHASHSEED']
assert isinstance(hashseed, str)
# The following line checks that hashseed parses to an integer.
int_hashseed = int(hashseed)
# hashseed is random by default, so we can't assert a specific value.
assert int_hashseed > 0
assert envconfig.ignore_outcome is False
def test_sitepackages_switch(self, tmpdir, newconfig):
config = newconfig(["--sitepackages"], "")
envconfig = config.envconfigs['python']
assert envconfig.sitepackages is True
def test_installpkg_tops_develop(self, newconfig):
config = newconfig(["--installpkg=abc"], """
[testenv]
usedevelop = True
""")
assert not config.envconfigs["python"].usedevelop
def test_specific_command_overrides(self, tmpdir, newconfig):
config = newconfig("""
[testenv]
commands=xyz
[testenv:py]
commands=abc
""")
assert len(config.envconfigs) == 1
envconfig = config.envconfigs['py']
assert envconfig.commands == [["abc"]]
def test_whitelist_externals(self, tmpdir, newconfig):
config = newconfig("""
[testenv]
whitelist_externals = xyz
commands=xyz
[testenv:x]
[testenv:py]
whitelist_externals = xyz2
commands=abc
""")
assert len(config.envconfigs) == 2
envconfig = config.envconfigs['py']
assert envconfig.commands == [["abc"]]
assert envconfig.whitelist_externals == ["xyz2"]
envconfig = config.envconfigs['x']
assert envconfig.whitelist_externals == ["xyz"]
def test_changedir(self, tmpdir, newconfig):
config = newconfig("""
[testenv]
changedir=xyz
""")
assert len(config.envconfigs) == 1
envconfig = config.envconfigs['python']
assert envconfig.changedir.basename == "xyz"
assert envconfig.changedir == config.toxinidir.join("xyz")
def test_ignore_errors(self, tmpdir, newconfig):
config = newconfig("""
[testenv]
ignore_errors=True
""")
assert len(config.envconfigs) == 1
envconfig = config.envconfigs['python']
assert envconfig.ignore_errors is True
def test_envbindir(self, tmpdir, newconfig):
config = newconfig("""
[testenv]
basepython=python
""")
assert len(config.envconfigs) == 1
envconfig = config.envconfigs['python']
assert envconfig.envpython == envconfig.envbindir.join("python")
@pytest.mark.parametrize("bp", ["jython", "pypy", "pypy3"])
def test_envbindir_jython(self, tmpdir, newconfig, bp):
config = newconfig("""
[testenv]
basepython=%s
""" % bp)
assert len(config.envconfigs) == 1
envconfig = config.envconfigs['python']
# on win32 and linux virtualenv uses "bin" for pypy/jython
assert envconfig.envbindir.basename == "bin"
if bp == "jython":
assert envconfig.envpython == envconfig.envbindir.join(bp)
@pytest.mark.parametrize("plat", ["win32", "linux2"])
def test_passenv_as_multiline_list(self, tmpdir, newconfig, monkeypatch, plat):
monkeypatch.setattr(sys, "platform", plat)
monkeypatch.setenv("A123A", "a")
monkeypatch.setenv("A123B", "b")
monkeypatch.setenv("BX23", "0")
config = newconfig("""
[testenv]
passenv =
A123*
# isolated comment
B?23
""")
assert len(config.envconfigs) == 1
envconfig = config.envconfigs['python']
if plat == "win32":
assert "PATHEXT" in envconfig.passenv
assert "SYSTEMDRIVE" in envconfig.passenv
assert "SYSTEMROOT" in envconfig.passenv
assert "COMSPEC" in envconfig.passenv
assert "TEMP" in envconfig.passenv
assert "TMP" in envconfig.passenv
assert "NUMBER_OF_PROCESSORS" in envconfig.passenv
assert "USERPROFILE" in envconfig.passenv
assert "MSYSTEM" in envconfig.passenv
else:
assert "TMPDIR" in envconfig.passenv
assert "PATH" in envconfig.passenv
assert "PIP_INDEX_URL" in envconfig.passenv
assert "LANG" in envconfig.passenv
assert "LANGUAGE" in envconfig.passenv
assert "LD_LIBRARY_PATH" in envconfig.passenv
assert "A123A" in envconfig.passenv
assert "A123B" in envconfig.passenv
@pytest.mark.parametrize("plat", ["win32", "linux2"])
def test_passenv_as_space_separated_list(self, tmpdir, newconfig, monkeypatch, plat):
monkeypatch.setattr(sys, "platform", plat)
monkeypatch.setenv("A123A", "a")
monkeypatch.setenv("A123B", "b")
monkeypatch.setenv("BX23", "0")
config = newconfig("""
[testenv]
passenv =
# comment
A123* B?23
""")
assert len(config.envconfigs) == 1
envconfig = config.envconfigs['python']
if plat == "win32":
assert "PATHEXT" in envconfig.passenv
assert "SYSTEMDRIVE" in envconfig.passenv
assert "SYSTEMROOT" in envconfig.passenv
assert "TEMP" in envconfig.passenv
assert "TMP" in envconfig.passenv
else:
assert "TMPDIR" in envconfig.passenv
assert "PATH" in envconfig.passenv
assert "PIP_INDEX_URL" in envconfig.passenv
assert "LANG" in envconfig.passenv
assert "LANGUAGE" in envconfig.passenv
assert "A123A" in envconfig.passenv
assert "A123B" in envconfig.passenv
def test_passenv_with_factor(self, tmpdir, newconfig, monkeypatch):
monkeypatch.setenv("A123A", "a")
monkeypatch.setenv("A123B", "b")
monkeypatch.setenv("A123C", "c")
monkeypatch.setenv("A123D", "d")
monkeypatch.setenv("BX23", "0")
monkeypatch.setenv("CCA43", "3")
monkeypatch.setenv("CB21", "4")
config = newconfig("""
[tox]
envlist = {x1,x2}
[testenv]
passenv =
x1: A123A CC*
x1: CB21
# passed to both environments
A123C
x2: A123B A123D
""")
assert len(config.envconfigs) == 2
assert "A123A" in config.envconfigs["x1"].passenv
assert "A123C" in config.envconfigs["x1"].passenv
assert "CCA43" in config.envconfigs["x1"].passenv
assert "CB21" in config.envconfigs["x1"].passenv
assert "A123B" not in config.envconfigs["x1"].passenv
assert "A123D" not in config.envconfigs["x1"].passenv
assert "BX23" not in config.envconfigs["x1"].passenv
assert "A123B" in config.envconfigs["x2"].passenv
assert "A123D" in config.envconfigs["x2"].passenv
assert "A123A" not in config.envconfigs["x2"].passenv
assert "A123C" in config.envconfigs["x2"].passenv
assert "CCA43" not in config.envconfigs["x2"].passenv
assert "CB21" not in config.envconfigs["x2"].passenv
assert "BX23" not in config.envconfigs["x2"].passenv
def test_passenv_from_global_env(self, tmpdir, newconfig, monkeypatch):
monkeypatch.setenv("A1", "a1")
monkeypatch.setenv("A2", "a2")
monkeypatch.setenv("TOX_TESTENV_PASSENV", "A1")
config = newconfig("""
[testenv]
passenv = A2
""")
env = config.envconfigs["python"]
assert "A1" in env.passenv
assert "A2" in env.passenv
def test_passenv_glob_from_global_env(self, tmpdir, newconfig, monkeypatch):
monkeypatch.setenv("A1", "a1")
monkeypatch.setenv("A2", "a2")
monkeypatch.setenv("TOX_TESTENV_PASSENV", "A*")
config = newconfig("""
[testenv]
""")
env = config.envconfigs["python"]
assert "A1" in env.passenv
assert "A2" in env.passenv
def test_changedir_override(self, tmpdir, newconfig):
config = newconfig("""
[testenv]
changedir=xyz
[testenv:python]