1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
/*
* Cppcheck - A tool for static C/C++ code analysis
* Copyright (C) 2007-2018 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/>.
*/
#include "cppcheckexecutor.h"
#include "errorlogger.h"
#include "cppcheck.h"
#include "filelister.h"
#include "path.h"
#include "pathmatch.h"
#include "redirect.h"
#include "testsuite.h"
#include <algorithm>
#include <cstddef>
#include <cstring>
#include <fstream>
#include <iterator>
#include <map>
#include <sstream>
#include <string>
#include <utility>
#include <vector>
class TestSamples : public TestFixture {
public:
TestSamples() : TestFixture("TestSamples") {
}
private:
void run() override {
TEST_CASE(runSamples);
TEST_CASE(runConsoleCodePageTranslationOnWindows);
}
void runSamples() const {
REDIRECT;
std::map<std::string, std::size_t> files;
const std::vector<std::string> masks;
const PathMatch matcher(masks);
#ifdef _WIN32
FileLister::recursiveAddFiles(files, "..\\samples", matcher);
#else
FileLister::recursiveAddFiles(files, "samples", matcher);
#endif
for (std::map<std::string, std::size_t>::const_iterator i = files.begin(); i != files.end(); ++i) {
if (i->first.find("memleak") != std::string::npos)
continue;
CLEAR_REDIRECT_ERROUT;
char* path = new char[i->first.size() + 1];
strcpy(path, i->first.c_str());
const char * const argv[] = {
#ifdef _WIN32
".\\..\\testrunner",
#else
"./testrunner",
#endif
"--enable=style,warning,performance,portability", "--inconclusive", "-rp", "-f", "-q", path
};
std::string filename = i->first.substr(i->first.find_last_of("/\\")+1);
if (filename == "good.cpp" || filename == "good.c") {
CppCheckExecutor exec;
exec.check(7, argv);
ASSERT_EQUALS_MSG("", GET_REDIRECT_ERROUT, i->first);
} else if (filename == "bad.cpp" || filename == "bad.c") {
CppCheckExecutor exec;
exec.check(7, argv);
std::string expected_filename = Path::getPathFromFilename(i->first) + "out.txt";
std::ifstream ifs(expected_filename);
std::string expected((std::istreambuf_iterator<char>(ifs)), std::istreambuf_iterator<char>());
std::string actual = GET_REDIRECT_ERROUT;
// We need some uniformization to make this work on Unix and Windows
std::replace(actual.begin(), actual.end(), '/', '\\'); // Uniformize slashes.
while (actual.find("..\\") != std::string::npos)
actual.erase(actual.find("..\\"), 3); // Remove '..\'
ASSERT_EQUALS_MSG(expected, actual, i->first);
}
delete[] path;
}
}
class CppCheckExecutor2 : public CppCheckExecutor {
public:
void settings(const Settings &set) {
setSettings(set);
}
};
void runConsoleCodePageTranslationOnWindows() const {
REDIRECT;
std::vector<std::string> msgs = {
"ASCII", // first entry should be using only ASCII
"kääk",
"Português"
// "日本語",
// "한국어",
// "Русский",
// "中文",
};
Settings set1;
Settings setXML;
setXML.xml = true;
setXML.xml_version = 2;
CppCheckExecutor2 exec;
exec.settings(set1);
CppCheckExecutor2 execXML;
execXML.settings(setXML);
for (std::vector<std::string>::const_iterator i = msgs.begin(); i != msgs.end(); ++i) {
CLEAR_REDIRECT_OUTPUT;
CLEAR_REDIRECT_ERROUT;
exec.reportOut(*i);
ErrorLogger::ErrorMessage errMessage;
errMessage.setmsg(*i);
// no xml option
exec.reportInfo(errMessage);
#ifdef _WIN32
// expect changes through code page translation except for the 'ASCII' case
if (i == msgs.begin()) {
ASSERT_EQUALS(*i + "\n", GET_REDIRECT_OUTPUT);
ASSERT_EQUALS(*i + "\n", GET_REDIRECT_ERROUT);
} else {
ASSERT(*i + "\n" != GET_REDIRECT_OUTPUT);
ASSERT(*i + "\n" != GET_REDIRECT_ERROUT);
}
#else
// do not expect any code page translation
ASSERT_EQUALS(*i + "\n", GET_REDIRECT_OUTPUT);
ASSERT_EQUALS(*i + "\n", GET_REDIRECT_ERROUT);
#endif
CLEAR_REDIRECT_ERROUT;
// possible change of msg for xml option
// with ErrorLogger::ErrorMessage::fixInvalidChars(), plus additional XML formatting
execXML.reportInfo(errMessage);
// undo the effects of "ErrorLogger::ErrorMessage::fixInvalidChars()"
// replacing octal constants with characters
std::string myErr;
std::string myErrOrg = GET_REDIRECT_ERROUT;
std::string::const_iterator from = myErrOrg.begin();
while (from != myErrOrg.end()) {
if (*from == '\\') {
++from;
unsigned c;
// expect three digits
std::istringstream es(std::string(from, from + 3));
es >> std::oct >> c;
++from;
++from;
myErr.push_back(c);
} else {
myErr.push_back(*from);
}
++from;
}
ASSERT(std::string::npos != myErr.find(*i));
}
}
};
REGISTER_TEST(TestSamples)
|