forked from conan-io/cmake-conan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.py
802 lines (685 loc) · 28.8 KB
/
tests.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
import unittest
import tempfile
import os
import platform
import shutil
import json
import textwrap
from nose.plugins.attrib import attr
def save(filename, content):
try:
os.makedirs(os.path.dirname(filename))
except:
pass
with open(filename, "w") as handle:
handle.write(content)
def run(cmd, ignore_errors=False):
retcode = os.system(cmd)
if retcode != 0 and not ignore_errors:
raise Exception("Command failed: %s" % cmd)
if platform.system() == "Windows":
generator = '-G "Visual Studio 15"'
else:
generator = '-G "Unix Makefiles"'
# TODO: Test Xcode
class CMakeConanTest(unittest.TestCase):
def setUp(self):
self.old_folder = os.getcwd()
CONAN_TEST_FOLDER = os.getenv('CONAN_TEST_FOLDER', None)
folder = tempfile.mkdtemp(suffix='conans', dir=CONAN_TEST_FOLDER)
shutil.copy2("conan.cmake", os.path.join(folder, "conan.cmake"))
shutil.copy2("main.cpp", os.path.join(folder, "main.cpp"))
os.chdir(folder)
folder = tempfile.mkdtemp(suffix="conan", dir=CONAN_TEST_FOLDER)
self.old_env = dict(os.environ)
os.environ.update({"CONAN_USER_HOME": folder})
def tearDown(self):
os.chdir(self.old_folder)
os.environ.clear()
os.environ.update(self.old_env)
# https://github.com/conan-io/cmake-conan/issues/159
@unittest.skipIf(platform.system() != "Darwin", "Error message appears just in Macos")
def test_macos_sysroot_warning(self):
content = textwrap.dedent("""
cmake_minimum_required(VERSION 2.8)
project(FormatOutput CXX)
set(CMAKE_CXX_STANDARD 11)
include(conan.cmake)
conan_cmake_run(REQUIRES fmt/6.1.2
BASIC_SETUP
BUILD missing)
add_executable(main main.cpp)
target_link_libraries(main ${CONAN_LIBS})
""")
save("CMakeLists.txt", content)
os.makedirs("build")
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release 2> stderr_output.txt" % generator)
with open('stderr_output.txt', 'r') as file:
data = file.read()
assert "#include_next <string.h>" not in data
def test_conan_add_remote(self):
content = textwrap.dedent("""
cmake_minimum_required(VERSION 2.8)
project(FormatOutput CXX)
include(conan.cmake)
conan_add_remote(NAME someremote
INDEX 0
URL http://someremote
VERIFY_SSL False)
""")
save("CMakeLists.txt", content)
os.makedirs("build")
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release" % generator)
run("conan remote list > output_remotes.txt")
with open('output_remotes.txt', 'r') as file:
data = file.read()
assert "someremote: http://someremote [Verify SSL: False]" in data
def test_global_update(self):
content = textwrap.dedent("""
set(CMAKE_CXX_COMPILER_WORKS 1)
set(CMAKE_CXX_ABI_COMPILED 1)
cmake_minimum_required(VERSION 2.8)
project(FormatOutput CXX)
add_definitions("-std=c++11")
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
include(conan.cmake)
conan_cmake_run(REQUIRES fmt/6.1.2
BASIC_SETUP
UPDATE
BUILD missing)
add_executable(main main.cpp)
target_link_libraries(main ${CONAN_LIBS})
""")
save("CMakeLists.txt", content)
os.makedirs("build")
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release" % generator)
run("cmake --build . --config Release")
cmd = os.sep.join([".", "bin", "main"])
run(cmd)
def test_existing_conanfile_py(self):
content = textwrap.dedent("""
set(CMAKE_CXX_COMPILER_WORKS 1)
set(CMAKE_CXX_ABI_COMPILED 1)
cmake_minimum_required(VERSION 2.8)
project(FormatOutput CXX)
add_definitions("-std=c++11")
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
include(conan.cmake)
conan_cmake_run(CONANFILE conan/conanfile.py
BASIC_SETUP CMAKE_TARGETS
BUILD missing
NO_IMPORTS
INSTALL_ARGS --update)
add_executable(main main.cpp)
target_link_libraries(main CONAN_PKG::fmt)
""")
save("CMakeLists.txt", content)
save("conan/conanfile.py", textwrap.dedent("""
from conans import ConanFile
class Pkg(ConanFile):
requires = "fmt/6.1.2"
generators = "cmake"
# Defining the settings is necessary now to cache them
settings = "os", "compiler", "arch", "build_type"
def imports(self):
raise Exception("BOOM!")
"""))
os.makedirs("build")
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release" % generator)
run("cmake --build . --config Release")
cmd = os.sep.join([".", "bin", "main"])
run(cmd)
def test_exported_package(self):
content = textwrap.dedent("""
set(CMAKE_CXX_COMPILER_WORKS 1)
set(CMAKE_CXX_ABI_COMPILED 1)
cmake_minimum_required(VERSION 2.8)
project(FormatOutput CXX)
add_definitions("-std=c++11")
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
set(CONAN_EXPORTED ON)
include(conan.cmake)
conan_cmake_run(CONANFILE conanfile.py
BASIC_SETUP CMAKE_TARGETS
BUILD missing)
add_executable(main main.cpp)
target_link_libraries(main CONAN_PKG::fmt)
""")
save("CMakeLists.txt", content)
save("conanfile.py", textwrap.dedent("""
from conans import ConanFile, CMake
class Pkg(ConanFile):
name = "Test"
version = "0.1"
requires = "fmt/6.1.2"
generators = "cmake"
exports = ["CMakeLists.txt", "conan.cmake", "main.cpp"]
settings = "os", "arch", "compiler", "build_type"
def build(self):
cmake = CMake(self)
self.run('cmake . ' + cmake.command_line)
self.run('cmake --build . ' + cmake.build_config)
"""))
run("conan export . test/testing")
os.makedirs("build")
os.chdir("build")
save("conanfile.txt", """[requires]
Test/0.1@test/testing""")
run("conan install . --build Test --build=missing")
run("conan remove -f Test/0.1@test/testing")
@attr("cmake39")
def test_vs_toolset_host_x64(self):
if platform.system() != "Windows":
return
content = textwrap.dedent("""
message(STATUS "COMPILING-------")
cmake_minimum_required(VERSION 2.8)
project(FormatOutput CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
include(conan.cmake)
conan_cmake_run(REQUIRES fmt/6.1.2
BASIC_SETUP
BUILD missing)
add_executable(main main.cpp)
target_link_libraries(main ${CONAN_LIBS})
""")
save("CMakeLists.txt", content)
os.makedirs("build")
os.chdir("build")
# Only works cmake>=3.9
run("cmake .. %s -T v140,host=x64 -DCMAKE_BUILD_TYPE=Release" % (generator))
run("cmake --build . --config Release")
cmd = os.sep.join([".", "bin", "main"])
run(cmd)
def test_arch(self):
content = textwrap.dedent("""
#set(CMAKE_CXX_COMPILER_WORKS 1)
#set(CMAKE_CXX_ABI_COMPILED 1)
message(STATUS "COMPILING-------")
cmake_minimum_required(VERSION 2.8)
project(FormatOutput CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
include(conan.cmake)
conan_cmake_run(BASIC_SETUP
BUILD missing
ARCH armv7)
if(NOT ${CONAN_SETTINGS_ARCH} STREQUAL "armv7")
message(FATAL_ERROR "ARCHITECTURE IS NOT armv7")
endif()
""")
save("CMakeLists.txt", content)
os.makedirs("build")
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release" % (generator))
def test_no_output_dir(self):
content = textwrap.dedent("""
set(CMAKE_CXX_COMPILER_WORKS 1)
set(CMAKE_CXX_ABI_COMPILED 1)
message(STATUS "COMPILING-------")
cmake_minimum_required(VERSION 2.8)
project(FormatOutput CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
include(conan.cmake)
conan_cmake_run(BASIC_SETUP
NO_OUTPUT_DIRS
BUILD missing)
if(CMAKE_RUNTIME_OUTPUT_DIRECTORY)
message(FATAL_ERROR "OUTPUT_DIRS ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}")
endif()
""")
save("CMakeLists.txt", content)
os.makedirs("build")
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release" % (generator))
def test_build_type(self):
content = textwrap.dedent("""
set(CMAKE_CXX_COMPILER_WORKS 1)
set(CMAKE_CXX_ABI_COMPILED 1)
message(STATUS "COMPILING-------")
cmake_minimum_required(VERSION 2.8)
project(FormatOutput CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
include(conan.cmake)
conan_cmake_run(BASIC_SETUP
BUILD_TYPE None)
if(NOT ${CONAN_SETTINGS_BUILD_TYPE} STREQUAL "None")
message(FATAL_ERROR "CMAKE BUILD TYPE is not None!")
endif()
""")
save("CMakeLists.txt", content)
os.makedirs("build")
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release" % (generator))
def test_settings(self):
content = textwrap.dedent("""
set(CMAKE_CXX_COMPILER_WORKS 1)
set(CMAKE_CXX_ABI_COMPILED 1)
message(STATUS "COMPILING-------")
cmake_minimum_required(VERSION 2.8)
project(FormatOutput CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
include(conan.cmake)
conan_cmake_run(BASIC_SETUP
SETTINGS arch=armv6
SETTINGS cppstd=14)
if(NOT ${CONAN_SETTINGS_ARCH} STREQUAL "armv6")
message(FATAL_ERROR "CONAN_SETTINGS_ARCH INCORRECT!")
endif()
if(NOT ${CONAN_SETTINGS_CPPSTD} STREQUAL "14")
message(FATAL_ERROR "CONAN_SETTINGS_CPPSTD INCORRECT!")
endif()
""")
save("CMakeLists.txt", content)
os.makedirs("build")
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release" % (generator))
# https://github.com/conan-io/cmake-conan/issues/255
# Manual settings were added in the end to automatic CMake settings, so they were not
# taken into account because only the first one was considered by CMake
# This tests that the settings list does only contain the manual specified setting once.
def test_settings_removed_from_autodetect(self):
if platform.system() == "Windows":
settings_check = "compiler.runtime"
custom_setting = "{}=MTd".format(settings_check)
else:
settings_check = "compiler.libcxx"
custom_setting = "{}=libstdc++".format(settings_check)
content = textwrap.dedent("""
cmake_minimum_required(VERSION 2.8)
project(FormatOutput CXX)
include(conan.cmake)
conan_cmake_run(BASIC_SETUP
SETTINGS {})
STRING(REGEX MATCHALL "{}" matches "${{settings}}")
list(LENGTH matches n_matches)
if(NOT n_matches EQUAL 1)
message(FATAL_ERROR "CONAN_SETTINGS DUPLICATED!")
endif()
""".format(custom_setting, settings_check))
save("CMakeLists.txt", content)
os.makedirs("build")
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release" % (generator))
def test_profile_auto(self):
content = textwrap.dedent("""
cmake_minimum_required(VERSION 2.8)
project(FormatOutput CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
set(CONAN_DISABLE_CHECK_COMPILER ON)
include(conan.cmake)
conan_cmake_run(BASIC_SETUP
PROFILE myprofile
PROFILE_AUTO build_type
PROFILE_AUTO compiler
)
if(NOT "${CONAN_SETTINGS_BUILD_TYPE}" STREQUAL "${CMAKE_BUILD_TYPE}")
message(FATAL_ERROR "CONAN_SETTINGS_BUILD_TYPE INCORRECT!")
endif()
if("${CONAN_SETTINGS_COMPILER}" STREQUAL "sun-cc")
message(FATAL_ERROR "CONAN_SETTINGS_COMPILER INCORRECT!")
endif()
if("${CONAN_SETTINGS_COMPILER_VERSION}" STREQUAL "12")
message(FATAL_ERROR "CONAN_SETTINGS_COMPILER_VERSION INCORRECT!")
endif()
if("${CONAN_SETTINGS_COMPILER_RUNTIME}" STREQUAL "MTd")
message(FATAL_ERROR "CONAN_SETTINGS_COMPILER_RUNTIME INCORRECT!")
endif()
""")
save("build/myprofile", textwrap.dedent("""
[settings]
build_type=RelWithDebInfo
compiler=sun-cc
compiler.version=5.10
"""))
save("CMakeLists.txt", content)
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release" % (generator))
run("cmake .. %s -DCMAKE_BUILD_TYPE=Debug" % (generator))
save("build/myprofile", textwrap.dedent("""
[settings]
build_type=RelWithDebInfo
compiler=Visual Studio
compiler.version=12
compiler.runtime=MTd
"""))
save("CMakeLists.txt", content)
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release" % (generator))
run("cmake .. %s -DCMAKE_BUILD_TYPE=Debug" % (generator))
def test_profile_auto_all(self):
content = textwrap.dedent("""
cmake_minimum_required(VERSION 2.8)
project(FormatOutput CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
set(CONAN_DISABLE_CHECK_COMPILER ON)
include(conan.cmake)
conan_cmake_run(BASIC_SETUP
PROFILE myprofile
PROFILE_AUTO ALL)
if("${CONAN_SETTINGS_BUILD_TYPE}" STREQUAL "RelWithDebInfo")
message(FATAL_ERROR "CONAN_SETTINGS_BUILD_TYPE INCORRECT!")
endif()
if("${CONAN_SETTINGS_COMPILER}" STREQUAL "sun-cc")
message(FATAL_ERROR "CONAN_SETTINGS_COMPILER INCORRECT!")
endif()
if("${CONAN_SETTINGS_COMPILER_VERSION}" STREQUAL "12")
message(FATAL_ERROR "CONAN_SETTINGS_COMPILER_VERSION INCORRECT!")
endif()
if("${CONAN_SETTINGS_COMPILER_RUNTIME}" STREQUAL "MTd")
message(FATAL_ERROR "CONAN_SETTINGS_COMPILER_RUNTIME INCORRECT!")
endif()
""")
save("build/myprofile", textwrap.dedent("""
[settings]
build_type=RelWithDebInfo
compiler=sun-cc
compiler.version=5.10
"""))
save("CMakeLists.txt", content)
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release" % (generator))
run("cmake .. %s -DCMAKE_BUILD_TYPE=Debug" % (generator))
save("build/myprofile", textwrap.dedent("""
[settings]
build_type=RelWithDebInfo
compiler=Visual Studio
compiler.version=12
compiler.runtime=MT
"""))
save("CMakeLists.txt", content)
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release" % (generator))
run("cmake .. %s -DCMAKE_BUILD_TYPE=Debug" % (generator))
def test_multi_profile(self):
content = textwrap.dedent("""
cmake_minimum_required(VERSION 2.8)
project(FormatOutput CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
set(CONAN_DISABLE_CHECK_COMPILER ON)
include(conan.cmake)
conan_cmake_run(BASIC_SETUP
PROFILE myprofile PROFILE myprofile2)
if(NOT "${CONAN_SETTINGS_COMPILER_VERSION}" STREQUAL "12")
message(FATAL_ERROR "CONAN_SETTINGS_COMPILER_VERSION INCORRECT!")
endif()
if(NOT "${CONAN_SETTINGS_COMPILER_RUNTIME}" STREQUAL "MTd")
message(FATAL_ERROR "CONAN_SETTINGS_COMPILER_RUNTIME INCORRECT!")
endif()
""")
save("build/myprofile", textwrap.dedent("""
[settings]
compiler=Visual Studio
compiler.version=15
compiler.runtime=MTd
"""))
save("build/myprofile2", textwrap.dedent("""
[settings]
compiler.version=12
"""))
save("CMakeLists.txt", content)
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release" % (generator))
run("cmake .. %s -DCMAKE_BUILD_TYPE=Debug" % (generator))
def test_conan_config_install(self):
remote_name = "test-remote"
remote_url = "https://test.test.test"
verify_ssl = False
content = textwrap.dedent("""
cmake_minimum_required(VERSION 2.8)
project(FormatOutput CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
set(CONAN_DISABLE_CHECK_COMPILER ON)
include(conan.cmake)
conan_config_install(ITEM \"${PROJECT_SOURCE_DIR}/config/\" VERIFY_SSL false)
""")
save("config/remotes.txt", "%s %s %r" % (remote_name, remote_url, verify_ssl))
save("CMakeLists.txt", content)
os.makedirs("build")
os.chdir("build")
run("cmake .. %s" % generator)
with open("%s/.conan/remotes.json" % os.environ["CONAN_USER_HOME"]) as json_file:
data = json.load(json_file)
assert len(data["remotes"]) == 1, "Invalid number of remotes"
remote = data["remotes"][0]
assert remote["name"] == remote_name, "Invalid remote name"
assert remote["url"] == remote_url, "Invalid remote url"
assert remote["verify_ssl"] == verify_ssl, "Invalid verify_ssl"
class LocalTests(unittest.TestCase):
@classmethod
def setUpClass(cls):
CONAN_TEST_FOLDER = os.getenv('CONAN_TEST_FOLDER', None)
folder = tempfile.mkdtemp(suffix="conan", dir=CONAN_TEST_FOLDER)
cls.old_env = dict(os.environ)
cls.old_folder = os.getcwd()
os.environ.update({"CONAN_USER_HOME": folder})
os.chdir(folder)
run("conan new hello/1.0 -s")
run("conan create .")
run("conan create . -s build_type=Debug")
if platform.system() == "Windows":
cls.generator = '-G "Visual Studio 15 Win64"'
else:
cls.generator = '-G "Unix Makefiles"'
def setUp(self):
CONAN_TEST_FOLDER = os.getenv('CONAN_TEST_FOLDER', None)
folder = tempfile.mkdtemp(suffix="conan", dir=CONAN_TEST_FOLDER)
shutil.copy2(os.path.join(self.old_folder, "conan.cmake"),
os.path.join(folder, "conan.cmake"))
os.chdir(folder)
content = textwrap.dedent("""
#include "hello.h"
int main(){
hello();
}
""")
save("main.cpp", content)
@classmethod
def tearDownClass(cls):
os.chdir(cls.old_folder)
os.environ.clear()
os.environ.update(cls.old_env)
def _build_multi(self, build_types):
os.makedirs("build")
os.chdir("build")
run("cmake .. %s" % self.generator)
for build_type in build_types:
run("cmake --build . --config %s" % build_type)
cmd = os.sep.join([".", build_type, "main"])
run(cmd)
def test_global(self):
content = textwrap.dedent("""
set(CMAKE_CXX_COMPILER_WORKS 1)
set(CMAKE_CXX_ABI_COMPILED 1)
cmake_minimum_required(VERSION 2.8)
project(HelloProject CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
include(conan.cmake)
conan_cmake_run(REQUIRES hello/1.0
BASIC_SETUP
BUILD missing)
add_executable(main main.cpp)
target_link_libraries(main ${CONAN_LIBS})
""")
save("CMakeLists.txt", content)
os.makedirs("build")
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release" % self.generator)
run("cmake --build . --config Release")
cmd = os.sep.join([".", "bin", "main"])
run(cmd)
def test_targets(self):
content = textwrap.dedent("""
set(CMAKE_CXX_COMPILER_WORKS 1)
set(CMAKE_CXX_ABI_COMPILED 1)
cmake_minimum_required(VERSION 2.8)
project(HelloProject CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
include(conan.cmake)
conan_cmake_run(REQUIRES hello/1.0
BASIC_SETUP CMAKE_TARGETS
BUILD missing)
add_executable(main main.cpp)
target_link_libraries(main CONAN_PKG::hello)
""")
save("CMakeLists.txt", content)
os.makedirs("build")
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release" % self.generator)
run("cmake --build . --config Release")
cmd = os.sep.join([".", "bin", "main"])
run(cmd)
def test_existing_conanfile(self):
content = textwrap.dedent("""
set(CMAKE_CXX_COMPILER_WORKS 1)
set(CMAKE_CXX_ABI_COMPILED 1)
cmake_minimum_required(VERSION 2.8)
project(ProjectHello CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
include(conan.cmake)
conan_cmake_run(CONANFILE conanfile.txt
BASIC_SETUP CMAKE_TARGETS
BUILD missing)
add_executable(main main.cpp)
target_link_libraries(main CONAN_PKG::hello)
""")
save("CMakeLists.txt", content)
save("conanfile.txt", "[requires]\nhello/1.0\n"
"[generators]\ncmake")
os.makedirs("build")
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release" % self.generator)
run("cmake --build . --config Release")
cmd = os.sep.join([".", "bin", "main"])
run(cmd)
def test_absolute_path_conanfile(self):
content = textwrap.dedent("""
set(CMAKE_CXX_COMPILER_WORKS 1)
set(CMAKE_CXX_ABI_COMPILED 1)
cmake_minimum_required(VERSION 2.8)
project(ProjectHello CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
include(conan.cmake)
conan_cmake_run(CONANFILE ${CMAKE_BINARY_DIR}/conanfile.txt
BASIC_SETUP CMAKE_TARGETS
BUILD missing)
add_executable(main main.cpp)
target_link_libraries(main CONAN_PKG::hello)
""")
save("CMakeLists.txt", content)
os.makedirs("build")
save("build/conanfile.txt", "[requires]\nhello/1.0\n"
"[generators]\ncmake")
os.chdir("build")
run("cmake .. %s -DCMAKE_BUILD_TYPE=Release" % self.generator)
run("cmake --build . --config Release")
cmd = os.sep.join([".", "bin", "main"])
run(cmd)
def test_version_in_cmake(self):
with open("conan.cmake", "r") as handle:
if "# version: " not in handle.read():
raise Exception("Version missing in conan.cmake")
@unittest.skipIf(platform.system() != "Windows", "toolsets only in Windows")
def test_vs_toolset(self):
content = textwrap.dedent("""
message(STATUS "COMPILING-------")
cmake_minimum_required(VERSION 2.8)
project(HelloProject CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
include(conan.cmake)
conan_cmake_run(REQUIRES hello/1.0
BASIC_SETUP
BUILD missing)
add_executable(main main.cpp)
target_link_libraries(main ${CONAN_LIBS})
""")
save("CMakeLists.txt", content)
os.makedirs("build")
os.chdir("build")
run("cmake .. %s -T v140 -DCMAKE_BUILD_TYPE=Release" % (self.generator))
run("cmake --build . --config Release")
cmd = os.sep.join([".", "bin", "main"])
run(cmd)
@unittest.skipIf(platform.system() != "Windows", "Multi-config only in Windows")
def test_multi(self):
content = textwrap.dedent("""
set(CMAKE_CXX_COMPILER_WORKS 1)
set(CMAKE_CXX_ABI_COMPILED 1)
cmake_minimum_required(VERSION 2.8)
project(HelloProject CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
include(conan.cmake)
conan_cmake_run(REQUIRES hello/1.0
BASIC_SETUP
BUILD missing)
add_executable(main main.cpp)
foreach(_LIB ${CONAN_LIBS_RELEASE})
target_link_libraries(main optimized ${_LIB})
endforeach()
foreach(_LIB ${CONAN_LIBS_DEBUG})
target_link_libraries(main debug ${_LIB})
endforeach()
""")
save("CMakeLists.txt", content)
self._build_multi(["Release", "Debug"])
@unittest.skipIf(platform.system() != "Windows", "Multi-config only in Windows")
def test_multi_configuration_types(self):
content = textwrap.dedent("""
set(CMAKE_CXX_COMPILER_WORKS 1)
set(CMAKE_CXX_ABI_COMPILED 1)
cmake_minimum_required(VERSION 2.8)
project(HelloProject CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
include(conan.cmake)
conan_cmake_run(REQUIRES hello/1.0
BASIC_SETUP
CONFIGURATION_TYPES "Release;Debug;RelWithDebInfo"
BUILD missing)
add_executable(main main.cpp)
foreach(_LIB ${CONAN_LIBS_RELEASE})
target_link_libraries(main optimized ${_LIB})
endforeach()
foreach(_LIB ${CONAN_LIBS_DEBUG})
target_link_libraries(main debug ${_LIB})
endforeach()
""")
save("CMakeLists.txt", content)
self._build_multi(["Release", "Debug", "RelWithDebInfo"])
@unittest.skipIf(platform.system() != "Windows", "Multi-config only in Windows")
def test_multi_targets(self):
content = textwrap.dedent("""
set(CMAKE_CXX_COMPILER_WORKS 1)
set(CMAKE_CXX_ABI_COMPILED 1)
cmake_minimum_required(VERSION 2.8)
project(ProjectHello CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
include(conan.cmake)
conan_cmake_run(REQUIRES hello/1.0
BASIC_SETUP CMAKE_TARGETS
BUILD missing)
add_executable(main main.cpp)
target_link_libraries(main CONAN_PKG::hello)
""")
save("CMakeLists.txt", content)
self._build_multi(["Release", "Debug"])
@unittest.skipIf(platform.system() != "Windows", "Multi-config only in Windows")
def test_multi_targets_configuration_types(self):
content = textwrap.dedent("""
set(CMAKE_CXX_COMPILER_WORKS 1)
set(CMAKE_CXX_ABI_COMPILED 1)
cmake_minimum_required(VERSION 2.8)
project(HelloProject CXX)
message(STATUS "CMAKE VERSION: ${CMAKE_VERSION}")
include(conan.cmake)
conan_cmake_run(REQUIRES hello/1.0
BASIC_SETUP CMAKE_TARGETS
CONFIGURATION_TYPES "Release;Debug;RelWithDebInfo"
BUILD missing)
add_executable(main main.cpp)
target_link_libraries(main CONAN_PKG::hello)
""")
save("CMakeLists.txt", content)
self._build_multi(["Release", "Debug", "RelWithDebInfo"])