2011-04-07 17:36:42 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2023-01-28 10:16:34 +01:00
|
|
|
* Copyright (C) 2007-2023 Cppcheck team.
|
2011-04-07 17:36:42 +02:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "filelister.h"
|
2023-08-23 11:22:41 +02:00
|
|
|
#include "path.h"
|
2015-07-23 14:01:33 +02:00
|
|
|
#include "pathmatch.h"
|
2023-01-27 08:18:32 +01:00
|
|
|
#include "fixture.h"
|
2017-05-27 04:33:47 +02:00
|
|
|
|
2023-11-07 21:21:24 +01:00
|
|
|
#include <algorithm>
|
2022-01-27 19:03:20 +01:00
|
|
|
#include <cstddef>
|
2023-11-07 21:21:24 +01:00
|
|
|
#include <list>
|
2023-10-09 10:07:20 +02:00
|
|
|
#include <stdexcept>
|
2017-05-27 04:33:47 +02:00
|
|
|
#include <string>
|
2012-07-07 19:55:43 +02:00
|
|
|
#include <vector>
|
2022-01-27 19:03:20 +01:00
|
|
|
#include <utility>
|
2011-10-29 19:30:33 +02:00
|
|
|
|
2021-08-07 20:51:18 +02:00
|
|
|
class TestFileLister : public TestFixture {
|
2011-04-07 17:36:42 +02:00
|
|
|
public:
|
2023-05-02 11:48:24 +02:00
|
|
|
TestFileLister() : TestFixture("TestFileLister") {}
|
2011-04-07 17:36:42 +02:00
|
|
|
|
|
|
|
private:
|
2022-02-10 23:02:24 +01:00
|
|
|
void run() override {
|
2011-04-07 17:36:42 +02:00
|
|
|
TEST_CASE(recursiveAddFiles);
|
2023-08-23 11:22:41 +02:00
|
|
|
TEST_CASE(recursiveAddFilesEmptyPath);
|
|
|
|
TEST_CASE(excludeFile1);
|
|
|
|
TEST_CASE(excludeFile2);
|
2011-04-07 17:36:42 +02:00
|
|
|
}
|
|
|
|
|
2023-08-23 11:22:41 +02:00
|
|
|
// TODO: generate file list instead
|
|
|
|
static std::string findBaseDir() {
|
|
|
|
std::string basedir;
|
|
|
|
while (!Path::isDirectory(Path::join(basedir, ".github"))) {
|
2023-09-20 10:49:00 +02:00
|
|
|
const std::string abspath = Path::getAbsoluteFilePath(basedir);
|
2023-08-23 11:22:41 +02:00
|
|
|
basedir += "../";
|
2023-09-20 10:49:00 +02:00
|
|
|
// no more going up
|
|
|
|
if (Path::getAbsoluteFilePath(basedir) == abspath)
|
|
|
|
throw std::runtime_error("could not find repository root directory");
|
2023-08-23 11:22:41 +02:00
|
|
|
}
|
|
|
|
return basedir;
|
2011-04-07 17:36:42 +02:00
|
|
|
}
|
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
void recursiveAddFiles() const {
|
2023-08-23 11:22:41 +02:00
|
|
|
const std::string adddir = findBaseDir() + ".";
|
|
|
|
|
2011-04-07 17:36:42 +02:00
|
|
|
// Recursively add add files..
|
2023-11-07 21:21:24 +01:00
|
|
|
std::list<std::pair<std::string, std::size_t>> files;
|
2015-07-23 14:01:33 +02:00
|
|
|
std::vector<std::string> masks;
|
|
|
|
PathMatch matcher(masks);
|
2023-08-23 11:22:41 +02:00
|
|
|
std::string err = FileLister::recursiveAddFiles(files, adddir, matcher);
|
|
|
|
ASSERT_EQUALS("", err);
|
|
|
|
|
|
|
|
ASSERT(!files.empty());
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
std::string dirprefix;
|
|
|
|
if (adddir != ".")
|
|
|
|
dirprefix = adddir + "/";
|
|
|
|
#else
|
|
|
|
const std::string dirprefix = adddir + "/";
|
|
|
|
#endif
|
2011-04-07 17:49:18 +02:00
|
|
|
|
2023-11-07 21:21:24 +01:00
|
|
|
const auto find_file = [&](const std::string& name) {
|
|
|
|
return std::find_if(files.cbegin(), files.cend(), [&name](const std::pair<std::string, std::size_t>& entry) {
|
|
|
|
return entry.first == name;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2011-04-07 17:36:42 +02:00
|
|
|
// Make sure source files are added..
|
2023-11-07 21:21:24 +01:00
|
|
|
ASSERT(find_file(dirprefix + "cli/main.cpp") != files.end());
|
|
|
|
ASSERT(find_file(dirprefix + "lib/token.cpp") != files.end());
|
|
|
|
ASSERT(find_file(dirprefix + "lib/tokenize.cpp") != files.end());
|
|
|
|
ASSERT(find_file(dirprefix + "gui/main.cpp") != files.end());
|
|
|
|
ASSERT(find_file(dirprefix + "test/testfilelister.cpp") != files.end());
|
2011-04-07 17:36:42 +02:00
|
|
|
|
|
|
|
// Make sure headers are not added..
|
2023-11-07 21:21:24 +01:00
|
|
|
ASSERT(find_file(dirprefix + "lib/tokenize.h") == files.end());
|
2011-04-07 17:36:42 +02:00
|
|
|
}
|
2020-11-13 15:52:24 +01:00
|
|
|
|
2023-08-23 11:22:41 +02:00
|
|
|
void recursiveAddFilesEmptyPath() const {
|
2023-11-07 21:21:24 +01:00
|
|
|
std::list<std::pair<std::string, std::size_t>> files;
|
2023-08-23 11:22:41 +02:00
|
|
|
const std::string err = FileLister::recursiveAddFiles(files, "", PathMatch({}));
|
|
|
|
ASSERT_EQUALS("no path specified", err);
|
|
|
|
}
|
|
|
|
|
|
|
|
void excludeFile1() const {
|
|
|
|
const std::string basedir = findBaseDir();
|
|
|
|
|
2023-11-07 21:21:24 +01:00
|
|
|
std::list<std::pair<std::string, std::size_t>> files;
|
2022-11-24 13:45:57 +01:00
|
|
|
std::vector<std::string> ignored{"lib/token.cpp"};
|
|
|
|
PathMatch matcher(ignored);
|
2023-08-23 11:22:41 +02:00
|
|
|
std::string err = FileLister::recursiveAddFiles(files, basedir + "lib/token.cpp", matcher);
|
|
|
|
ASSERT_EQUALS("", err);
|
2022-11-24 13:45:57 +01:00
|
|
|
ASSERT(files.empty());
|
|
|
|
}
|
|
|
|
|
2023-08-23 11:22:41 +02:00
|
|
|
void excludeFile2() const {
|
|
|
|
const std::string basedir = findBaseDir();
|
|
|
|
|
2023-11-07 21:21:24 +01:00
|
|
|
std::list<std::pair<std::string, std::size_t>> files;
|
2023-08-23 11:22:41 +02:00
|
|
|
std::vector<std::string> ignored;
|
|
|
|
PathMatch matcher(ignored);
|
|
|
|
std::string err = FileLister::recursiveAddFiles(files, basedir + "lib/token.cpp", matcher);
|
|
|
|
ASSERT_EQUALS("", err);
|
|
|
|
ASSERT_EQUALS(1, files.size());
|
|
|
|
ASSERT_EQUALS(basedir + "lib/token.cpp", files.begin()->first);
|
2020-11-13 15:52:24 +01:00
|
|
|
}
|
2023-08-23 11:22:41 +02:00
|
|
|
|
|
|
|
// TODO: test errors
|
2011-04-07 17:36:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
REGISTER_TEST(TestFileLister)
|