cppcheck/test/testpathmatch.cpp

202 lines
5.8 KiB
C++
Raw Permalink Normal View History

/*
* Cppcheck - A tool for static C/C++ code analysis
2023-01-28 10:16:34 +01:00
* Copyright (C) 2007-2023 Cppcheck team.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2017-05-27 04:33:47 +02:00
#include "pathmatch.h"
#include "fixture.h"
2017-05-27 04:33:47 +02:00
2011-02-01 12:34:05 +01:00
#include <string>
#include <vector>
2011-10-13 20:53:06 +02:00
class TestPathMatch : public TestFixture {
public:
TestPathMatch() : TestFixture("TestPathMatch") {}
private:
const PathMatch emptyMatcher{std::vector<std::string>()};
const PathMatch srcMatcher{std::vector<std::string>(1, "src/")};
const PathMatch fooCppMatcher{std::vector<std::string>(1, "foo.cpp")};
const PathMatch srcFooCppMatcher{std::vector<std::string>(1, "src/foo.cpp")};
void run() override {
TEST_CASE(emptymaskemptyfile);
TEST_CASE(emptymaskpath1);
TEST_CASE(emptymaskpath2);
TEST_CASE(emptymaskpath3);
TEST_CASE(onemaskemptypath);
TEST_CASE(onemasksamepath);
TEST_CASE(onemasksamepathdifferentcase);
TEST_CASE(onemasksamepathwithfile);
TEST_CASE(onemaskshorterpath);
TEST_CASE(onemaskdifferentdir1);
TEST_CASE(onemaskdifferentdir2);
TEST_CASE(onemaskdifferentdir3);
TEST_CASE(onemaskdifferentdir4);
TEST_CASE(onemasklongerpath1);
TEST_CASE(onemasklongerpath2);
TEST_CASE(onemasklongerpath3);
TEST_CASE(twomasklongerpath1);
TEST_CASE(twomasklongerpath2);
TEST_CASE(twomasklongerpath3);
TEST_CASE(twomasklongerpath4);
TEST_CASE(filemask1);
TEST_CASE(filemaskdifferentcase);
TEST_CASE(filemask2);
TEST_CASE(filemask3);
TEST_CASE(filemaskpath1);
TEST_CASE(filemaskpath2);
TEST_CASE(filemaskpath3);
TEST_CASE(filemaskpath4);
}
// Test empty PathMatch
2014-11-20 14:20:09 +01:00
void emptymaskemptyfile() const {
ASSERT(!emptyMatcher.match(""));
}
2014-11-20 14:20:09 +01:00
void emptymaskpath1() const {
ASSERT(!emptyMatcher.match("src/"));
}
2014-11-20 14:20:09 +01:00
void emptymaskpath2() const {
ASSERT(!emptyMatcher.match("../src/"));
}
2014-11-20 14:20:09 +01:00
void emptymaskpath3() const {
ASSERT(!emptyMatcher.match("/home/user/code/src/"));
}
// Test PathMatch containing "src/"
2014-11-20 14:20:09 +01:00
void onemaskemptypath() const {
ASSERT(!srcMatcher.match(""));
}
2014-11-20 14:20:09 +01:00
void onemasksamepath() const {
ASSERT(srcMatcher.match("src/"));
}
2014-11-20 14:20:09 +01:00
void onemasksamepathdifferentcase() const {
std::vector<std::string> masks(1, "sRc/");
PathMatch match(masks, false);
ASSERT(match.match("srC/"));
}
2014-11-20 14:20:09 +01:00
void onemasksamepathwithfile() const {
ASSERT(srcMatcher.match("src/file.txt"));
}
void onemaskshorterpath() const {
const std::string longerExclude("longersrc/");
const std::string shorterToMatch("src/");
ASSERT(shorterToMatch.length() < longerExclude.length());
PathMatch match(std::vector<std::string>(1, longerExclude));
ASSERT(match.match(longerExclude));
ASSERT(!match.match(shorterToMatch));
}
2014-11-20 14:20:09 +01:00
void onemaskdifferentdir1() const {
ASSERT(!srcMatcher.match("srcfiles/file.txt"));
}
2014-11-20 14:20:09 +01:00
void onemaskdifferentdir2() const {
ASSERT(!srcMatcher.match("proj/srcfiles/file.txt"));
}
2014-11-20 14:20:09 +01:00
void onemaskdifferentdir3() const {
ASSERT(!srcMatcher.match("proj/mysrc/file.txt"));
}
2014-11-20 14:20:09 +01:00
void onemaskdifferentdir4() const {
ASSERT(!srcMatcher.match("proj/mysrcfiles/file.txt"));
}
2014-11-20 14:20:09 +01:00
void onemasklongerpath1() const {
ASSERT(srcMatcher.match("/tmp/src/"));
}
2014-11-20 14:20:09 +01:00
void onemasklongerpath2() const {
ASSERT(srcMatcher.match("src/module/"));
}
2014-11-20 14:20:09 +01:00
void onemasklongerpath3() const {
ASSERT(srcMatcher.match("project/src/module/"));
}
2014-11-20 14:20:09 +01:00
void twomasklongerpath1() const {
std::vector<std::string> masks = { "src/", "module/" };
PathMatch match(masks);
ASSERT(!match.match("project/"));
}
2014-11-20 14:20:09 +01:00
void twomasklongerpath2() const {
std::vector<std::string> masks = { "src/", "module/" };
PathMatch match(masks);
ASSERT(match.match("project/src/"));
}
2014-11-20 14:20:09 +01:00
void twomasklongerpath3() const {
std::vector<std::string> masks = { "src/", "module/" };
PathMatch match(masks);
ASSERT(match.match("project/module/"));
}
2014-11-20 14:20:09 +01:00
void twomasklongerpath4() const {
std::vector<std::string> masks = { "src/", "module/" };
PathMatch match(masks);
ASSERT(match.match("project/src/module/"));
}
// Test PathMatch containing "foo.cpp"
2014-11-20 14:20:09 +01:00
void filemask1() const {
ASSERT(fooCppMatcher.match("foo.cpp"));
}
2014-11-20 14:20:09 +01:00
void filemaskdifferentcase() const {
std::vector<std::string> masks(1, "foo.cPp");
PathMatch match(masks, false);
ASSERT(match.match("fOo.cpp"));
}
2014-11-20 14:20:09 +01:00
void filemask2() const {
ASSERT(fooCppMatcher.match("../foo.cpp"));
}
2014-11-20 14:20:09 +01:00
void filemask3() const {
ASSERT(fooCppMatcher.match("src/foo.cpp"));
}
// Test PathMatch containing "src/foo.cpp"
2014-11-20 14:20:09 +01:00
void filemaskpath1() const {
ASSERT(srcFooCppMatcher.match("src/foo.cpp"));
}
2014-11-20 14:20:09 +01:00
void filemaskpath2() const {
ASSERT(srcFooCppMatcher.match("proj/src/foo.cpp"));
}
2014-11-20 14:20:09 +01:00
void filemaskpath3() const {
ASSERT(!srcFooCppMatcher.match("foo.cpp"));
}
2014-11-20 14:20:09 +01:00
void filemaskpath4() const {
ASSERT(!srcFooCppMatcher.match("bar/foo.cpp"));
}
};
REGISTER_TEST(TestPathMatch)