20
20
from hamcrest import ( assert_that ,
21
21
calling ,
22
22
contains_exactly ,
23
+ matches_regexp ,
23
24
empty ,
24
25
equal_to ,
25
26
raises )
30
31
from ycmd .completers .cpp import flags
31
32
from ycmd .completers .cpp .flags import ShouldAllowWinStyleFlags , INCLUDE_FLAGS
32
33
from ycmd .tests .test_utils import ( MacOnly , TemporaryTestDir , WindowsOnly ,
33
- TemporaryClangProject )
34
+ TemporaryClangProject , UnixOnly )
34
35
from ycmd .tests .clang import setUpModule # noqa
35
36
from ycmd .utils import CLANG_RESOURCE_DIR
36
37
from ycmd .responses import NoExtraConfDetected
@@ -1424,8 +1425,7 @@ def test_CompilationDatabase_UseFlagsFromSameDir( self ):
1424
1425
'-x' ,
1425
1426
'c++' ,
1426
1427
'--driver-mode=g++' ,
1427
- '-Wall' ,
1428
- '--' ),
1428
+ '-Wall' ),
1429
1429
os .path .join ( tmp_dir , 'test1.cc' )
1430
1430
)
1431
1431
)
@@ -1441,8 +1441,7 @@ def test_CompilationDatabase_UseFlagsFromSameDir( self ):
1441
1441
'-x' ,
1442
1442
'c++' ,
1443
1443
'--driver-mode=g++' ,
1444
- '-Wall' ,
1445
- '--' ),
1444
+ '-Wall' ),
1446
1445
os .path .join ( tmp_dir , 'some_dir' , 'test1.cc' )
1447
1446
)
1448
1447
)
@@ -1472,8 +1471,40 @@ def test_CompilationDatabase_HeaderFile_SameNameAsSourceFile( self ):
1472
1471
'--driver-mode=g++' ,
1473
1472
'-Wall' ,
1474
1473
'-x' ,
1475
- 'c++-header' ,
1476
- '--' ) )
1474
+ 'c++-header' ) )
1475
+
1476
+
1477
+ @UnixOnly
1478
+ def test_CompilationDatabase_HeaderFile_SameNameAsSourceFile_ExtraClang (
1479
+ self ):
1480
+ with TemporaryTestDir () as tmp_dir :
1481
+ compile_commands = [
1482
+ {
1483
+ 'directory' : tmp_dir ,
1484
+ 'command' : 'clang++ -x c++ -Wall' ,
1485
+ 'file' : os .path .join ( tmp_dir , 'test.cc' ),
1486
+ },
1487
+ ]
1488
+
1489
+ with patch ( 'ycmd.completers.cpp.flags.OnMac' , return_value = False ):
1490
+ with TemporaryClangProject ( tmp_dir , compile_commands ):
1491
+ # If we ask for a header file with the same name as a source file, it
1492
+ # returns the flags of that cc file (and a special language flag for
1493
+ # C++ # headers). It also includes a trailing `--` flag which breaks
1494
+ # our "add_extra_clang_flags", so test here that works correctly.
1495
+ assert_that (
1496
+ flags .Flags ().FlagsForFile (
1497
+ os .path .join ( tmp_dir , 'test.h' ),
1498
+ add_extra_clang_flags = True )[ 0 ],
1499
+ contains_exactly ( 'clang++' ,
1500
+ '-x' ,
1501
+ 'c++' ,
1502
+ '--driver-mode=g++' ,
1503
+ '-Wall' ,
1504
+ '-x' ,
1505
+ 'c++-header' ,
1506
+ matches_regexp ( '-resource-dir=.*' ),
1507
+ '-fspell-checking' ) )
1477
1508
1478
1509
1479
1510
def test_CompilationDatabase_HeaderFile_DifferentNameFromSourceFile ( self ):
@@ -1500,8 +1531,7 @@ def test_CompilationDatabase_HeaderFile_DifferentNameFromSourceFile( self ):
1500
1531
'--driver-mode=g++' ,
1501
1532
'-Wall' ,
1502
1533
'-x' ,
1503
- 'c++-header' ,
1504
- '--' ) )
1534
+ 'c++-header' ) )
1505
1535
1506
1536
1507
1537
def test_CompilationDatabase_ExplicitHeaderFileEntry ( self ):
@@ -1553,8 +1583,7 @@ def test_CompilationDatabase_CUDALanguageFlags( self ):
1553
1583
'--driver-mode=g++' ,
1554
1584
'-Wall' ,
1555
1585
'-x' ,
1556
- 'cuda' ,
1557
- '--' ) )
1586
+ 'cuda' ) )
1558
1587
1559
1588
1560
1589
def test_MakeRelativePathsInFlagsAbsolute ( self ):
0 commit comments