2023-08-02 10:36:17 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2010-09-26 05:29:23 +02:00
|
|
|
|
|
|
|
#include "options.h"
|
2023-01-27 08:18:32 +01:00
|
|
|
#include "fixture.h"
|
2010-09-26 05:29:23 +02:00
|
|
|
|
2023-08-02 10:36:17 +02:00
|
|
|
#include <functional>
|
2022-01-27 19:03:20 +01:00
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
|
2010-09-26 05:29:23 +02:00
|
|
|
|
2021-08-07 20:51:18 +02:00
|
|
|
class TestOptions : public TestFixture {
|
2010-09-26 05:29:23 +02:00
|
|
|
public:
|
|
|
|
TestOptions()
|
2021-08-07 20:51:18 +02:00
|
|
|
: TestFixture("TestOptions") {}
|
2010-09-26 05:29:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
private:
|
2022-02-10 23:02:24 +01:00
|
|
|
void run() override {
|
2010-09-26 05:29:23 +02:00
|
|
|
TEST_CASE(which_test);
|
|
|
|
TEST_CASE(which_test_method);
|
2010-09-26 08:52:30 +02:00
|
|
|
TEST_CASE(no_test_method);
|
2010-09-26 05:29:23 +02:00
|
|
|
TEST_CASE(not_quiet);
|
|
|
|
TEST_CASE(quiet);
|
2019-03-02 08:06:23 +01:00
|
|
|
TEST_CASE(not_help);
|
|
|
|
TEST_CASE(help);
|
|
|
|
TEST_CASE(help_long);
|
2010-09-26 05:29:23 +02:00
|
|
|
TEST_CASE(multiple_testcases);
|
2019-03-26 20:28:40 +01:00
|
|
|
TEST_CASE(multiple_testcases_ignore_duplicates);
|
2010-09-26 05:29:23 +02:00
|
|
|
TEST_CASE(invalid_switches);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
void which_test() const {
|
2010-09-26 05:29:23 +02:00
|
|
|
const char* argv[] = {"./test_runner", "TestClass"};
|
|
|
|
options args(sizeof argv / sizeof argv[0], argv);
|
2019-03-26 20:28:40 +01:00
|
|
|
ASSERT(std::set<std::string> {"TestClass"} == args.which_test());
|
2010-09-26 05:29:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
void which_test_method() const {
|
2010-09-26 05:29:23 +02:00
|
|
|
const char* argv[] = {"./test_runner", "TestClass::TestMethod"};
|
|
|
|
options args(sizeof argv / sizeof argv[0], argv);
|
2019-03-26 20:28:40 +01:00
|
|
|
ASSERT(std::set<std::string> {"TestClass::TestMethod"} == args.which_test());
|
2010-09-26 05:29:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
void no_test_method() const {
|
2013-11-01 01:28:05 +01:00
|
|
|
const char* argv[] = {"./test_runner"};
|
2010-09-26 08:52:30 +02:00
|
|
|
options args(sizeof argv / sizeof argv[0], argv);
|
2019-03-26 20:28:40 +01:00
|
|
|
ASSERT(std::set<std::string> {""} == args.which_test());
|
2010-09-26 08:52:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
void not_quiet() const {
|
2010-09-26 05:29:23 +02:00
|
|
|
const char* argv[] = {"./test_runner", "TestClass::TestMethod", "-v"};
|
|
|
|
options args(sizeof argv / sizeof argv[0], argv);
|
|
|
|
ASSERT_EQUALS(false, args.quiet());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
void quiet() const {
|
2010-09-26 05:29:23 +02:00
|
|
|
const char* argv[] = {"./test_runner", "TestClass::TestMethod", "-q"};
|
|
|
|
options args(sizeof argv / sizeof argv[0], argv);
|
|
|
|
ASSERT_EQUALS(true, args.quiet());
|
|
|
|
}
|
|
|
|
|
2019-03-02 08:06:23 +01:00
|
|
|
void not_help() const {
|
|
|
|
const char* argv[] = {"./test_runner", "TestClass::TestMethod", "-v"};
|
|
|
|
options args(sizeof argv / sizeof argv[0], argv);
|
|
|
|
ASSERT_EQUALS(false, args.help());
|
|
|
|
}
|
2010-09-26 05:29:23 +02:00
|
|
|
|
|
|
|
|
2019-03-02 08:06:23 +01:00
|
|
|
void help() const {
|
|
|
|
const char* argv[] = {"./test_runner", "TestClass::TestMethod", "-h"};
|
|
|
|
options args(sizeof argv / sizeof argv[0], argv);
|
|
|
|
ASSERT_EQUALS(true, args.help());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void help_long() const {
|
|
|
|
const char* argv[] = {"./test_runner", "TestClass::TestMethod", "--help"};
|
|
|
|
options args(sizeof argv / sizeof argv[0], argv);
|
|
|
|
ASSERT_EQUALS(true, args.help());
|
|
|
|
}
|
2010-09-26 05:29:23 +02:00
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
void multiple_testcases() const {
|
2019-03-26 20:28:40 +01:00
|
|
|
const char* argv[] = {"./test_runner", "TestClass::TestMethod", "TestClass::AnotherTestMethod"};
|
2010-09-26 05:29:23 +02:00
|
|
|
options args(sizeof argv / sizeof argv[0], argv);
|
2019-03-26 20:28:40 +01:00
|
|
|
std::set<std::string> expected {"TestClass::TestMethod", "TestClass::AnotherTestMethod"};
|
|
|
|
ASSERT(expected == args.which_test());
|
2010-09-26 05:29:23 +02:00
|
|
|
}
|
|
|
|
|
2019-03-26 20:28:40 +01:00
|
|
|
void multiple_testcases_ignore_duplicates() const {
|
|
|
|
const char* argv[] = {"./test_runner", "TestClass::TestMethod", "TestClass"};
|
|
|
|
options args(sizeof argv / sizeof argv[0], argv);
|
|
|
|
std::set<std::string> expected {"TestClass"};
|
|
|
|
ASSERT(expected == args.which_test());
|
|
|
|
}
|
2010-09-26 05:29:23 +02:00
|
|
|
|
2014-11-20 14:20:09 +01:00
|
|
|
void invalid_switches() const {
|
2017-01-29 15:41:26 +01:00
|
|
|
const char* argv[] = {"./test_runner", "TestClass::TestMethod", "-a", "-v", "-q"};
|
2010-09-26 05:29:23 +02:00
|
|
|
options args(sizeof argv / sizeof argv[0], argv);
|
2019-03-26 20:28:40 +01:00
|
|
|
std::set<std::string> expected {"TestClass::TestMethod"};
|
|
|
|
ASSERT(expected == args.which_test());
|
2010-09-26 05:29:23 +02:00
|
|
|
ASSERT_EQUALS(true, args.quiet());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
REGISTER_TEST(TestOptions)
|