/* * * Copyright 2015 gRPC authors. * * 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. * */ #include "test/core/util/cmdline.h" #include #include "gtest/gtest.h" #include #include "src/core/lib/gpr/useful.h" #include "test/core/util/test_config.h" #define LOG_TEST() gpr_log(GPR_INFO, "test at %s:%d", __FILE__, __LINE__) TEST(CmdlineTest, SimpleInt) { int x = 1; gpr_cmdline* cl; char* args[] = {const_cast(__FILE__), const_cast("-foo"), const_cast("3")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_add_int(cl, "foo", nullptr, &x); ASSERT_EQ(x, 1); gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); ASSERT_EQ(x, 3); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, EqInt) { int x = 1; gpr_cmdline* cl; char* args[] = {const_cast(__FILE__), const_cast("-foo=3")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_add_int(cl, "foo", nullptr, &x); ASSERT_EQ(x, 1); gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); ASSERT_EQ(x, 3); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, 2DashInt) { int x = 1; gpr_cmdline* cl; char* args[] = {const_cast(__FILE__), const_cast("--foo"), const_cast("3")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_add_int(cl, "foo", nullptr, &x); ASSERT_EQ(x, 1); gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); ASSERT_EQ(x, 3); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, 2DashEqInt) { int x = 1; gpr_cmdline* cl; char* args[] = {const_cast(__FILE__), const_cast("--foo=3")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_add_int(cl, "foo", nullptr, &x); ASSERT_EQ(x, 1); gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); ASSERT_EQ(x, 3); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, SimpleString) { const char* x = nullptr; gpr_cmdline* cl; char* args[] = {const_cast(__FILE__), const_cast("-foo"), const_cast("3")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_add_string(cl, "foo", nullptr, &x); ASSERT_EQ(x, nullptr); gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); ASSERT_STREQ(x, "3"); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, EqString) { const char* x = nullptr; gpr_cmdline* cl; char* args[] = {const_cast(__FILE__), const_cast("-foo=3")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_add_string(cl, "foo", nullptr, &x); ASSERT_EQ(x, nullptr); gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); ASSERT_STREQ(x, "3"); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, 2DashString) { const char* x = nullptr; gpr_cmdline* cl; char* args[] = {const_cast(__FILE__), const_cast("--foo"), const_cast("3")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_add_string(cl, "foo", nullptr, &x); ASSERT_EQ(x, nullptr); gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); ASSERT_STREQ(x, "3"); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, 2DashEqString) { const char* x = nullptr; gpr_cmdline* cl; char* args[] = {const_cast(__FILE__), const_cast("--foo=3")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_add_string(cl, "foo", nullptr, &x); ASSERT_EQ(x, nullptr); gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); ASSERT_STREQ(x, "3"); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, FlagOn) { int x = 2; gpr_cmdline* cl; char* args[] = {const_cast(__FILE__), const_cast("--foo")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_add_flag(cl, "foo", nullptr, &x); ASSERT_EQ(x, 2); gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); ASSERT_EQ(x, 1); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, FlagNo) { int x = 2; gpr_cmdline* cl; char* args[] = {const_cast(__FILE__), const_cast("--no-foo")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_add_flag(cl, "foo", nullptr, &x); ASSERT_EQ(x, 2); gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); ASSERT_EQ(x, 0); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, FlagVal1) { int x = 2; gpr_cmdline* cl; char* args[] = {const_cast(__FILE__), const_cast("--foo=1")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_add_flag(cl, "foo", nullptr, &x); ASSERT_EQ(x, 2); gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); ASSERT_EQ(x, 1); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, FlagVal0) { int x = 2; gpr_cmdline* cl; char* args[] = {const_cast(__FILE__), const_cast("--foo=0")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_add_flag(cl, "foo", nullptr, &x); ASSERT_EQ(x, 2); gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); ASSERT_EQ(x, 0); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, FlagValTrue) { int x = 2; gpr_cmdline* cl; char* args[] = {const_cast(__FILE__), const_cast("--foo=true")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_add_flag(cl, "foo", nullptr, &x); ASSERT_EQ(x, 2); gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); ASSERT_EQ(x, 1); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, FlagValFalse) { int x = 2; gpr_cmdline* cl; char* args[] = {const_cast(__FILE__), const_cast("--foo=false")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_add_flag(cl, "foo", nullptr, &x); ASSERT_EQ(x, 2); gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); ASSERT_EQ(x, 0); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, Many) { const char* str = nullptr; int x = 0; int flag = 2; gpr_cmdline* cl; char* args[] = {const_cast(__FILE__), const_cast("--str"), const_cast("hello"), const_cast("-x=4"), const_cast("-no-flag")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_add_string(cl, "str", nullptr, &str); gpr_cmdline_add_int(cl, "x", nullptr, &x); gpr_cmdline_add_flag(cl, "flag", nullptr, &flag); gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); ASSERT_EQ(x, 4); ASSERT_STREQ(str, "hello"); ASSERT_EQ(flag, 0); gpr_cmdline_destroy(cl); } static void extra_arg_cb(void* user_data, const char* arg) { int* count = static_cast(user_data); ASSERT_NE(arg, nullptr); ASSERT_EQ(strlen(arg), 1); ASSERT_EQ(arg[0], 'a' + *count); ++*count; } TEST(CmdlineTest, Extra) { gpr_cmdline* cl; int count = 0; char* args[] = {const_cast(__FILE__), const_cast("a"), const_cast("b"), const_cast("c")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_on_extra_arg(cl, "file", "filenames to process", extra_arg_cb, &count); gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); ASSERT_EQ(count, 3); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, ExtraDashdash) { gpr_cmdline* cl; int count = 0; char* args[] = {const_cast(__FILE__), const_cast("--"), const_cast("a"), const_cast("b"), const_cast("c")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_on_extra_arg(cl, "file", "filenames to process", extra_arg_cb, &count); gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); ASSERT_EQ(count, 3); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, Usage) { gpr_cmdline* cl; const char* str = nullptr; int x = 0; int flag = 2; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_add_string(cl, "str", nullptr, &str); gpr_cmdline_add_int(cl, "x", nullptr, &x); gpr_cmdline_add_flag(cl, "flag", nullptr, &flag); gpr_cmdline_on_extra_arg(cl, "file", "filenames to process", extra_arg_cb, nullptr); std::string usage = gpr_cmdline_usage_string(cl, "test"); ASSERT_EQ(usage, "Usage: test [--str=string] [--x=int] " "[--flag|--no-flag] [file...]\n"); usage = gpr_cmdline_usage_string(cl, "/foo/test"); ASSERT_EQ(usage, "Usage: test [--str=string] [--x=int] " "[--flag|--no-flag] [file...]\n"); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, Help) { gpr_cmdline* cl; const char* str = nullptr; int x = 0; int flag = 2; char* help[] = {const_cast(__FILE__), const_cast("-h")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_set_survive_failure(cl); gpr_cmdline_add_string(cl, "str", nullptr, &str); gpr_cmdline_add_int(cl, "x", nullptr, &x); gpr_cmdline_add_flag(cl, "flag", nullptr, &flag); gpr_cmdline_on_extra_arg(cl, "file", "filenames to process", extra_arg_cb, nullptr); ASSERT_EQ(0, gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(help), help)); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, Badargs1) { gpr_cmdline* cl; const char* str = nullptr; int x = 0; int flag = 2; char* bad_arg_name[] = {const_cast(__FILE__), const_cast("--y")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_set_survive_failure(cl); gpr_cmdline_add_string(cl, "str", nullptr, &str); gpr_cmdline_add_int(cl, "x", nullptr, &x); gpr_cmdline_add_flag(cl, "flag", nullptr, &flag); gpr_cmdline_on_extra_arg(cl, "file", "filenames to process", extra_arg_cb, nullptr); ASSERT_EQ(0, gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(bad_arg_name), bad_arg_name)); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, Badargs2) { gpr_cmdline* cl; const char* str = nullptr; int x = 0; int flag = 2; char* bad_int_value[] = {const_cast(__FILE__), const_cast("--x"), const_cast("henry")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_set_survive_failure(cl); gpr_cmdline_add_string(cl, "str", nullptr, &str); gpr_cmdline_add_int(cl, "x", nullptr, &x); gpr_cmdline_add_flag(cl, "flag", nullptr, &flag); gpr_cmdline_on_extra_arg(cl, "file", "filenames to process", extra_arg_cb, nullptr); ASSERT_EQ( 0, gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(bad_int_value), bad_int_value)); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, Badargs3) { gpr_cmdline* cl; const char* str = nullptr; int x = 0; int flag = 2; char* bad_bool_value[] = {const_cast(__FILE__), const_cast("--flag=henry")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_set_survive_failure(cl); gpr_cmdline_add_string(cl, "str", nullptr, &str); gpr_cmdline_add_int(cl, "x", nullptr, &x); gpr_cmdline_add_flag(cl, "flag", nullptr, &flag); gpr_cmdline_on_extra_arg(cl, "file", "filenames to process", extra_arg_cb, nullptr); ASSERT_EQ( 0, gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(bad_bool_value), bad_bool_value)); gpr_cmdline_destroy(cl); } TEST(CmdlineTest, Badargs4) { gpr_cmdline* cl; const char* str = nullptr; int x = 0; int flag = 2; char* bad_bool_value[] = {const_cast(__FILE__), const_cast("--no-str")}; LOG_TEST(); cl = gpr_cmdline_create(nullptr); gpr_cmdline_set_survive_failure(cl); gpr_cmdline_add_string(cl, "str", nullptr, &str); gpr_cmdline_add_int(cl, "x", nullptr, &x); gpr_cmdline_add_flag(cl, "flag", nullptr, &flag); gpr_cmdline_on_extra_arg(cl, "file", "filenames to process", extra_arg_cb, nullptr); ASSERT_EQ( 0, gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(bad_bool_value), bad_bool_value)); gpr_cmdline_destroy(cl); } int main(int argc, char** argv) { grpc::testing::TestEnvironment env(&argc, argv); ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }