Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3217)

Unified Diff: base/command_line_unittest.cc

Issue 18248: CommandLine API rework (Closed)
Patch Set: fixes Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/command_line.cc ('k') | base/logging.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/command_line_unittest.cc
diff --git a/base/command_line_unittest.cc b/base/command_line_unittest.cc
index 504c8522b1e01cc0d9e44325bb58ed6afa8c8ecf..563b060e2e9f24376f2e361892b1e0c9fdfa737e 100644
--- a/base/command_line_unittest.cc
+++ b/base/command_line_unittest.cc
@@ -11,22 +11,19 @@
#include "base/string_util.h"
#include "testing/gtest/include/gtest/gtest.h"
-namespace {
- class CommandLineTest : public testing::Test {
- };
-};
-
TEST(CommandLineTest, CommandLineConstructor) {
-#ifdef OS_WIN
- CommandLine cl(L"program --foo= -bAr /Spaetzel=pierogi /Baz flim "
- L"--other-switches=\"--dog=canine --cat=feline\" "
- L"-spaetzle=Crepe -=loosevalue flan "
- L"--input-translation=\"45\"--output-rotation "
- L"-- -- --not-a-switch "
- L"\"in the time of submarines...\"");
+#if defined(OS_WIN)
+ CommandLine cl(L"");
+ cl.ParseFromString(L"program --foo= -bAr /Spaetzel=pierogi /Baz flim "
+ L"--other-switches=\"--dog=canine --cat=feline\" "
+ L"-spaetzle=Crepe -=loosevalue flan "
+ L"--input-translation=\"45\"--output-rotation "
+ L"-- -- --not-a-switch "
+ L"\"in the time of submarines...\"");
+ EXPECT_FALSE(cl.command_line_string().empty());
#elif defined(OS_POSIX)
- const char* argv[] = {"program", "--foo=", "-bAr",
- "-Spaetzel=pierogi", "-Baz", "flim",
+ const char* argv[] = {"program", "--foo=", "-bar",
+ "-spaetzel=pierogi", "-baz", "flim",
"--other-switches=--dog=canine --cat=feline",
"-spaetzle=Crepe", "-=loosevalue", "flan",
"--input-translation=45--output-rotation",
@@ -34,7 +31,6 @@ TEST(CommandLineTest, CommandLineConstructor) {
"in the time of submarines..."};
CommandLine cl(arraysize(argv), argv);
#endif
- EXPECT_FALSE(cl.command_line_string().empty());
EXPECT_FALSE(cl.HasSwitch(L"cruller"));
EXPECT_FALSE(cl.HasSwitch(L"flim"));
EXPECT_FALSE(cl.HasSwitch(L"program"));
@@ -50,7 +46,9 @@ TEST(CommandLineTest, CommandLineConstructor) {
EXPECT_TRUE(cl.HasSwitch(L"bar"));
EXPECT_TRUE(cl.HasSwitch(L"baz"));
EXPECT_TRUE(cl.HasSwitch(L"spaetzle"));
+#if defined(OS_WIN)
EXPECT_TRUE(cl.HasSwitch(L"SPAETZLE"));
+#endif
EXPECT_TRUE(cl.HasSwitch(L"other-switches"));
EXPECT_TRUE(cl.HasSwitch(L"input-translation"));
@@ -61,9 +59,10 @@ TEST(CommandLineTest, CommandLineConstructor) {
EXPECT_EQ(L"--dog=canine --cat=feline", cl.GetSwitchValue(L"other-switches"));
EXPECT_EQ(L"45--output-rotation", cl.GetSwitchValue(L"input-translation"));
- EXPECT_EQ(5U, cl.GetLooseValueCount());
+ std::vector<std::wstring> loose_values = cl.GetLooseValues();
+ ASSERT_EQ(5U, loose_values.size());
- CommandLine::LooseValueIterator iter = cl.GetLooseValuesBegin();
+ std::vector<std::wstring>::const_iterator iter = loose_values.begin();
EXPECT_EQ(L"flim", *iter);
++iter;
EXPECT_EQ(L"flan", *iter);
@@ -74,9 +73,9 @@ TEST(CommandLineTest, CommandLineConstructor) {
++iter;
EXPECT_EQ(L"in the time of submarines...", *iter);
++iter;
- EXPECT_TRUE(iter == cl.GetLooseValuesEnd());
+ EXPECT_TRUE(iter == loose_values.end());
#if defined(OS_POSIX)
- std::vector<std::string> argvec = cl.argv();
+ const std::vector<std::string>& argvec = cl.argv();
for (size_t i = 0; i < argvec.size(); i++) {
EXPECT_EQ(0, argvec[i].compare(argv[i]));
@@ -84,27 +83,20 @@ TEST(CommandLineTest, CommandLineConstructor) {
#endif
}
-// These test the command line used to invoke the unit test.
-TEST(CommandLineTest, DefaultConstructor) {
- CommandLine cl;
- EXPECT_FALSE(cl.command_line_string().empty());
- EXPECT_FALSE(cl.program().empty());
-}
-
// Tests behavior with an empty input string.
TEST(CommandLineTest, EmptyString) {
#if defined(OS_WIN)
CommandLine cl(L"");
+ EXPECT_TRUE(cl.command_line_string().empty());
+ EXPECT_TRUE(cl.program().empty());
#elif defined(OS_POSIX)
CommandLine cl(0, NULL);
EXPECT_TRUE(cl.argv().size() == 0);
#endif
- EXPECT_TRUE(cl.command_line_string().empty());
- EXPECT_TRUE(cl.program().empty());
- EXPECT_EQ(0U, cl.GetLooseValueCount());
+ EXPECT_EQ(0U, cl.GetLooseValues().size());
}
-// Test static functions for appending switches to a command line.
+// Test methods for appending switches to a command line.
TEST(CommandLineTest, AppendSwitches) {
std::wstring switch1 = L"switch1";
std::wstring switch2 = L"switch2";
@@ -115,31 +107,24 @@ TEST(CommandLineTest, AppendSwitches) {
std::wstring value4 = L"\"a value with quotes\"";
#if defined(OS_WIN)
- std::wstring cl_string = L"Program";
- CommandLine::AppendSwitch(&cl_string, switch1);
- CommandLine::AppendSwitchWithValue(&cl_string, switch2, value);
- CommandLine::AppendSwitchWithValue(&cl_string, switch3, value3);
- CommandLine::AppendSwitchWithValue(&cl_string, switch4, value4);
- CommandLine cl(cl_string);
+ CommandLine cl(L"Program");
#elif defined(OS_POSIX)
std::vector<std::string> argv;
argv.push_back(std::string("Program"));
- argv.push_back(WideToUTF8(CommandLine::PrefixedSwitchString(switch1)));
- argv.push_back(WideToUTF8(CommandLine::PrefixedSwitchStringWithValue(
- switch2, value)));
- argv.push_back(WideToUTF8(CommandLine::PrefixedSwitchStringWithValue(
- switch3, value3)));
- argv.push_back(WideToUTF8(CommandLine::PrefixedSwitchStringWithValue(
- switch4, value4.substr(1, value4.length() - 2))));
CommandLine cl(argv);
#endif
+ cl.AppendSwitch(switch1);
+ cl.AppendSwitchWithValue(switch2, value);
+ cl.AppendSwitchWithValue(switch3, value3);
+ cl.AppendSwitchWithValue(switch4, value4);
+
EXPECT_TRUE(cl.HasSwitch(switch1));
EXPECT_TRUE(cl.HasSwitch(switch2));
EXPECT_EQ(value, cl.GetSwitchValue(switch2));
EXPECT_TRUE(cl.HasSwitch(switch3));
EXPECT_EQ(value3, cl.GetSwitchValue(switch3));
EXPECT_TRUE(cl.HasSwitch(switch4));
- EXPECT_EQ(value4.substr(1, value4.length() - 2), cl.GetSwitchValue(switch4));
+ EXPECT_EQ(value4, cl.GetSwitchValue(switch4));
}
« no previous file with comments | « base/command_line.cc ('k') | base/logging.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698