-
Notifications
You must be signed in to change notification settings - Fork 993
/
Copy pathtools_test.py
1367 lines (1143 loc) · 54.4 KB
/
tools_test.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
# -*- coding: utf-8 -*-
from bottle import static_file, request
import mock
import os
import platform
import unittest
from collections import namedtuple
import six
from mock.mock import patch, mock_open
from six import StringIO
from conans.client.client_cache import CONAN_CONF
from conans import tools
from conans.client.conan_api import ConanAPIV1
from conans.client.conf import default_settings_yml, default_client_conf
from conans.client.output import ConanOutput
from conans.client.tools.win import vcvars_dict, vswhere
from conans.client.tools.scm import Git
from conans.errors import ConanException, NotFoundException
from conans.model.settings import Settings
from conans.test.utils.runner import TestRunner
from conans.test.utils.test_files import temp_folder
from conans.test.utils.tools import TestClient, TestBufferConanOutput, create_local_git_repo, \
StoppableThreadBottle
from conans.tools import which
from conans.tools import OSInfo, SystemPackageTool, replace_in_file, AptTool, ChocolateyTool,\
set_global_instances
from conans.util.files import save, load, md5
import requests
from nose.plugins.attrib import attr
class SystemPackageToolTest(unittest.TestCase):
def setUp(self):
out = TestBufferConanOutput()
set_global_instances(out, requests)
def verify_update_test(self):
# https://github.com/conan-io/conan/issues/3142
with tools.environment_append({"CONAN_SYSREQUIRES_SUDO": "False",
"CONAN_SYSREQUIRES_MODE": "Verify"}):
runner = RunnerMock()
# fake os info to linux debian, default sudo
os_info = OSInfo()
os_info.is_macos = False
os_info.is_linux = True
os_info.is_windows = False
os_info.linux_distro = "debian"
spt = SystemPackageTool(runner=runner, os_info=os_info)
spt.update()
self.assertEquals(runner.command_called, None)
self.assertIn('Not updating system_requirements. CONAN_SYSREQUIRES_MODE=verify',
tools.system_pm._global_output)
def system_package_tool_test(self):
with tools.environment_append({"CONAN_SYSREQUIRES_SUDO": "True"}):
runner = RunnerMock()
# fake os info to linux debian, default sudo
os_info = OSInfo()
os_info.is_macos = False
os_info.is_linux = True
os_info.is_windows = False
os_info.linux_distro = "debian"
spt = SystemPackageTool(runner=runner, os_info=os_info)
spt.update()
self.assertEquals(runner.command_called, "sudo apt-get update")
os_info.linux_distro = "ubuntu"
spt = SystemPackageTool(runner=runner, os_info=os_info)
spt.update()
self.assertEquals(runner.command_called, "sudo apt-get update")
os_info.linux_distro = "knoppix"
spt = SystemPackageTool(runner=runner, os_info=os_info)
spt.update()
self.assertEquals(runner.command_called, "sudo apt-get update")
os_info.linux_distro = "fedora"
spt = SystemPackageTool(runner=runner, os_info=os_info)
spt.update()
self.assertEquals(runner.command_called, "sudo yum update")
os_info.linux_distro = "opensuse"
spt = SystemPackageTool(runner=runner, os_info=os_info)
spt.update()
self.assertEquals(runner.command_called, "sudo zypper --non-interactive ref")
os_info.linux_distro = "redhat"
spt = SystemPackageTool(runner=runner, os_info=os_info)
spt.install("a_package", force=False)
self.assertEquals(runner.command_called, "rpm -q a_package")
spt.install("a_package", force=True)
self.assertEquals(runner.command_called, "sudo yum install -y a_package")
os_info.linux_distro = "debian"
spt = SystemPackageTool(runner=runner, os_info=os_info)
with self.assertRaises(ConanException):
runner.return_ok = False
spt.install("a_package")
self.assertEquals(runner.command_called, "sudo apt-get install -y --no-install-recommends a_package")
runner.return_ok = True
spt.install("a_package", force=False)
self.assertEquals(runner.command_called, "dpkg -s a_package")
os_info.is_macos = True
os_info.is_linux = False
os_info.is_windows = False
spt = SystemPackageTool(runner=runner, os_info=os_info)
spt.update()
self.assertEquals(runner.command_called, "brew update")
spt.install("a_package", force=True)
self.assertEquals(runner.command_called, "brew install a_package")
os_info.is_freebsd = True
os_info.is_macos = False
spt = SystemPackageTool(runner=runner, os_info=os_info)
spt.update()
self.assertEquals(runner.command_called, "sudo pkg update")
spt.install("a_package", force=True)
self.assertEquals(runner.command_called, "sudo pkg install -y a_package")
spt.install("a_package", force=False)
self.assertEquals(runner.command_called, "pkg info a_package")
# Chocolatey is an optional package manager on Windows
if platform.system() == "Windows" and which("choco.exe"):
os_info.is_freebsd = False
os_info.is_windows = True
spt = SystemPackageTool(runner=runner, os_info=os_info, tool=ChocolateyTool())
spt.update()
self.assertEquals(runner.command_called, "choco outdated")
spt.install("a_package", force=True)
self.assertEquals(runner.command_called, "choco install --yes a_package")
spt.install("a_package", force=False)
self.assertEquals(runner.command_called,
'choco search --local-only --exact a_package | findstr /c:"1 packages installed."')
with tools.environment_append({"CONAN_SYSREQUIRES_SUDO": "False"}):
os_info = OSInfo()
os_info.is_linux = True
os_info.linux_distro = "redhat"
spt = SystemPackageTool(runner=runner, os_info=os_info)
spt.install("a_package", force=True)
self.assertEquals(runner.command_called, "yum install -y a_package")
spt.update()
self.assertEquals(runner.command_called, "yum update")
os_info.linux_distro = "ubuntu"
spt = SystemPackageTool(runner=runner, os_info=os_info)
spt.install("a_package", force=True)
self.assertEquals(runner.command_called, "apt-get install -y --no-install-recommends a_package")
spt.update()
self.assertEquals(runner.command_called, "apt-get update")
os_info.is_macos = True
os_info.is_linux = False
os_info.is_windows = False
spt = SystemPackageTool(runner=runner, os_info=os_info)
spt.update()
self.assertEquals(runner.command_called, "brew update")
spt.install("a_package", force=True)
self.assertEquals(runner.command_called, "brew install a_package")
os_info.is_freebsd = True
os_info.is_macos = False
os_info.is_windows = False
spt = SystemPackageTool(runner=runner, os_info=os_info)
spt.update()
self.assertEquals(runner.command_called, "pkg update")
spt.install("a_package", force=True)
self.assertEquals(runner.command_called, "pkg install -y a_package")
spt.install("a_package", force=False)
self.assertEquals(runner.command_called, "pkg info a_package")
os_info.is_solaris = True
os_info.is_freebsd = False
os_info.is_windows = False
spt = SystemPackageTool(runner=runner, os_info=os_info)
spt.update()
self.assertEquals(runner.command_called, "pkgutil --catalog")
spt.install("a_package", force=True)
self.assertEquals(runner.command_called, "pkgutil --install --yes a_package")
with tools.environment_append({"CONAN_SYSREQUIRES_SUDO": "True"}):
# Chocolatey is an optional package manager on Windows
if platform.system() == "Windows" and which("choco.exe"):
os_info.is_solaris = False
os_info.is_windows = True
spt = SystemPackageTool(runner=runner, os_info=os_info, tool=ChocolateyTool())
spt.update()
self.assertEquals(runner.command_called, "choco outdated")
spt.install("a_package", force=True)
self.assertEquals(runner.command_called, "choco install --yes a_package")
spt.install("a_package", force=False)
self.assertEquals(runner.command_called,
'choco search --local-only --exact a_package | findstr /c:"1 packages installed."')
def system_package_tool_try_multiple_test(self):
class RunnerMultipleMock(object):
def __init__(self, expected=None):
self.calls = 0
self.expected = expected
def __call__(self, command, output): # @UnusedVariable
self.calls += 1
return 0 if command in self.expected else 1
packages = ["a_package", "another_package", "yet_another_package"]
with tools.environment_append({"CONAN_SYSREQUIRES_SUDO": "True"}):
runner = RunnerMultipleMock(["dpkg -s another_package"])
spt = SystemPackageTool(runner=runner, tool=AptTool())
spt.install(packages)
self.assertEquals(2, runner.calls)
runner = RunnerMultipleMock(["sudo apt-get update",
"sudo apt-get install -y --no-install-recommends yet_another_package"])
spt = SystemPackageTool(runner=runner, tool=AptTool())
spt.install(packages)
self.assertEquals(7, runner.calls)
runner = RunnerMultipleMock(["sudo apt-get update"])
spt = SystemPackageTool(runner=runner, tool=AptTool())
with self.assertRaises(ConanException):
spt.install(packages)
self.assertEquals(7, runner.calls)
def system_package_tool_mode_test(self):
"""
System Package Tool mode is defined by CONAN_SYSREQUIRES_MODE env variable.
Allowed values: (enabled, verify, disabled). Parser accepts it in lower/upper case or any combination.
"""
class RunnerMultipleMock(object):
def __init__(self, expected=None):
self.calls = 0
self.expected = expected
def __call__(self, command, *args, **kwargs): # @UnusedVariable
self.calls += 1
return 0 if command in self.expected else 1
packages = ["a_package", "another_package", "yet_another_package"]
# Check invalid mode raises ConanException
with tools.environment_append({
"CONAN_SYSREQUIRES_MODE": "test_not_valid_mode",
"CONAN_SYSREQUIRES_SUDO": "True"
}):
runner = RunnerMultipleMock([])
spt = SystemPackageTool(runner=runner, tool=AptTool())
with self.assertRaises(ConanException) as exc:
spt.install(packages)
self.assertIn("CONAN_SYSREQUIRES_MODE=test_not_valid_mode is not allowed", str(exc.exception))
self.assertEquals(0, runner.calls)
# Check verify mode, a package report should be displayed in output and ConanException raised.
# No system packages are installed
with tools.environment_append({
"CONAN_SYSREQUIRES_MODE": "VeRiFy",
"CONAN_SYSREQUIRES_SUDO": "True"
}):
packages = ["verify_package", "verify_another_package", "verify_yet_another_package"]
runner = RunnerMultipleMock(["sudo apt-get update"])
spt = SystemPackageTool(runner=runner, tool=AptTool())
with self.assertRaises(ConanException) as exc:
spt.install(packages)
self.assertIn("Aborted due to CONAN_SYSREQUIRES_MODE=", str(exc.exception))
self.assertIn('\n'.join(packages), tools.system_pm._global_output)
self.assertEquals(3, runner.calls)
# Check disabled mode, a package report should be displayed in output.
# No system packages are installed
with tools.environment_append({
"CONAN_SYSREQUIRES_MODE": "DiSaBlEd",
"CONAN_SYSREQUIRES_SUDO": "True"
}):
packages = ["disabled_package", "disabled_another_package", "disabled_yet_another_package"]
runner = RunnerMultipleMock(["sudo apt-get update"])
spt = SystemPackageTool(runner=runner, tool=AptTool())
spt.install(packages)
self.assertIn('\n'.join(packages), tools.system_pm._global_output)
self.assertEquals(0, runner.calls)
# Check enabled, default mode, system packages must be installed.
with tools.environment_append({
"CONAN_SYSREQUIRES_MODE": "EnAbLeD",
"CONAN_SYSREQUIRES_SUDO": "True"
}):
runner = RunnerMultipleMock(["sudo apt-get update"])
spt = SystemPackageTool(runner=runner, tool=AptTool())
with self.assertRaises(ConanException) as exc:
spt.install(packages)
self.assertNotIn("CONAN_SYSREQUIRES_MODE", str(exc.exception))
self.assertEquals(7, runner.calls)
def system_package_tool_installed_test(self):
if platform.system() != "Linux" and platform.system() != "Macos" and platform.system() != "Windows":
return
if platform.system() == "Windows" and not which("choco.exe"):
return
spt = SystemPackageTool()
expected_package = "git"
if platform.system() == "Windows" and which("choco.exe"):
spt = SystemPackageTool(tool=ChocolateyTool())
# Git is not installed by default on Chocolatey
expected_package = "chocolatey"
# The expected should be installed on development/testing machines
self.assertTrue(spt._tool.installed(expected_package))
# This package hopefully doesn't exist
self.assertFalse(spt._tool.installed("oidfjgesiouhrgioeurhgielurhgaeiorhgioearhgoaeirhg"))
def system_package_tool_fail_when_not_0_returned_test(self):
def get_linux_error_message():
"""
Get error message for Linux platform if distro is supported, None otherwise
"""
os_info = OSInfo()
update_command = None
if os_info.with_apt:
update_command = "sudo apt-get update"
elif os_info.with_yum:
update_command = "sudo yum update"
elif os_info.with_zypper:
update_command = "sudo zypper --non-interactive ref"
elif os_info.with_pacman:
update_command = "sudo pacman -Syyu --noconfirm"
return "Command '{0}' failed".format(update_command) if update_command is not None else None
platform_update_error_msg = {
"Linux": get_linux_error_message(),
"Darwin": "Command 'brew update' failed",
"Windows": "Command 'choco outdated' failed" if which("choco.exe") else None,
}
runner = RunnerMock(return_ok=False)
pkg_tool = ChocolateyTool() if which("choco.exe") else None
spt = SystemPackageTool(runner=runner, tool=pkg_tool)
msg = platform_update_error_msg.get(platform.system(), None)
if msg is not None:
with self.assertRaisesRegexp(ConanException, msg):
spt.update()
else:
spt.update() # Won't raise anything because won't do anything
class RunnerMock(object):
def __init__(self, return_ok=True):
self.command_called = None
self.return_ok = return_ok
def __call__(self, command, output, win_bash=False, subsystem=None): # @UnusedVariable
self.command_called = command
self.win_bash = win_bash
self.subsystem = subsystem
return 0 if self.return_ok else 1
class ReplaceInFileTest(unittest.TestCase):
def setUp(self):
text = u'J\xe2nis\xa7'
self.tmp_folder = temp_folder()
self.win_file = os.path.join(self.tmp_folder, "win_encoding.txt")
text = text.encode("Windows-1252", "ignore")
with open(self.win_file, "wb") as handler:
handler.write(text)
self.bytes_file = os.path.join(self.tmp_folder, "bytes_encoding.txt")
with open(self.bytes_file, "wb") as handler:
handler.write(text)
def test_replace_in_file(self):
replace_in_file(self.win_file, "nis", "nus")
replace_in_file(self.bytes_file, "nis", "nus")
content = tools.load(self.win_file)
self.assertNotIn("nis", content)
self.assertIn("nus", content)
content = tools.load(self.bytes_file)
self.assertNotIn("nis", content)
self.assertIn("nus", content)
class ToolsTest(unittest.TestCase):
def load_save_test(self):
folder = temp_folder()
path = os.path.join(folder, "file")
save(path, u"äüïöñç")
content = load(path)
self.assertEqual(content, u"äüïöñç")
def md5_test(self):
result = md5(u"äüïöñç")
self.assertEqual("dfcc3d74aa447280a7ecfdb98da55174", result)
def cpu_count_test(self):
cpus = tools.cpu_count()
self.assertIsInstance(cpus, int)
self.assertGreaterEqual(cpus, 1)
with tools.environment_append({"CONAN_CPU_COUNT": "34"}):
self.assertEquals(tools.cpu_count(), 34)
def get_env_unit_test(self):
"""
Unit tests tools.get_env
"""
# Test default
self.assertIsNone(
tools.get_env("NOT_DEFINED", environment={}),
None
)
# Test defined default
self.assertEqual(
tools.get_env("NOT_DEFINED_KEY", default="random_default", environment={}),
"random_default"
)
# Test return defined string
self.assertEqual(
tools.get_env("FROM_STR", default="", environment={"FROM_STR": "test_string_value"}),
"test_string_value"
)
# Test boolean conversion
self.assertEqual(
tools.get_env("BOOL_FROM_STR", default=False, environment={"BOOL_FROM_STR": "1"}),
True
)
self.assertEqual(
tools.get_env("BOOL_FROM_STR", default=True, environment={"BOOL_FROM_STR": "0"}),
False
)
self.assertEqual(
tools.get_env("BOOL_FROM_STR", default=False, environment={"BOOL_FROM_STR": "True"}),
True
)
self.assertEqual(
tools.get_env("BOOL_FROM_STR", default=True, environment={"BOOL_FROM_STR": ""}),
False
)
# Test int conversion
self.assertEqual(
tools.get_env("TO_INT", default=2, environment={"TO_INT": "1"}),
1
)
# Test float conversion
self.assertEqual(
tools.get_env("TO_FLOAT", default=2.0, environment={"TO_FLOAT": "1"}),
1.0
),
# Test list conversion
self.assertEqual(
tools.get_env("TO_LIST", default=[], environment={"TO_LIST": "1,2,3"}),
["1", "2", "3"]
)
self.assertEqual(
tools.get_env("TO_LIST_NOT_TRIMMED", default=[], environment={"TO_LIST_NOT_TRIMMED": " 1 , 2 , 3 "}),
["1", "2", "3"]
)
def test_get_env_in_conanfile(self):
"""
Test get_env is available and working in conanfile
"""
client = TestClient()
conanfile = """from conans import ConanFile, tools
class HelloConan(ConanFile):
name = "Hello"
version = "0.1"
def build(self):
run_tests = tools.get_env("CONAN_RUN_TESTS", default=False)
print("test_get_env_in_conafile CONAN_RUN_TESTS=%r" % run_tests)
assert(run_tests == True)
"""
client.save({"conanfile.py": conanfile})
with tools.environment_append({"CONAN_RUN_TESTS": "1"}):
client.run("install .")
client.run("build .")
def test_global_tools_overrided(self):
client = TestClient()
conanfile = """
from conans import ConanFile, tools
class HelloConan(ConanFile):
name = "Hello"
version = "0.1"
def build(self):
assert(tools.net._global_requester != None)
assert(tools.files._global_output != None)
"""
client.save({"conanfile.py": conanfile})
client.run("install .")
client.run("build .")
# Not test the real commmand get_command if it's setting the module global vars
tmp = temp_folder()
conf = default_client_conf.replace("\n[proxies]", "\n[proxies]\nhttp = http://myproxy.com")
os.mkdir(os.path.join(tmp, ".conan"))
save(os.path.join(tmp, ".conan", CONAN_CONF), conf)
with tools.environment_append({"CONAN_USER_HOME": tmp}):
conan_api, _, _ = ConanAPIV1.factory()
conan_api.remote_list()
self.assertEquals(tools.net._global_requester.proxies, {"http": "http://myproxy.com"})
self.assertIsNotNone(tools.files._global_output.warn)
def test_environment_nested(self):
with tools.environment_append({"A": "1", "Z": "40"}):
with tools.environment_append({"A": "1", "B": "2"}):
with tools.environment_append({"A": "2", "B": "2"}):
self.assertEquals(os.getenv("A"), "2")
self.assertEquals(os.getenv("B"), "2")
self.assertEquals(os.getenv("Z"), "40")
self.assertEquals(os.getenv("A", None), "1")
self.assertEquals(os.getenv("B", None), "2")
self.assertEquals(os.getenv("A", None), "1")
self.assertEquals(os.getenv("Z", None), "40")
self.assertEquals(os.getenv("A", None), None)
self.assertEquals(os.getenv("B", None), None)
self.assertEquals(os.getenv("Z", None), None)
@unittest.skipUnless(platform.system() == "Windows", "Requires vswhere")
def msvc_build_command_test(self):
settings = Settings.loads(default_settings_yml)
settings.os = "Windows"
settings.compiler = "Visual Studio"
settings.compiler.version = "14"
# test build_type and arch override, for multi-config packages
cmd = tools.msvc_build_command(settings, "project.sln", build_type="Debug", arch="x86")
self.assertIn('msbuild "project.sln" /p:Configuration="Debug" /p:Platform="x86"', cmd)
self.assertIn('vcvarsall.bat', cmd)
# tests errors if args not defined
with self.assertRaisesRegexp(ConanException, "Cannot build_sln_command"):
tools.msvc_build_command(settings, "project.sln")
settings.arch = "x86"
with self.assertRaisesRegexp(ConanException, "Cannot build_sln_command"):
tools.msvc_build_command(settings, "project.sln")
# successful definition via settings
settings.build_type = "Debug"
cmd = tools.msvc_build_command(settings, "project.sln")
self.assertIn('msbuild "project.sln" /p:Configuration="Debug" /p:Platform="x86"', cmd)
self.assertIn('vcvarsall.bat', cmd)
@unittest.skipUnless(platform.system() == "Windows", "Requires vswhere")
def vswhere_description_strip_test(self):
myoutput = """
[
{
"instanceId": "17609d7c",
"installDate": "2018-06-11T02:15:04Z",
"installationName": "VisualStudio/15.7.3+27703.2026",
"installationPath": "",
"installationVersion": "15.7.27703.2026",
"productId": "Microsoft.VisualStudio.Product.Enterprise",
"productPath": "",
"isPrerelease": false,
"displayName": "Visual Studio Enterprise 2017",
"description": "生産性向上と、さまざまな規模のチーム間の調整のための Microsoft DevOps ソリューション",
"channelId": "VisualStudio.15.Release",
"channelUri": "https://aka.ms/vs/15/release/channel",
"enginePath": "",
"releaseNotes": "https://go.microsoft.com/fwlink/?LinkId=660692#15.7.3",
"thirdPartyNotices": "https://go.microsoft.com/fwlink/?LinkId=660708",
"updateDate": "2018-06-11T02:15:04.7009868Z",
"catalog": {
"buildBranch": "d15.7",
"buildVersion": "15.7.27703.2026",
"id": "VisualStudio/15.7.3+27703.2026",
"localBuild": "build-lab",
"manifestName": "VisualStudio",
"manifestType": "installer",
"productDisplayVersion": "15.7.3",
"productLine": "Dev15",
"productLineVersion": "2017",
"productMilestone": "RTW",
"productMilestoneIsPreRelease": "False",
"productName": "Visual Studio",
"productPatchVersion": "3",
"productPreReleaseMilestoneSuffix": "1.0",
"productRelease": "RTW",
"productSemanticVersion": "15.7.3+27703.2026",
"requiredEngineVersion": "1.16.1187.57215"
},
"properties": {
"campaignId": "",
"canceled": "0",
"channelManifestId": "VisualStudio.15.Release/15.7.3+27703.2026",
"nickname": "",
"setupEngineFilePath": ""
}
},
{
"instanceId": "VisualStudio.12.0",
"installationPath": "",
"installationVersion": "12.0"
}
]
"""
if six.PY3:
# In python3 the output from subprocess.check_output are bytes, not str
myoutput = myoutput.encode()
myrunner = mock_open()
myrunner.check_output = lambda x: myoutput
with patch('conans.client.tools.win.subprocess', myrunner):
json = vswhere()
self.assertNotIn("descripton", json)
def vcvars_echo_test(self):
if platform.system() != "Windows":
return
settings = Settings.loads(default_settings_yml)
settings.os = "Windows"
settings.compiler = "Visual Studio"
settings.compiler.version = "14"
cmd = tools.vcvars_command(settings)
output = TestBufferConanOutput()
runner = TestRunner(output)
runner(cmd + " && set vs140comntools")
self.assertIn("vcvarsall.bat", str(output))
self.assertIn("VS140COMNTOOLS=", str(output))
with tools.environment_append({"VisualStudioVersion": "14"}):
output = TestBufferConanOutput()
runner = TestRunner(output)
cmd = tools.vcvars_command(settings)
runner(cmd + " && set vs140comntools")
self.assertNotIn("vcvarsall.bat", str(output))
self.assertIn("Conan:vcvars already set", str(output))
self.assertIn("VS140COMNTOOLS=", str(output))
@unittest.skipUnless(platform.system() == "Windows", "Requires Windows")
def vcvars_amd64_32_cross_building_support_test(self):
# amd64_x86 crossbuilder
settings = Settings.loads(default_settings_yml)
settings.os = "Windows"
settings.compiler = "Visual Studio"
settings.compiler.version = "15"
settings.arch = "x86"
settings.arch_build = "x86_64"
cmd = tools.vcvars_command(settings)
self.assertIn('vcvarsall.bat" amd64_x86', cmd)
# It follows arch_build first
settings.arch_build = "x86"
cmd = tools.vcvars_command(settings)
self.assertIn('vcvarsall.bat" x86', cmd)
def vcvars_raises_when_not_found_test(self):
text = """
os: [Windows]
compiler:
Visual Studio:
version: ["5"]
"""
settings = Settings.loads(text)
settings.os = "Windows"
settings.compiler = "Visual Studio"
settings.compiler.version = "5"
with self.assertRaisesRegexp(ConanException, "VS non-existing installation: Visual Studio 5"):
tools.vcvars_command(settings)
@unittest.skipUnless(platform.system() == "Windows", "Requires Windows")
def vcvars_constrained_test(self):
text = """os: [Windows]
compiler:
Visual Studio:
version: ["14"]
"""
settings = Settings.loads(text)
settings.os = "Windows"
settings.compiler = "Visual Studio"
with self.assertRaisesRegexp(ConanException,
"compiler.version setting required for vcvars not defined"):
tools.vcvars_command(settings)
new_out = StringIO()
tools.set_global_instances(ConanOutput(new_out), None)
settings.compiler.version = "14"
with tools.environment_append({"vs140comntools": "path/to/fake"}):
tools.vcvars_command(settings)
with tools.environment_append({"VisualStudioVersion": "12"}):
with self.assertRaisesRegexp(ConanException,
"Error, Visual environment already set to 12"):
tools.vcvars_command(settings)
with tools.environment_append({"VisualStudioVersion": "12"}):
# Not raising
tools.vcvars_command(settings, force=True)
def vcvars_context_manager_test(self):
conanfile = """
from conans import ConanFile, tools
class MyConan(ConanFile):
name = "MyConan"
version = "0.1"
settings = "os", "compiler"
def build(self):
with tools.vcvars(self.settings, only_diff=True):
self.output.info("VCINSTALLDIR set to: " + str(tools.get_env("VCINSTALLDIR")))
"""
client = TestClient()
client.save({"conanfile.py": conanfile})
if platform.system() == "Windows":
client.run("create . conan/testing")
self.assertNotIn("VCINSTALLDIR set to: None", client.out)
else:
client.run("create . conan/testing")
self.assertIn("VCINSTALLDIR set to: None", client.out)
@unittest.skipUnless(platform.system() == "Windows", "Requires Windows")
def vcvars_dict_diff_test(self):
text = """
os: [Windows]
compiler:
Visual Studio:
version: ["14"]
"""
settings = Settings.loads(text)
settings.os = "Windows"
settings.compiler = "Visual Studio"
settings.compiler.version = "14"
with tools.environment_append({"MYVAR": "1"}):
ret = vcvars_dict(settings, only_diff=False)
self.assertIn("MYVAR", ret)
self.assertIn("VCINSTALLDIR", ret)
ret = vcvars_dict(settings)
self.assertNotIn("MYVAR", ret)
self.assertIn("VCINSTALLDIR", ret)
my_lib_paths = "C:\\PATH\TO\MYLIBS;C:\\OTHER_LIBPATH"
with tools.environment_append({"LIBPATH": my_lib_paths}):
ret = vcvars_dict(settings, only_diff=False)
str_var_value = os.pathsep.join(ret["LIBPATH"])
self.assertTrue(str_var_value.endswith(my_lib_paths))
# Now only a diff, it should return the values as a list, but without the old values
ret = vcvars_dict(settings, only_diff=True)
self.assertEquals(ret["LIBPATH"], str_var_value.split(os.pathsep)[0:-2])
# But if we apply both environments, they are composed correctly
with tools.environment_append(ret):
self.assertEquals(os.environ["LIBPATH"], str_var_value)
def vcvars_dict_test(self):
# https://github.com/conan-io/conan/issues/2904
output_with_newline_and_spaces = """__BEGINS__
PROCESSOR_ARCHITECTURE=AMD64
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 158 Stepping 9, GenuineIntel
PROCESSOR_LEVEL=6
PROCESSOR_REVISION=9e09
set nl=^
env_var=
without_equals_sign
ProgramFiles(x86)=C:\Program Files (x86)
""".encode("utf-8")
def vcvars_command_mock(settings, arch, compiler_version, force, vcvars_ver, winsdk_version): # @UnusedVariable
return "unused command"
def subprocess_check_output_mock(cmd, shell):
self.assertIn("unused command", cmd)
return output_with_newline_and_spaces
with mock.patch('conans.client.tools.win.vcvars_command', new=vcvars_command_mock):
with mock.patch('subprocess.check_output', new=subprocess_check_output_mock):
vcvars = tools.vcvars_dict(None, only_diff=False)
self.assertEqual(vcvars["PROCESSOR_ARCHITECTURE"], "AMD64")
self.assertEqual(vcvars["PROCESSOR_IDENTIFIER"], "Intel64 Family 6 Model 158 Stepping 9, GenuineIntel")
self.assertEqual(vcvars["PROCESSOR_LEVEL"], "6")
self.assertEqual(vcvars["PROCESSOR_REVISION"], "9e09")
self.assertEqual(vcvars["ProgramFiles(x86)"], "C:\Program Files (x86)")
def run_in_bash_test(self):
if platform.system() != "Windows":
return
class MockConanfile(object):
def __init__(self):
self.output = namedtuple("output", "info")(lambda x: None) # @UnusedVariable
self.env = {"PATH": "/path/to/somewhere"}
class MyRun(object):
def __call__(self, command, output, log_filepath=None,
cwd=None, subprocess=False): # @UnusedVariable
self.command = command
self._runner = MyRun()
conanfile = MockConanfile()
tools.run_in_windows_bash(conanfile, "a_command.bat", subsystem="cygwin")
self.assertIn("bash", conanfile._runner.command)
self.assertIn("--login -c", conanfile._runner.command)
self.assertIn("^&^& a_command.bat ^", conanfile._runner.command)
with tools.environment_append({"CONAN_BASH_PATH": "path\\to\\mybash.exe"}):
tools.run_in_windows_bash(conanfile, "a_command.bat", subsystem="cygwin")
self.assertIn('path\\to\\mybash.exe --login -c', conanfile._runner.command)
with tools.environment_append({"CONAN_BASH_PATH": "path with spaces\\to\\mybash.exe"}):
tools.run_in_windows_bash(conanfile, "a_command.bat", subsystem="cygwin")
self.assertIn('"path with spaces\\to\\mybash.exe" --login -c', conanfile._runner.command)
# try to append more env vars
conanfile = MockConanfile()
tools.run_in_windows_bash(conanfile, "a_command.bat", subsystem="cygwin", env={"PATH": "/other/path",
"MYVAR": "34"})
self.assertIn('^&^& PATH=\\^"/cygdrive/other/path:/cygdrive/path/to/somewhere:$PATH\\^" '
'^&^& MYVAR=34 ^&^& a_command.bat ^', conanfile._runner.command)
def download_retries_test(self):
http_server = StoppableThreadBottle()
with tools.chdir(tools.mkdir_tmp()):
with open("manual.html", "w") as fmanual:
fmanual.write("this is some content")
manual_file = os.path.abspath("manual.html")
from bottle import static_file, auth_basic
@http_server.server.get("/manual.html")
def get_manual():
return static_file(os.path.basename(manual_file),
os.path.dirname(manual_file))
def check_auth(user, password):
# Check user/password here
return user == "user" and password == "passwd"
@http_server.server.get('/basic-auth/<user>/<password>')
@auth_basic(check_auth)
def get_manual_auth(user, password):
return static_file(os.path.basename(manual_file),
os.path.dirname(manual_file))
http_server.run_server()
out = TestBufferConanOutput()
set_global_instances(out, requests)
# Connection error
with self.assertRaisesRegexp(ConanException, "HTTPConnectionPool"):
tools.download("http://fakeurl3.es/nonexists",
os.path.join(temp_folder(), "file.txt"), out=out,
retry=3, retry_wait=0)
# Not found error
self.assertEquals(str(out).count("Waiting 0 seconds to retry..."), 2)
with self.assertRaisesRegexp(NotFoundException, "Not found: "):
tools.download("https://github.com/conan-io/conan/blob/develop/FILE_NOT_FOUND.txt",
os.path.join(temp_folder(), "README.txt"), out=out,
retry=3, retry_wait=0)
# And OK
dest = os.path.join(temp_folder(), "manual.html")
tools.download("http://localhost:%s/manual.html" % http_server.port, dest, out=out, retry=3,
retry_wait=0)
self.assertTrue(os.path.exists(dest))
content = load(dest)
# overwrite = False
with self.assertRaises(ConanException):
tools.download("http://localhost:%s/manual.html" % http_server.port, dest, out=out,
retry=3, retry_wait=0, overwrite=False)
# overwrite = True
tools.download("http://localhost:%s/manual.html" % http_server.port, dest, out=out, retry=3,
retry_wait=0, overwrite=True)
self.assertTrue(os.path.exists(dest))
content_new = load(dest)
self.assertEqual(content, content_new)
# Not authorized
with self.assertRaises(ConanException):
tools.download("http://localhost:%s/basic-auth/user/passwd" % http_server.port, dest,
overwrite=True)
# Authorized
tools.download("http://localhost:%s/basic-auth/user/passwd" % http_server.port, dest,
auth=("user", "passwd"), overwrite=True)
# Authorized using headers
tools.download("http://localhost:%s/basic-auth/user/passwd" % http_server.port, dest,
headers={"Authorization": "Basic dXNlcjpwYXNzd2Q="}, overwrite=True)
http_server.stop()
def get_gnu_triplet_test(self):
def get_values(this_os, this_arch, setting_os, setting_arch, compiler=None):
build = tools.get_gnu_triplet(this_os, this_arch, compiler)
host = tools.get_gnu_triplet(setting_os, setting_arch, compiler)
return build, host
build, host = get_values("Linux", "x86_64", "Linux", "armv7hf")
self.assertEquals(build, "x86_64-linux-gnu")
self.assertEquals(host, "arm-linux-gnueabihf")
build, host = get_values("Linux", "x86", "Linux", "armv7hf")
self.assertEquals(build, "x86-linux-gnu")
self.assertEquals(host, "arm-linux-gnueabihf")
build, host = get_values("Linux", "x86_64", "Linux", "x86")
self.assertEquals(build, "x86_64-linux-gnu")
self.assertEquals(host, "x86-linux-gnu")
build, host = get_values("Linux", "x86_64", "Windows", "x86", compiler="gcc")
self.assertEquals(build, "x86_64-linux-gnu")
self.assertEquals(host, "i686-w64-mingw32")
build, host = get_values("Linux", "x86_64", "Windows", "x86", compiler="Visual Studio")
self.assertEquals(build, "x86_64-linux-gnu")
self.assertEquals(host, "i686-windows-msvc") # Not very common but exists sometimes
build, host = get_values("Linux", "x86_64", "Linux", "armv7hf")
self.assertEquals(build, "x86_64-linux-gnu")
self.assertEquals(host, "arm-linux-gnueabihf")
build, host = get_values("Linux", "x86_64", "Linux", "armv7")
self.assertEquals(build, "x86_64-linux-gnu")
self.assertEquals(host, "arm-linux-gnueabi")
build, host = get_values("Linux", "x86_64", "Linux", "armv6")
self.assertEquals(build, "x86_64-linux-gnu")
self.assertEquals(host, "arm-linux-gnueabi")
build, host = get_values("Linux", "x86_64", "Android", "x86")
self.assertEquals(build, "x86_64-linux-gnu")
self.assertEquals(host, "i686-linux-android")
build, host = get_values("Linux", "x86_64", "Android", "x86_64")
self.assertEquals(build, "x86_64-linux-gnu")
self.assertEquals(host, "x86_64-linux-android")
build, host = get_values("Linux", "x86_64", "Android", "armv7")
self.assertEquals(build, "x86_64-linux-gnu")
self.assertEquals(host, "arm-linux-androideabi")
build, host = get_values("Linux", "x86_64", "Android", "armv7hf")
self.assertEquals(build, "x86_64-linux-gnu")
self.assertEquals(host, "arm-linux-androideabi")
build, host = get_values("Linux", "x86_64", "Android", "armv8")
self.assertEquals(build, "x86_64-linux-gnu")
self.assertEquals(host, "aarch64-linux-android")
build, host = get_values("Linux", "x86_64", "Android", "armv6")
self.assertEquals(build, "x86_64-linux-gnu")
self.assertEquals(host, "arm-linux-androideabi")
build, host = get_values("Linux", "x86_64", "Windows", "x86", compiler="gcc")
self.assertEquals(build, "x86_64-linux-gnu")
self.assertEquals(host, "i686-w64-mingw32")
build, host = get_values("Linux", "x86_64", "Windows", "x86_64", compiler="gcc")
self.assertEquals(build, "x86_64-linux-gnu")
self.assertEquals(host, "x86_64-w64-mingw32")
build, host = get_values("Windows", "x86_64", "Windows", "x86", compiler="gcc")
self.assertEquals(build, "x86_64-w64-mingw32")
self.assertEquals(host, "i686-w64-mingw32")
build, host = get_values("Windows", "x86_64", "Linux", "armv7hf", compiler="gcc")
self.assertEquals(build, "x86_64-w64-mingw32")
self.assertEquals(host, "arm-linux-gnueabihf")