2018-08-27 17:54:10 +08:00
|
|
|
// (C) Copyright 2017, Google Inc.
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2018-08-24 21:07:48 +08:00
|
|
|
|
2018-08-27 17:54:10 +08:00
|
|
|
#include "commandlineflags.h"
|
|
|
|
|
|
|
|
#include "include_gunit.h"
|
2018-08-24 21:07:48 +08:00
|
|
|
|
|
|
|
// Flags used for testing parser.
|
|
|
|
INT_PARAM_FLAG(foo_int, 0, "Integer flag for testing");
|
|
|
|
INT_PARAM_FLAG(bar_int, 0, "Integer flag for testing");
|
|
|
|
DOUBLE_PARAM_FLAG(foo_double, 0.1, "Double flag for testing");
|
|
|
|
DOUBLE_PARAM_FLAG(bar_double, 0.2, "Double flag for testing");
|
|
|
|
STRING_PARAM_FLAG(foo_string, "foo", "String flag for testing");
|
|
|
|
STRING_PARAM_FLAG(bar_string, "bar", "String flag for testing");
|
|
|
|
BOOL_PARAM_FLAG(foo_bool, false, "Bool flag for testing");
|
|
|
|
BOOL_PARAM_FLAG(bar_bool, false, "Bool flag for testing");
|
|
|
|
// A flag whose name is a single character, tested for backward
|
2018-12-11 01:52:47 +08:00
|
|
|
// compatibility. This should be selected to not conflict with existing flags
|
2018-08-24 21:07:48 +08:00
|
|
|
// in commontraining.cpp.
|
|
|
|
STRING_PARAM_FLAG(q, "", "Single character name");
|
|
|
|
|
2020-12-27 17:41:48 +08:00
|
|
|
namespace tesseract {
|
2018-08-24 21:07:48 +08:00
|
|
|
|
|
|
|
class CommandlineflagsTest : public ::testing::Test {
|
2021-03-13 05:06:34 +08:00
|
|
|
protected:
|
|
|
|
void TestParser(int argc, const char **const_argv) {
|
2018-08-24 21:07:48 +08:00
|
|
|
TestParser("", argc, const_argv);
|
|
|
|
}
|
2021-03-13 05:06:34 +08:00
|
|
|
void TestParser(const char *usage, int argc, const char **const_argv) {
|
2018-08-24 21:07:48 +08:00
|
|
|
// Make a copy of the pointer since it can be altered by the function.
|
2021-03-13 05:06:34 +08:00
|
|
|
char **argv = const_cast<char **>(const_argv);
|
2018-08-24 21:07:48 +08:00
|
|
|
tesseract::ParseCommandLineFlags(usage, &argc, &argv, true);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST_F(CommandlineflagsTest, RemoveFlags) {
|
2021-03-13 05:06:34 +08:00
|
|
|
const char *const_argv[] = {"Progname", "--foo_int", "3", "file1.h", "file2.h"};
|
2021-02-24 03:19:52 +08:00
|
|
|
int argc = countof(const_argv);
|
2021-03-13 05:06:34 +08:00
|
|
|
char **argv = const_cast<char **>(const_argv);
|
2018-08-24 21:07:48 +08:00
|
|
|
tesseract::ParseCommandLineFlags(argv[0], &argc, &argv, true);
|
|
|
|
|
|
|
|
// argv should be rearranged to look like { "Progname", "file1.h", "file2.h" }
|
|
|
|
EXPECT_EQ(3, argc);
|
|
|
|
EXPECT_STREQ("Progname", argv[0]);
|
|
|
|
EXPECT_STREQ("file1.h", argv[1]);
|
|
|
|
EXPECT_STREQ("file2.h", argv[2]);
|
|
|
|
}
|
|
|
|
|
2021-03-13 05:06:34 +08:00
|
|
|
#if 0 // TODO: this test needs an update (it currently fails).
|
2018-08-24 21:07:48 +08:00
|
|
|
TEST_F(CommandlineflagsTest, PrintUsageAndExit) {
|
|
|
|
const char* argv[] = { "Progname", "--help" };
|
2021-02-24 03:19:52 +08:00
|
|
|
EXPECT_EXIT(TestParser("Progname [flags]", countof(argv), argv),
|
2018-08-24 21:07:48 +08:00
|
|
|
::testing::ExitedWithCode(0),
|
|
|
|
"USAGE: Progname \\[flags\\]");
|
|
|
|
}
|
2018-08-27 17:54:10 +08:00
|
|
|
#endif
|
2018-08-24 21:07:48 +08:00
|
|
|
|
|
|
|
TEST_F(CommandlineflagsTest, ExitsWithErrorOnInvalidFlag) {
|
2021-03-13 05:06:34 +08:00
|
|
|
const char *argv[] = {"", "--test_nonexistent_flag"};
|
2021-02-24 03:19:52 +08:00
|
|
|
EXPECT_EXIT(TestParser(countof(argv), argv), ::testing::ExitedWithCode(1),
|
2018-08-24 21:07:48 +08:00
|
|
|
"ERROR: Non-existent flag");
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(CommandlineflagsTest, ParseIntegerFlags) {
|
2021-03-13 05:06:34 +08:00
|
|
|
const char *argv[] = {"", "--foo_int=3", "--bar_int", "-4"};
|
2021-02-24 03:19:52 +08:00
|
|
|
TestParser(countof(argv), argv);
|
2018-08-24 21:07:48 +08:00
|
|
|
EXPECT_EQ(3, FLAGS_foo_int);
|
|
|
|
EXPECT_EQ(-4, FLAGS_bar_int);
|
|
|
|
|
2021-03-13 05:06:34 +08:00
|
|
|
const char *arg_no_value[] = {"", "--bar_int"};
|
|
|
|
EXPECT_EXIT(TestParser(countof(arg_no_value), arg_no_value), ::testing::ExitedWithCode(1),
|
|
|
|
"ERROR");
|
2018-08-24 21:07:48 +08:00
|
|
|
|
2021-03-13 05:06:34 +08:00
|
|
|
const char *arg_invalid_value[] = {"", "--bar_int", "--foo_int=3"};
|
2021-02-24 03:19:52 +08:00
|
|
|
EXPECT_EXIT(TestParser(countof(arg_invalid_value), arg_invalid_value),
|
2018-08-24 21:07:48 +08:00
|
|
|
::testing::ExitedWithCode(1), "ERROR");
|
|
|
|
|
2021-03-13 05:06:34 +08:00
|
|
|
const char *arg_bad_format[] = {"", "--bar_int="};
|
|
|
|
EXPECT_EXIT(TestParser(countof(arg_bad_format), arg_bad_format), ::testing::ExitedWithCode(1),
|
|
|
|
"ERROR");
|
2018-08-24 21:07:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(CommandlineflagsTest, ParseDoubleFlags) {
|
2021-03-13 05:06:34 +08:00
|
|
|
const char *argv[] = {"", "--foo_double=3.14", "--bar_double", "1.2"};
|
2021-02-24 03:19:52 +08:00
|
|
|
TestParser(countof(argv), argv);
|
2018-08-24 21:07:48 +08:00
|
|
|
|
|
|
|
EXPECT_EQ(3.14, FLAGS_foo_double);
|
|
|
|
EXPECT_EQ(1.2, FLAGS_bar_double);
|
|
|
|
|
2021-03-13 05:06:34 +08:00
|
|
|
const char *arg_no_value[] = {"", "--bar_double"};
|
|
|
|
EXPECT_EXIT(TestParser(2, arg_no_value), ::testing::ExitedWithCode(1), "ERROR");
|
2018-08-24 21:07:48 +08:00
|
|
|
|
2021-03-13 05:06:34 +08:00
|
|
|
const char *arg_bad_format[] = {"", "--bar_double="};
|
|
|
|
EXPECT_EXIT(TestParser(2, arg_bad_format), ::testing::ExitedWithCode(1), "ERROR");
|
2018-08-24 21:07:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(CommandlineflagsTest, ParseStringFlags) {
|
2021-03-13 05:06:34 +08:00
|
|
|
const char *argv[] = {"", "--foo_string=abc", "--bar_string", "def"};
|
2021-02-24 03:19:52 +08:00
|
|
|
TestParser(countof(argv), argv);
|
2018-08-24 21:07:48 +08:00
|
|
|
|
|
|
|
EXPECT_STREQ("abc", FLAGS_foo_string.c_str());
|
|
|
|
EXPECT_STREQ("def", FLAGS_bar_string.c_str());
|
|
|
|
|
2021-03-13 05:06:34 +08:00
|
|
|
const char *arg_no_value[] = {"", "--bar_string"};
|
|
|
|
EXPECT_EXIT(TestParser(2, arg_no_value), ::testing::ExitedWithCode(1), "ERROR");
|
2018-08-24 21:07:48 +08:00
|
|
|
|
|
|
|
FLAGS_bar_string.set_value("bar");
|
2021-03-13 05:06:34 +08:00
|
|
|
const char *arg_empty_string[] = {"", "--bar_string="};
|
2018-08-24 21:07:48 +08:00
|
|
|
TestParser(2, arg_empty_string);
|
|
|
|
EXPECT_STREQ("", FLAGS_bar_string.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(CommandlineflagsTest, ParseBoolFlags) {
|
2021-03-13 05:06:34 +08:00
|
|
|
const char *argv[] = {"", "--foo_bool=true", "--bar_bool=1"};
|
2018-08-24 21:07:48 +08:00
|
|
|
FLAGS_foo_bool.set_value(false);
|
|
|
|
FLAGS_bar_bool.set_value(false);
|
2021-02-24 03:19:52 +08:00
|
|
|
TestParser(countof(argv), argv);
|
2018-08-24 21:07:48 +08:00
|
|
|
// Verify changed value
|
|
|
|
EXPECT_TRUE(FLAGS_foo_bool);
|
|
|
|
EXPECT_TRUE(FLAGS_bar_bool);
|
|
|
|
|
2021-03-13 05:06:34 +08:00
|
|
|
const char *inv_argv[] = {"", "--foo_bool=false", "--bar_bool=0"};
|
2018-08-24 21:07:48 +08:00
|
|
|
FLAGS_foo_bool.set_value(true);
|
|
|
|
FLAGS_bar_bool.set_value(true);
|
|
|
|
TestParser(3, inv_argv);
|
|
|
|
// Verify changed value
|
|
|
|
EXPECT_FALSE(FLAGS_foo_bool);
|
|
|
|
EXPECT_FALSE(FLAGS_bar_bool);
|
|
|
|
|
2021-03-13 05:06:34 +08:00
|
|
|
const char *arg_implied_true[] = {"", "--bar_bool"};
|
2018-08-24 21:07:48 +08:00
|
|
|
FLAGS_bar_bool.set_value(false);
|
|
|
|
TestParser(2, arg_implied_true);
|
|
|
|
EXPECT_TRUE(FLAGS_bar_bool);
|
|
|
|
|
2021-03-13 05:06:34 +08:00
|
|
|
const char *arg_missing_val[] = {"", "--bar_bool="};
|
|
|
|
EXPECT_EXIT(TestParser(2, arg_missing_val), ::testing::ExitedWithCode(1), "ERROR");
|
2018-08-24 21:07:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(CommandlineflagsTest, ParseOldFlags) {
|
|
|
|
EXPECT_STREQ("", FLAGS_q.c_str());
|
2021-03-13 05:06:34 +08:00
|
|
|
const char *argv[] = {"", "-q", "text"};
|
2021-02-24 03:19:52 +08:00
|
|
|
TestParser(countof(argv), argv);
|
2018-08-24 21:07:48 +08:00
|
|
|
EXPECT_STREQ("text", FLAGS_q.c_str());
|
|
|
|
}
|
2021-03-13 05:06:34 +08:00
|
|
|
} // namespace tesseract
|