1 //===- unittest/Format/SortIncludesTest.cpp - Include sort unit tests -----===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "FormatTestUtils.h"
10 #include "clang/Format/Format.h"
11 #include "llvm/ADT/StringRef.h"
12 #include "llvm/Support/Debug.h"
13 #include "gtest/gtest.h"
15 #define DEBUG_TYPE "format-test"
21 class SortIncludesTest
: public ::testing::Test
{
23 std::vector
<tooling::Range
> GetCodeRange(StringRef Code
) {
24 return std::vector
<tooling::Range
>(1, tooling::Range(0, Code
.size()));
27 std::string
sort(StringRef Code
, std::vector
<tooling::Range
> Ranges
,
28 StringRef FileName
= "input.cc",
29 unsigned ExpectedNumRanges
= 1) {
30 auto Replaces
= sortIncludes(FmtStyle
, Code
, Ranges
, FileName
);
31 Ranges
= tooling::calculateRangesAfterReplacements(Replaces
, Ranges
);
32 EXPECT_EQ(ExpectedNumRanges
, Replaces
.size());
33 auto Sorted
= applyAllReplacements(Code
, Replaces
);
34 EXPECT_TRUE(static_cast<bool>(Sorted
));
35 auto Result
= applyAllReplacements(
36 *Sorted
, reformat(FmtStyle
, *Sorted
, Ranges
, FileName
));
37 EXPECT_TRUE(static_cast<bool>(Result
));
41 std::string
sort(StringRef Code
, StringRef FileName
= "input.cpp",
42 unsigned ExpectedNumRanges
= 1) {
43 return sort(Code
, GetCodeRange(Code
), FileName
, ExpectedNumRanges
);
46 unsigned newCursor(llvm::StringRef Code
, unsigned Cursor
) {
47 sortIncludes(FmtStyle
, Code
, GetCodeRange(Code
), "input.cpp", &Cursor
);
51 FormatStyle FmtStyle
= getLLVMStyle();
52 tooling::IncludeStyle
&Style
= FmtStyle
.IncludeStyle
;
55 TEST_F(SortIncludesTest
, BasicSorting
) {
56 EXPECT_EQ("#include \"a.h\"\n"
59 sort("#include \"a.h\"\n"
63 EXPECT_EQ("// comment\n"
69 {tooling::Range(25, 1)}));
72 TEST_F(SortIncludesTest
, TrailingComments
) {
73 EXPECT_EQ("#include \"a.h\"\n"
74 "#include \"b.h\" /* long\n"
79 sort("#include \"a.h\"\n"
81 "#include \"b.h\" /* long\n"
87 TEST_F(SortIncludesTest
, SortedIncludesUsingSortPriorityAttribute
) {
88 FmtStyle
.IncludeStyle
.IncludeBlocks
= tooling::IncludeStyle::IBS_Regroup
;
89 FmtStyle
.IncludeStyle
.IncludeCategories
= {
90 {"^<sys/param\\.h>", 1, 0, false},
91 {"^<sys/types\\.h>", 1, 1, false},
92 {"^<sys.*/", 1, 2, false},
93 {"^<uvm/", 2, 3, false},
94 {"^<machine/", 3, 4, false},
95 {"^<dev/", 4, 5, false},
96 {"^<net.*/", 5, 6, false},
97 {"^<protocols/", 5, 7, false},
98 {"^<(fs|miscfs|msdosfs|nfs|ntfs|ufs)/", 6, 8, false},
99 {"^<(x86|amd64|i386|xen)/", 7, 8, false},
100 {"<path", 9, 11, false},
101 {"^<[^/].*\\.h>", 8, 10, false},
102 {"^\".*\\.h\"", 10, 12, false}};
103 EXPECT_EQ("#include <sys/param.h>\n"
104 "#include <sys/types.h>\n"
105 "#include <sys/ioctl.h>\n"
106 "#include <sys/socket.h>\n"
107 "#include <sys/stat.h>\n"
108 "#include <sys/wait.h>\n"
110 "#include <net/if.h>\n"
111 "#include <net/if_dl.h>\n"
112 "#include <net/route.h>\n"
113 "#include <netinet/in.h>\n"
114 "#include <protocols/rwhod.h>\n"
116 "#include <assert.h>\n"
117 "#include <errno.h>\n"
118 "#include <inttypes.h>\n"
119 "#include <stdio.h>\n"
120 "#include <stdlib.h>\n"
122 "#include <paths.h>\n"
124 "#include \"pathnames.h\"",
125 sort("#include <sys/param.h>\n"
126 "#include <sys/types.h>\n"
127 "#include <sys/ioctl.h>\n"
128 "#include <net/if_dl.h>\n"
129 "#include <net/route.h>\n"
130 "#include <netinet/in.h>\n"
131 "#include <sys/socket.h>\n"
132 "#include <sys/stat.h>\n"
133 "#include <sys/wait.h>\n"
134 "#include <net/if.h>\n"
135 "#include <protocols/rwhod.h>\n"
136 "#include <assert.h>\n"
137 "#include <paths.h>\n"
138 "#include \"pathnames.h\"\n"
139 "#include <errno.h>\n"
140 "#include <inttypes.h>\n"
141 "#include <stdio.h>\n"
142 "#include <stdlib.h>"));
144 TEST_F(SortIncludesTest
, SortPriorityNotDefined
) {
145 FmtStyle
= getLLVMStyle();
146 EXPECT_EQ("#include \"FormatTestUtils.h\"\n"
147 "#include \"clang/Format/Format.h\"\n"
148 "#include \"llvm/ADT/None.h\"\n"
149 "#include \"llvm/Support/Debug.h\"\n"
150 "#include \"gtest/gtest.h\"",
151 sort("#include \"clang/Format/Format.h\"\n"
152 "#include \"llvm/ADT/None.h\"\n"
153 "#include \"FormatTestUtils.h\"\n"
154 "#include \"gtest/gtest.h\"\n"
155 "#include \"llvm/Support/Debug.h\""));
158 TEST_F(SortIncludesTest
, NoReplacementsForValidIncludes
) {
159 // Identical #includes have led to a failure with an unstable sort.
160 std::string Code
= "#include <a>\n"
166 EXPECT_TRUE(sortIncludes(FmtStyle
, Code
, GetCodeRange(Code
), "a.cc").empty());
169 TEST_F(SortIncludesTest
, MainFileHeader
) {
170 std::string Code
= "#include <string>\n"
172 "#include \"a/extra_action.proto.h\"\n";
173 FmtStyle
= getGoogleStyle(FormatStyle::LK_Cpp
);
175 sortIncludes(FmtStyle
, Code
, GetCodeRange(Code
), "a/extra_action.cc")
178 EXPECT_EQ("#include \"foo.bar.h\"\n"
181 sort("#include \"a.h\"\n"
182 "#include \"foo.bar.h\"",
186 TEST_F(SortIncludesTest
, SortedIncludesInMultipleBlocksAreMerged
) {
187 Style
.IncludeBlocks
= tooling::IncludeStyle::IBS_Merge
;
188 EXPECT_EQ("#include \"a.h\"\n"
191 sort("#include \"a.h\"\n"
195 "#include \"b.h\""));
197 Style
.IncludeBlocks
= tooling::IncludeStyle::IBS_Regroup
;
198 EXPECT_EQ("#include \"a.h\"\n"
201 sort("#include \"a.h\"\n"
205 "#include \"b.h\""));
208 TEST_F(SortIncludesTest
, SupportClangFormatOff
) {
209 EXPECT_EQ("#include <a>\n"
212 "// clang-format off\n"
216 "// clang-format on",
217 sort("#include <b>\n"
220 "// clang-format off\n"
224 "// clang-format on"));
226 Style
.IncludeBlocks
= Style
.IBS_Merge
;
227 std::string Code
= "// clang-format off\r\n"
228 "#include \"d.h\"\r\n"
229 "#include \"b.h\"\r\n"
230 "// clang-format on\r\n"
232 "#include \"c.h\"\r\n"
233 "#include \"a.h\"\r\n"
234 "#include \"e.h\"\r\n";
236 std::string Expected
= "// clang-format off\r\n"
237 "#include \"d.h\"\r\n"
238 "#include \"b.h\"\r\n"
239 "// clang-format on\r\n"
241 "#include \"e.h\"\r\n"
242 "#include \"a.h\"\r\n"
243 "#include \"c.h\"\r\n";
245 EXPECT_EQ(Expected
, sort(Code
, "e.cpp", 1));
248 TEST_F(SortIncludesTest
, SupportClangFormatOffCStyle
) {
249 EXPECT_EQ("#include <a>\n"
252 "/* clang-format off */\n"
256 "/* clang-format on */",
257 sort("#include <b>\n"
260 "/* clang-format off */\n"
264 "/* clang-format on */"));
266 // Not really turning it off
267 EXPECT_EQ("#include <a>\n"
270 "/* clang-format offically */\n"
274 "/* clang-format onwards */",
275 sort("#include <b>\n"
278 "/* clang-format offically */\n"
282 "/* clang-format onwards */",
286 TEST_F(SortIncludesTest
, IncludeSortingCanBeDisabled
) {
287 FmtStyle
.SortIncludes
= FormatStyle::SI_Never
;
288 EXPECT_EQ("#include \"a.h\"\n"
291 sort("#include \"a.h\"\n"
297 TEST_F(SortIncludesTest
, MixIncludeAndImport
) {
298 EXPECT_EQ("#include \"a.h\"\n"
301 sort("#include \"a.h\"\n"
306 TEST_F(SortIncludesTest
, FixTrailingComments
) {
307 EXPECT_EQ("#include \"a.h\" // comment\n"
308 "#include \"bb.h\" // comment\n"
309 "#include \"ccc.h\"",
310 sort("#include \"a.h\" // comment\n"
311 "#include \"ccc.h\"\n"
312 "#include \"bb.h\" // comment"));
315 TEST_F(SortIncludesTest
, LeadingWhitespace
) {
316 EXPECT_EQ("#include \"a.h\"\n"
319 sort(" #include \"a.h\"\n"
320 " #include \"c.h\"\n"
321 " #include \"b.h\""));
322 EXPECT_EQ("#include \"a.h\"\n"
325 sort("# include \"a.h\"\n"
326 "# include \"c.h\"\n"
327 "# include \"b.h\""));
328 EXPECT_EQ("#include \"a.h\"", sort("#include \"a.h\"\n"
329 " #include \"a.h\""));
332 TEST_F(SortIncludesTest
, TrailingWhitespace
) {
333 EXPECT_EQ("#include \"a.h\"\n"
336 sort("#include \"a.h\" \n"
337 "#include \"c.h\" \n"
338 "#include \"b.h\" "));
339 EXPECT_EQ("#include \"a.h\"", sort("#include \"a.h\"\n"
340 "#include \"a.h\" "));
343 TEST_F(SortIncludesTest
, GreaterInComment
) {
344 EXPECT_EQ("#include \"a.h\"\n"
345 "#include \"b.h\" // >\n"
347 sort("#include \"a.h\"\n"
349 "#include \"b.h\" // >"));
352 TEST_F(SortIncludesTest
, SortsLocallyInEachBlock
) {
353 EXPECT_EQ("#include \"a.h\"\n"
357 sort("#include \"a.h\"\n"
364 TEST_F(SortIncludesTest
, SortsAllBlocksWhenMerging
) {
365 Style
.IncludeBlocks
= tooling::IncludeStyle::IBS_Merge
;
366 EXPECT_EQ("#include \"a.h\"\n"
369 sort("#include \"a.h\"\n"
372 "#include \"b.h\""));
375 TEST_F(SortIncludesTest
, CommentsAlwaysSeparateGroups
) {
376 EXPECT_EQ("#include \"a.h\"\n"
380 sort("#include \"c.h\"\n"
383 "#include \"b.h\""));
385 Style
.IncludeBlocks
= tooling::IncludeStyle::IBS_Merge
;
386 EXPECT_EQ("#include \"a.h\"\n"
390 sort("#include \"c.h\"\n"
393 "#include \"b.h\""));
395 Style
.IncludeBlocks
= tooling::IncludeStyle::IBS_Regroup
;
396 EXPECT_EQ("#include \"a.h\"\n"
400 sort("#include \"c.h\"\n"
403 "#include \"b.h\""));
406 TEST_F(SortIncludesTest
, HandlesAngledIncludesAsSeparateBlocks
) {
407 EXPECT_EQ("#include \"a.h\"\n"
413 sort("#include <vector>\n"
418 "#include \"a.h\""));
420 FmtStyle
= getGoogleStyle(FormatStyle::LK_Cpp
);
421 EXPECT_EQ("#include <b.h>\n"
425 "#include <vector>\n"
429 sort("#include <vector>\n"
434 "#include \"a.h\""));
437 TEST_F(SortIncludesTest
, RegroupsAngledIncludesInSeparateBlocks
) {
438 Style
.IncludeBlocks
= tooling::IncludeStyle::IBS_Regroup
;
439 EXPECT_EQ("#include \"a.h\"\n"
444 sort("#include <d.h>\n"
447 "#include \"a.h\""));
450 TEST_F(SortIncludesTest
, HandlesMultilineIncludes
) {
451 EXPECT_EQ("#include \"a.h\"\n"
454 sort("#include \"a.h\"\n"
457 "#include \"b.h\""));
460 TEST_F(SortIncludesTest
, HandlesTrailingCommentsWithAngleBrackets
) {
461 // Regression test from the discussion at https://reviews.llvm.org/D121370.
462 EXPECT_EQ("#include <cstdint>\n"
464 "#include \"util/bar.h\"\n"
465 "#include \"util/foo/foo.h\" // foo<T>",
466 sort("#include <cstdint>\n"
468 "#include \"util/bar.h\"\n"
469 "#include \"util/foo/foo.h\" // foo<T>",
470 /*FileName=*/"input.cc",
471 /*ExpectedNumRanges=*/0));
474 TEST_F(SortIncludesTest
, LeavesMainHeaderFirst
) {
475 Style
.IncludeIsMainRegex
= "([-_](test|unittest))?$";
476 EXPECT_EQ("#include \"llvm/a.h\"\n"
479 sort("#include \"llvm/a.h\"\n"
483 EXPECT_EQ("#include \"llvm/a.h\"\n"
486 sort("#include \"llvm/a.h\"\n"
490 EXPECT_EQ("#include \"llvm/input.h\"\n"
493 sort("#include \"llvm/input.h\"\n"
498 // Don't allow prefixes.
499 EXPECT_EQ("#include \"b.h\"\n"
501 "#include \"llvm/not_a.h\"",
502 sort("#include \"llvm/not_a.h\"\n"
507 // Don't do this for _main and other suffixes.
508 EXPECT_EQ("#include \"b.h\"\n"
510 "#include \"llvm/a.h\"",
511 sort("#include \"llvm/a.h\"\n"
516 // Don't do this in headers.
517 EXPECT_EQ("#include \"b.h\"\n"
519 "#include \"llvm/a.h\"",
520 sort("#include \"llvm/a.h\"\n"
525 // Only do this in the first #include block.
526 EXPECT_EQ("#include <a>\n"
530 "#include \"llvm/a.h\"",
531 sort("#include <a>\n"
533 "#include \"llvm/a.h\"\n"
538 // Only recognize the first #include with a matching basename as main include.
539 EXPECT_EQ("#include \"a.h\"\n"
542 "#include \"llvm/a.h\"",
543 sort("#include \"b.h\"\n"
546 "#include \"llvm/a.h\"",
550 TEST_F(SortIncludesTest
, LeavesMainHeaderFirstInAdditionalExtensions
) {
551 Style
.IncludeIsMainRegex
= "([-_](test|unittest))?|(Impl)?$";
552 EXPECT_EQ("#include \"b.h\"\n"
554 "#include \"llvm/a.h\"",
555 sort("#include \"llvm/a.h\"\n"
559 EXPECT_EQ("#include \"b.h\"\n"
561 "#include \"llvm/a.h\"",
562 sort("#include \"llvm/a.h\"\n"
567 // .cpp extension is considered "main" by default
568 EXPECT_EQ("#include \"llvm/a.h\"\n"
571 sort("#include \"llvm/a.h\"\n"
575 EXPECT_EQ("#include \"llvm/a.h\"\n"
578 sort("#include \"llvm/a.h\"\n"
583 // Allow additional filenames / extensions
584 Style
.IncludeIsMainSourceRegex
= "(Impl\\.hpp)|(\\.xxx)$";
585 EXPECT_EQ("#include \"llvm/a.h\"\n"
588 sort("#include \"llvm/a.h\"\n"
592 EXPECT_EQ("#include \"llvm/a.h\"\n"
595 sort("#include \"llvm/a.h\"\n"
601 TEST_F(SortIncludesTest
, RecognizeMainHeaderInAllGroups
) {
602 Style
.IncludeIsMainRegex
= "([-_](test|unittest))?$";
603 Style
.IncludeBlocks
= tooling::IncludeStyle::IBS_Merge
;
605 EXPECT_EQ("#include \"c.h\"\n"
608 sort("#include \"b.h\"\n"
615 TEST_F(SortIncludesTest
, MainHeaderIsSeparatedWhenRegroupping
) {
616 Style
.IncludeIsMainRegex
= "([-_](test|unittest))?$";
617 Style
.IncludeBlocks
= tooling::IncludeStyle::IBS_Regroup
;
619 EXPECT_EQ("#include \"a.h\"\n"
623 sort("#include \"b.h\"\n"
630 TEST_F(SortIncludesTest
, SupportOptionalCaseSensitiveSorting
) {
631 EXPECT_FALSE(FmtStyle
.SortIncludes
== FormatStyle::SI_CaseInsensitive
);
633 FmtStyle
.SortIncludes
= FormatStyle::SI_CaseInsensitive
;
635 EXPECT_EQ("#include \"A/B.h\"\n"
636 "#include \"A/b.h\"\n"
637 "#include \"a/b.h\"\n"
638 "#include \"B/A.h\"\n"
639 "#include \"B/a.h\"",
640 sort("#include \"B/a.h\"\n"
641 "#include \"B/A.h\"\n"
642 "#include \"A/B.h\"\n"
643 "#include \"a/b.h\"\n"
644 "#include \"A/b.h\"",
647 Style
.IncludeBlocks
= clang::tooling::IncludeStyle::IBS_Regroup
;
648 Style
.IncludeCategories
= {
649 {"^\"", 1, 0, false}, {"^<.*\\.h>$", 2, 0, false}, {"^<", 3, 0, false}};
651 StringRef UnsortedCode
= "#include \"qt.h\"\n"
652 "#include <algorithm>\n"
653 "#include <qtwhatever.h>\n"
654 "#include <Qtwhatever.h>\n"
655 "#include <Algorithm>\n"
656 "#include \"vlib.h\"\n"
657 "#include \"Vlib.h\"\n"
658 "#include \"AST.h\"";
660 EXPECT_EQ("#include \"AST.h\"\n"
661 "#include \"qt.h\"\n"
662 "#include \"Vlib.h\"\n"
663 "#include \"vlib.h\"\n"
665 "#include <Qtwhatever.h>\n"
666 "#include <qtwhatever.h>\n"
668 "#include <Algorithm>\n"
669 "#include <algorithm>",
673 TEST_F(SortIncludesTest
, SupportCaseInsensitiveMatching
) {
674 // Setup an regex for main includes so we can cover those as well.
675 Style
.IncludeIsMainRegex
= "([-_](test|unittest))?$";
677 // Ensure both main header detection and grouping work in a case insensitive
679 EXPECT_EQ("#include \"llvm/A.h\"\n"
682 "#include \"LLVM/z.h\"\n"
683 "#include \"llvm/X.h\"\n"
684 "#include \"GTest/GTest.h\"\n"
685 "#include \"gmock/gmock.h\"",
686 sort("#include \"c.h\"\n"
688 "#include \"GTest/GTest.h\"\n"
689 "#include \"llvm/A.h\"\n"
690 "#include \"gmock/gmock.h\"\n"
691 "#include \"llvm/X.h\"\n"
692 "#include \"LLVM/z.h\"",
696 TEST_F(SortIncludesTest
, SupportOptionalCaseSensitiveMachting
) {
697 Style
.IncludeBlocks
= clang::tooling::IncludeStyle::IBS_Regroup
;
698 Style
.IncludeCategories
= {{"^\"", 1, 0, false},
699 {"^<.*\\.h>$", 2, 0, false},
700 {"^<Q[A-Z][^\\.]*>", 3, 0, false},
701 {"^<Qt[^\\.]*>", 4, 0, false},
702 {"^<", 5, 0, false}};
704 StringRef UnsortedCode
= "#include <QWidget>\n"
705 "#include \"qt.h\"\n"
706 "#include <algorithm>\n"
707 "#include <windows.h>\n"
708 "#include <QLabel>\n"
709 "#include \"qa.h\"\n"
711 "#include <qtwhatever.h>\n"
712 "#include <QtGlobal>";
714 EXPECT_EQ("#include \"qa.h\"\n"
715 "#include \"qt.h\"\n"
717 "#include <qtwhatever.h>\n"
718 "#include <windows.h>\n"
720 "#include <QLabel>\n"
721 "#include <QWidget>\n"
722 "#include <QtGlobal>\n"
725 "#include <algorithm>",
728 Style
.IncludeCategories
[2].RegexIsCaseSensitive
= true;
729 Style
.IncludeCategories
[3].RegexIsCaseSensitive
= true;
730 EXPECT_EQ("#include \"qa.h\"\n"
731 "#include \"qt.h\"\n"
733 "#include <qtwhatever.h>\n"
734 "#include <windows.h>\n"
736 "#include <QLabel>\n"
737 "#include <QWidget>\n"
739 "#include <QtGlobal>\n"
741 "#include <algorithm>\n"
746 TEST_F(SortIncludesTest
, NegativePriorities
) {
747 Style
.IncludeCategories
= {{".*important_os_header.*", -1, 0, false},
748 {".*", 1, 0, false}};
749 EXPECT_EQ("#include \"important_os_header.h\"\n"
750 "#include \"c_main.h\"\n"
751 "#include \"a_other.h\"",
752 sort("#include \"c_main.h\"\n"
753 "#include \"a_other.h\"\n"
754 "#include \"important_os_header.h\"",
757 // check stable when re-run
758 EXPECT_EQ("#include \"important_os_header.h\"\n"
759 "#include \"c_main.h\"\n"
760 "#include \"a_other.h\"",
761 sort("#include \"important_os_header.h\"\n"
762 "#include \"c_main.h\"\n"
763 "#include \"a_other.h\"",
767 TEST_F(SortIncludesTest
, PriorityGroupsAreSeparatedWhenRegroupping
) {
768 Style
.IncludeCategories
= {{".*important_os_header.*", -1, 0, false},
769 {".*", 1, 0, false}};
770 Style
.IncludeBlocks
= tooling::IncludeStyle::IBS_Regroup
;
772 EXPECT_EQ("#include \"important_os_header.h\"\n"
774 "#include \"c_main.h\"\n"
776 "#include \"a_other.h\"",
777 sort("#include \"c_main.h\"\n"
778 "#include \"a_other.h\"\n"
779 "#include \"important_os_header.h\"",
782 // check stable when re-run
783 EXPECT_EQ("#include \"important_os_header.h\"\n"
785 "#include \"c_main.h\"\n"
787 "#include \"a_other.h\"",
788 sort("#include \"important_os_header.h\"\n"
790 "#include \"c_main.h\"\n"
792 "#include \"a_other.h\"",
796 TEST_F(SortIncludesTest
, CalculatesCorrectCursorPosition
) {
797 std::string Code
= "#include <ccc>\n" // Start of line: 0
798 "#include <bbbbbb>\n" // Start of line: 15
799 "#include <a>\n"; // Start of line: 33
800 EXPECT_EQ(31u, newCursor(Code
, 0));
801 EXPECT_EQ(13u, newCursor(Code
, 15));
802 EXPECT_EQ(0u, newCursor(Code
, 33));
804 EXPECT_EQ(41u, newCursor(Code
, 10));
805 EXPECT_EQ(23u, newCursor(Code
, 25));
806 EXPECT_EQ(10u, newCursor(Code
, 43));
809 TEST_F(SortIncludesTest
, CalculatesCorrectCursorPositionWithRegrouping
) {
810 Style
.IncludeBlocks
= Style
.IBS_Regroup
;
811 std::string Code
= "#include \"b\"\n" // Start of line: 0
812 "\n" // Start of line: 13
813 "#include \"aa\"\n" // Start of line: 14
814 "int i;"; // Start of line: 28
815 std::string Expected
= "#include \"aa\"\n" // Start of line: 0
816 "#include \"b\"\n" // Start of line: 14
817 "int i;"; // Start of line: 27
818 EXPECT_EQ(Expected
, sort(Code
));
819 EXPECT_EQ(12u, newCursor(Code
, 26)); // Closing quote of "aa"
820 EXPECT_EQ(26u, newCursor(Code
, 27)); // Newline after "aa"
821 EXPECT_EQ(27u, newCursor(Code
, 28)); // Start of last line
824 TEST_F(SortIncludesTest
, DeduplicateIncludes
) {
825 EXPECT_EQ("#include <a>\n"
828 sort("#include <a>\n"
835 Style
.IncludeBlocks
= tooling::IncludeStyle::IBS_Merge
;
836 EXPECT_EQ("#include <a>\n"
839 sort("#include <a>\n"
847 Style
.IncludeBlocks
= tooling::IncludeStyle::IBS_Regroup
;
848 EXPECT_EQ("#include <a>\n"
851 sort("#include <a>\n"
860 TEST_F(SortIncludesTest
, SortAndDeduplicateIncludes
) {
861 EXPECT_EQ("#include <a>\n"
864 sort("#include <b>\n"
871 Style
.IncludeBlocks
= tooling::IncludeStyle::IBS_Merge
;
872 EXPECT_EQ("#include <a>\n"
875 sort("#include <b>\n"
883 Style
.IncludeBlocks
= tooling::IncludeStyle::IBS_Regroup
;
884 EXPECT_EQ("#include <a>\n"
887 sort("#include <b>\n"
896 TEST_F(SortIncludesTest
, CalculatesCorrectCursorPositionAfterDeduplicate
) {
897 std::string Code
= "#include <b>\n" // Start of line: 0
898 "#include <a>\n" // Start of line: 13
899 "#include <b>\n" // Start of line: 26
900 "#include <b>\n" // Start of line: 39
901 "#include <c>\n" // Start of line: 52
902 "#include <b>\n"; // Start of line: 65
903 std::string Expected
= "#include <a>\n" // Start of line: 0
904 "#include <b>\n" // Start of line: 13
905 "#include <c>\n"; // Start of line: 26
906 EXPECT_EQ(Expected
, sort(Code
));
907 // Cursor on 'i' in "#include <a>".
908 EXPECT_EQ(1u, newCursor(Code
, 14));
909 // Cursor on 'b' in "#include <b>".
910 EXPECT_EQ(23u, newCursor(Code
, 10));
911 EXPECT_EQ(23u, newCursor(Code
, 36));
912 EXPECT_EQ(23u, newCursor(Code
, 49));
913 EXPECT_EQ(23u, newCursor(Code
, 36));
914 EXPECT_EQ(23u, newCursor(Code
, 75));
915 // Cursor on '#' in "#include <c>".
916 EXPECT_EQ(26u, newCursor(Code
, 52));
919 TEST_F(SortIncludesTest
, DeduplicateLocallyInEachBlock
) {
920 EXPECT_EQ("#include <a>\n"
925 sort("#include <a>\n"
933 TEST_F(SortIncludesTest
, ValidAffactedRangesAfterDeduplicatingIncludes
) {
934 std::string Code
= "#include <a>\n"
940 std::vector
<tooling::Range
> Ranges
= {tooling::Range(0, 52)};
941 auto Replaces
= sortIncludes(FmtStyle
, Code
, Ranges
, "input.cpp");
942 Ranges
= tooling::calculateRangesAfterReplacements(Replaces
, Ranges
);
943 EXPECT_EQ(1u, Ranges
.size());
944 EXPECT_EQ(0u, Ranges
[0].getOffset());
945 EXPECT_EQ(26u, Ranges
[0].getLength());
948 TEST_F(SortIncludesTest
, DoNotSortLikelyXml
) {
960 TEST_F(SortIncludesTest
, DoNotOutputReplacementsForSortedBlocksWithRegrouping
) {
961 Style
.IncludeBlocks
= Style
.IBS_Regroup
;
962 std::string Code
= R
"(
967 EXPECT_EQ(Code
, sort(Code
, "input.h", 0));
970 TEST_F(SortIncludesTest
,
971 DoNotOutputReplacementsForSortedBlocksWithRegroupingWindows
) {
972 Style
.IncludeBlocks
= Style
.IBS_Regroup
;
973 std::string Code
= "#include \"b.h\"\r\n"
975 "#include <a.h>\r\n";
976 EXPECT_EQ(Code
, sort(Code
, "input.h", 0));
979 TEST_F(SortIncludesTest
, DoNotRegroupGroupsInGoogleObjCStyle
) {
980 FmtStyle
= getGoogleStyle(FormatStyle::LK_ObjC
);
982 EXPECT_EQ("#include <a.h>\n"
985 sort("#include <b.h>\n"
987 "#include \"a.h\""));
990 TEST_F(SortIncludesTest
, DoNotTreatPrecompiledHeadersAsFirstBlock
) {
991 Style
.IncludeBlocks
= Style
.IBS_Merge
;
992 std::string Code
= "#include \"d.h\"\r\n"
993 "#include \"b.h\"\r\n"
994 "#pragma hdrstop\r\n"
996 "#include \"c.h\"\r\n"
997 "#include \"a.h\"\r\n"
998 "#include \"e.h\"\r\n";
1000 std::string Expected
= "#include \"b.h\"\r\n"
1001 "#include \"d.h\"\r\n"
1002 "#pragma hdrstop\r\n"
1004 "#include \"e.h\"\r\n"
1005 "#include \"a.h\"\r\n"
1006 "#include \"c.h\"\r\n";
1008 EXPECT_EQ(Expected
, sort(Code
, "e.cpp", 2));
1010 Code
= "#include \"d.h\"\n"
1011 "#include \"b.h\"\n"
1012 "#pragma hdrstop( \"c:\\projects\\include\\myinc.pch\" )\n"
1014 "#include \"c.h\"\n"
1015 "#include \"a.h\"\n"
1016 "#include \"e.h\"\n";
1018 Expected
= "#include \"b.h\"\n"
1019 "#include \"d.h\"\n"
1020 "#pragma hdrstop(\"c:\\projects\\include\\myinc.pch\")\n"
1022 "#include \"e.h\"\n"
1023 "#include \"a.h\"\n"
1024 "#include \"c.h\"\n";
1026 EXPECT_EQ(Expected
, sort(Code
, "e.cpp", 2));
1029 TEST_F(SortIncludesTest
, skipUTF8ByteOrderMarkMerge
) {
1030 Style
.IncludeBlocks
= Style
.IBS_Merge
;
1031 std::string Code
= "\xEF\xBB\xBF#include \"d.h\"\r\n"
1032 "#include \"b.h\"\r\n"
1034 "#include \"c.h\"\r\n"
1035 "#include \"a.h\"\r\n"
1036 "#include \"e.h\"\r\n";
1038 std::string Expected
= "\xEF\xBB\xBF#include \"e.h\"\r\n"
1039 "#include \"a.h\"\r\n"
1040 "#include \"b.h\"\r\n"
1041 "#include \"c.h\"\r\n"
1042 "#include \"d.h\"\r\n";
1044 EXPECT_EQ(Expected
, sort(Code
, "e.cpp", 1));
1047 TEST_F(SortIncludesTest
, skipUTF8ByteOrderMarkPreserve
) {
1048 Style
.IncludeBlocks
= Style
.IBS_Preserve
;
1049 std::string Code
= "\xEF\xBB\xBF#include \"d.h\"\r\n"
1050 "#include \"b.h\"\r\n"
1052 "#include \"c.h\"\r\n"
1053 "#include \"a.h\"\r\n"
1054 "#include \"e.h\"\r\n";
1056 std::string Expected
= "\xEF\xBB\xBF#include \"b.h\"\r\n"
1057 "#include \"d.h\"\r\n"
1059 "#include \"a.h\"\r\n"
1060 "#include \"c.h\"\r\n"
1061 "#include \"e.h\"\r\n";
1063 EXPECT_EQ(Expected
, sort(Code
, "e.cpp", 2));
1066 TEST_F(SortIncludesTest
, MergeLines
) {
1067 Style
.IncludeBlocks
= Style
.IBS_Merge
;
1068 std::string Code
= "#include \"c.h\"\r\n"
1069 "#include \"b\\\r\n"
1071 "#include \"a.h\"\r\n";
1073 std::string Expected
= "#include \"a.h\"\r\n"
1074 "#include \"b\\\r\n"
1076 "#include \"c.h\"\r\n";
1078 EXPECT_EQ(Expected
, sort(Code
, "a.cpp", 1));
1081 TEST_F(SortIncludesTest
, DisableFormatDisablesIncludeSorting
) {
1082 StringRef Sorted
= "#include <a.h>\n"
1084 StringRef Unsorted
= "#include <b.h>\n"
1086 EXPECT_EQ(Sorted
, sort(Unsorted
));
1087 FmtStyle
.DisableFormat
= true;
1088 EXPECT_EQ(Unsorted
, sort(Unsorted
, "input.cpp", 0));
1091 TEST_F(SortIncludesTest
, DisableRawStringLiteralSorting
) {
1093 EXPECT_EQ("const char *t = R\"(\n"
1097 sort("const char *t = R\"(\n"
1102 EXPECT_EQ("const char *t = R\"x(\n"
1106 sort("const char *t = R\"x(\n"
1111 EXPECT_EQ("const char *t = R\"xyz(\n"
1115 sort("const char *t = R\"xyz(\n"
1121 EXPECT_EQ("#include <a.h>\n"
1123 "const char *t = R\"(\n"
1129 "const char *t = R\"x(\n"
1135 "const char *t = R\"xyz(\n"
1141 sort("#include <b.h>\n"
1143 "const char *t = R\"(\n"
1149 "const char *t = R\"x(\n"
1155 "const char *t = R\"xyz(\n"
1163 EXPECT_EQ("const char *t = R\"AMZ029amz(\n"
1167 sort("const char *t = R\"AMZ029amz(\n"
1173 EXPECT_EQ("const char *t = R\"-AMZ029amz(\n"
1177 sort("const char *t = R\"-AMZ029amz(\n"
1183 EXPECT_EQ("const char *t = R\"AMZ029amz-(\n"
1187 sort("const char *t = R\"AMZ029amz-(\n"
1193 EXPECT_EQ("const char *t = R\"AM|029amz-(\n"
1197 sort("const char *t = R\"AM|029amz-(\n"
1203 EXPECT_EQ("const char *t = R\"AM[029amz-(\n"
1207 sort("const char *t = R\"AM[029amz-(\n"
1213 EXPECT_EQ("const char *t = R\"AM]029amz-(\n"
1217 sort("const char *t = R\"AM]029amz-(\n"
1223 #define X "AMZ029amz{}+!%*=_:;',.<>|/?#~-$"
1225 EXPECT_EQ("const char *t = R\"" X
"(\n"
1229 sort("const char *t = R\"" X
"(\n"
1239 } // end namespace format
1240 } // end namespace clang