2016-12-21 00:09:09 +01:00
|
|
|
//===- llvm/unittest/Support/GlobPatternTest.cpp --------------------------===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2016-12-21 00:09:09 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Support/GlobPattern.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
class GlobPatternTest : public ::testing::Test {};
|
|
|
|
|
Reapply r375051: [support] GlobPattern: add support for `\` and `[!...]`, and allow `]` in more places
Reland r375051 (reverted in r375052) after fixing lld tests on Windows in r375126 and r375131.
Original description: Update GlobPattern in libSupport to handle a few more cases. It does not fully match the `fnmatch` used by GNU objcopy since named character classes (e.g. `[[:digit:]]`) are not supported, but this should support most existing use cases (mostly just `*` is what's used anyway).
This will be used to implement the `--wildcard` flag in llvm-objcopy to be more compatible with GNU objcopy.
This is split off of D66613 to land the libSupport changes separately. The llvm-objcopy part will land soon.
Reviewers: jhenderson, MaskRay, evgeny777, espindola, alexshap
Reviewed By: MaskRay
Subscribers: nickdesaulniers, emaste, arichardson, hiraditya, jakehehrlich, abrachet, seiya, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D66613
llvm-svn: 375149
2019-10-17 20:09:05 +02:00
|
|
|
TEST_F(GlobPatternTest, Empty) {
|
2016-12-21 00:09:09 +01:00
|
|
|
Expected<GlobPattern> Pat1 = GlobPattern::create("");
|
|
|
|
EXPECT_TRUE((bool)Pat1);
|
|
|
|
EXPECT_TRUE(Pat1->match(""));
|
|
|
|
EXPECT_FALSE(Pat1->match("a"));
|
Reapply r375051: [support] GlobPattern: add support for `\` and `[!...]`, and allow `]` in more places
Reland r375051 (reverted in r375052) after fixing lld tests on Windows in r375126 and r375131.
Original description: Update GlobPattern in libSupport to handle a few more cases. It does not fully match the `fnmatch` used by GNU objcopy since named character classes (e.g. `[[:digit:]]`) are not supported, but this should support most existing use cases (mostly just `*` is what's used anyway).
This will be used to implement the `--wildcard` flag in llvm-objcopy to be more compatible with GNU objcopy.
This is split off of D66613 to land the libSupport changes separately. The llvm-objcopy part will land soon.
Reviewers: jhenderson, MaskRay, evgeny777, espindola, alexshap
Reviewed By: MaskRay
Subscribers: nickdesaulniers, emaste, arichardson, hiraditya, jakehehrlich, abrachet, seiya, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D66613
llvm-svn: 375149
2019-10-17 20:09:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(GlobPatternTest, Glob) {
|
|
|
|
Expected<GlobPattern> Pat1 = GlobPattern::create("ab*c*def");
|
|
|
|
EXPECT_TRUE((bool)Pat1);
|
|
|
|
EXPECT_TRUE(Pat1->match("abcdef"));
|
|
|
|
EXPECT_TRUE(Pat1->match("abxcxdef"));
|
|
|
|
EXPECT_FALSE(Pat1->match(""));
|
|
|
|
EXPECT_FALSE(Pat1->match("xabcdef"));
|
|
|
|
EXPECT_FALSE(Pat1->match("abcdefx"));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(GlobPatternTest, Wildcard) {
|
|
|
|
Expected<GlobPattern> Pat1 = GlobPattern::create("a??c");
|
|
|
|
EXPECT_TRUE((bool)Pat1);
|
|
|
|
EXPECT_TRUE(Pat1->match("axxc"));
|
|
|
|
EXPECT_FALSE(Pat1->match("axxx"));
|
|
|
|
EXPECT_FALSE(Pat1->match(""));
|
|
|
|
}
|
2016-12-21 00:09:09 +01:00
|
|
|
|
Reapply r375051: [support] GlobPattern: add support for `\` and `[!...]`, and allow `]` in more places
Reland r375051 (reverted in r375052) after fixing lld tests on Windows in r375126 and r375131.
Original description: Update GlobPattern in libSupport to handle a few more cases. It does not fully match the `fnmatch` used by GNU objcopy since named character classes (e.g. `[[:digit:]]`) are not supported, but this should support most existing use cases (mostly just `*` is what's used anyway).
This will be used to implement the `--wildcard` flag in llvm-objcopy to be more compatible with GNU objcopy.
This is split off of D66613 to land the libSupport changes separately. The llvm-objcopy part will land soon.
Reviewers: jhenderson, MaskRay, evgeny777, espindola, alexshap
Reviewed By: MaskRay
Subscribers: nickdesaulniers, emaste, arichardson, hiraditya, jakehehrlich, abrachet, seiya, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D66613
llvm-svn: 375149
2019-10-17 20:09:05 +02:00
|
|
|
TEST_F(GlobPatternTest, Escape) {
|
|
|
|
Expected<GlobPattern> Pat1 = GlobPattern::create("\\*");
|
|
|
|
EXPECT_TRUE((bool)Pat1);
|
|
|
|
EXPECT_TRUE(Pat1->match("*"));
|
|
|
|
EXPECT_FALSE(Pat1->match("\\*"));
|
|
|
|
EXPECT_FALSE(Pat1->match("a"));
|
|
|
|
|
|
|
|
Expected<GlobPattern> Pat2 = GlobPattern::create("a?\\?c");
|
2016-12-21 00:09:09 +01:00
|
|
|
EXPECT_TRUE((bool)Pat2);
|
Reapply r375051: [support] GlobPattern: add support for `\` and `[!...]`, and allow `]` in more places
Reland r375051 (reverted in r375052) after fixing lld tests on Windows in r375126 and r375131.
Original description: Update GlobPattern in libSupport to handle a few more cases. It does not fully match the `fnmatch` used by GNU objcopy since named character classes (e.g. `[[:digit:]]`) are not supported, but this should support most existing use cases (mostly just `*` is what's used anyway).
This will be used to implement the `--wildcard` flag in llvm-objcopy to be more compatible with GNU objcopy.
This is split off of D66613 to land the libSupport changes separately. The llvm-objcopy part will land soon.
Reviewers: jhenderson, MaskRay, evgeny777, espindola, alexshap
Reviewed By: MaskRay
Subscribers: nickdesaulniers, emaste, arichardson, hiraditya, jakehehrlich, abrachet, seiya, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D66613
llvm-svn: 375149
2019-10-17 20:09:05 +02:00
|
|
|
EXPECT_TRUE(Pat2->match("ax?c"));
|
|
|
|
EXPECT_FALSE(Pat2->match("axxc"));
|
2016-12-21 00:09:09 +01:00
|
|
|
EXPECT_FALSE(Pat2->match(""));
|
Reapply r375051: [support] GlobPattern: add support for `\` and `[!...]`, and allow `]` in more places
Reland r375051 (reverted in r375052) after fixing lld tests on Windows in r375126 and r375131.
Original description: Update GlobPattern in libSupport to handle a few more cases. It does not fully match the `fnmatch` used by GNU objcopy since named character classes (e.g. `[[:digit:]]`) are not supported, but this should support most existing use cases (mostly just `*` is what's used anyway).
This will be used to implement the `--wildcard` flag in llvm-objcopy to be more compatible with GNU objcopy.
This is split off of D66613 to land the libSupport changes separately. The llvm-objcopy part will land soon.
Reviewers: jhenderson, MaskRay, evgeny777, espindola, alexshap
Reviewed By: MaskRay
Subscribers: nickdesaulniers, emaste, arichardson, hiraditya, jakehehrlich, abrachet, seiya, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D66613
llvm-svn: 375149
2019-10-17 20:09:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(GlobPatternTest, BasicCharacterClass) {
|
|
|
|
Expected<GlobPattern> Pat1 = GlobPattern::create("[abc-fy-z]");
|
|
|
|
EXPECT_TRUE((bool)Pat1);
|
|
|
|
EXPECT_TRUE(Pat1->match("a"));
|
|
|
|
EXPECT_TRUE(Pat1->match("b"));
|
|
|
|
EXPECT_TRUE(Pat1->match("c"));
|
|
|
|
EXPECT_TRUE(Pat1->match("d"));
|
|
|
|
EXPECT_TRUE(Pat1->match("e"));
|
|
|
|
EXPECT_TRUE(Pat1->match("f"));
|
|
|
|
EXPECT_TRUE(Pat1->match("y"));
|
|
|
|
EXPECT_TRUE(Pat1->match("z"));
|
|
|
|
EXPECT_FALSE(Pat1->match("g"));
|
|
|
|
EXPECT_FALSE(Pat1->match(""));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(GlobPatternTest, NegatedCharacterClass) {
|
|
|
|
Expected<GlobPattern> Pat1 = GlobPattern::create("[^abc-fy-z]");
|
|
|
|
EXPECT_TRUE((bool)Pat1);
|
|
|
|
EXPECT_TRUE(Pat1->match("g"));
|
|
|
|
EXPECT_FALSE(Pat1->match("a"));
|
|
|
|
EXPECT_FALSE(Pat1->match("b"));
|
|
|
|
EXPECT_FALSE(Pat1->match("c"));
|
|
|
|
EXPECT_FALSE(Pat1->match("d"));
|
|
|
|
EXPECT_FALSE(Pat1->match("e"));
|
|
|
|
EXPECT_FALSE(Pat1->match("f"));
|
|
|
|
EXPECT_FALSE(Pat1->match("y"));
|
|
|
|
EXPECT_FALSE(Pat1->match("z"));
|
|
|
|
EXPECT_FALSE(Pat1->match(""));
|
|
|
|
|
|
|
|
Expected<GlobPattern> Pat2 = GlobPattern::create("[!abc-fy-z]");
|
|
|
|
EXPECT_TRUE((bool)Pat2);
|
|
|
|
EXPECT_TRUE(Pat2->match("g"));
|
|
|
|
EXPECT_FALSE(Pat2->match("a"));
|
|
|
|
EXPECT_FALSE(Pat2->match("b"));
|
|
|
|
EXPECT_FALSE(Pat2->match("c"));
|
|
|
|
EXPECT_FALSE(Pat2->match("d"));
|
|
|
|
EXPECT_FALSE(Pat2->match("e"));
|
|
|
|
EXPECT_FALSE(Pat2->match("f"));
|
|
|
|
EXPECT_FALSE(Pat2->match("y"));
|
|
|
|
EXPECT_FALSE(Pat2->match("z"));
|
|
|
|
EXPECT_FALSE(Pat2->match(""));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(GlobPatternTest, BracketFrontOfCharacterClass) {
|
|
|
|
Expected<GlobPattern> Pat1 = GlobPattern::create("[]a]x");
|
|
|
|
EXPECT_TRUE((bool)Pat1);
|
|
|
|
EXPECT_TRUE(Pat1->match("]x"));
|
|
|
|
EXPECT_TRUE(Pat1->match("ax"));
|
|
|
|
EXPECT_FALSE(Pat1->match("a]x"));
|
|
|
|
EXPECT_FALSE(Pat1->match(""));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(GlobPatternTest, SpecialCharsInCharacterClass) {
|
|
|
|
Expected<GlobPattern> Pat1 = GlobPattern::create("[*?^]");
|
|
|
|
EXPECT_TRUE((bool)Pat1);
|
|
|
|
EXPECT_TRUE(Pat1->match("*"));
|
|
|
|
EXPECT_TRUE(Pat1->match("?"));
|
|
|
|
EXPECT_TRUE(Pat1->match("^"));
|
|
|
|
EXPECT_FALSE(Pat1->match("*?^"));
|
|
|
|
EXPECT_FALSE(Pat1->match(""));
|
2016-12-21 00:09:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(GlobPatternTest, Invalid) {
|
|
|
|
Expected<GlobPattern> Pat1 = GlobPattern::create("[");
|
|
|
|
EXPECT_FALSE((bool)Pat1);
|
|
|
|
handleAllErrors(Pat1.takeError(), [&](ErrorInfoBase &EIB) {});
|
Reapply r375051: [support] GlobPattern: add support for `\` and `[!...]`, and allow `]` in more places
Reland r375051 (reverted in r375052) after fixing lld tests on Windows in r375126 and r375131.
Original description: Update GlobPattern in libSupport to handle a few more cases. It does not fully match the `fnmatch` used by GNU objcopy since named character classes (e.g. `[[:digit:]]`) are not supported, but this should support most existing use cases (mostly just `*` is what's used anyway).
This will be used to implement the `--wildcard` flag in llvm-objcopy to be more compatible with GNU objcopy.
This is split off of D66613 to land the libSupport changes separately. The llvm-objcopy part will land soon.
Reviewers: jhenderson, MaskRay, evgeny777, espindola, alexshap
Reviewed By: MaskRay
Subscribers: nickdesaulniers, emaste, arichardson, hiraditya, jakehehrlich, abrachet, seiya, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D66613
llvm-svn: 375149
2019-10-17 20:09:05 +02:00
|
|
|
|
|
|
|
Expected<GlobPattern> Pat2 = GlobPattern::create("[]");
|
|
|
|
EXPECT_FALSE((bool)Pat2);
|
|
|
|
handleAllErrors(Pat2.takeError(), [&](ErrorInfoBase &EIB) {});
|
2016-12-21 00:09:09 +01:00
|
|
|
}
|
2017-07-31 11:26:50 +02:00
|
|
|
|
|
|
|
TEST_F(GlobPatternTest, ExtSym) {
|
|
|
|
Expected<GlobPattern> Pat1 = GlobPattern::create("a*\xFF");
|
|
|
|
EXPECT_TRUE((bool)Pat1);
|
|
|
|
EXPECT_TRUE(Pat1->match("axxx\xFF"));
|
|
|
|
Expected<GlobPattern> Pat2 = GlobPattern::create("[\xFF-\xFF]");
|
|
|
|
EXPECT_TRUE((bool)Pat2);
|
|
|
|
EXPECT_TRUE(Pat2->match("\xFF"));
|
|
|
|
}
|
2020-09-07 14:22:12 +02:00
|
|
|
|
|
|
|
TEST_F(GlobPatternTest, IsTrivialMatchAll) {
|
|
|
|
Expected<GlobPattern> Pat1 = GlobPattern::create("*");
|
|
|
|
EXPECT_TRUE((bool)Pat1);
|
|
|
|
EXPECT_TRUE(Pat1->isTrivialMatchAll());
|
|
|
|
|
|
|
|
const char *NegativeCases[] = {"a*", "*a", "?*", "*?", "**", "\\*"};
|
|
|
|
for (auto *P : NegativeCases) {
|
|
|
|
Expected<GlobPattern> Pat2 = GlobPattern::create(P);
|
|
|
|
EXPECT_TRUE((bool)Pat2);
|
|
|
|
EXPECT_FALSE(Pat2->isTrivialMatchAll());
|
|
|
|
}
|
|
|
|
}
|
2016-12-21 00:09:09 +01:00
|
|
|
}
|