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

Unified Diff: rlz/lib/string_utils_unittest.cc

Issue 10642009: Add a regenerate button to regenerate the password in Windows. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Sync and Merge. Created 8 years, 6 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 | « rlz/lib/string_utils.cc ('k') | rlz/mac/lib/machine_id_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: rlz/lib/string_utils_unittest.cc
diff --git a/rlz/lib/string_utils_unittest.cc b/rlz/lib/string_utils_unittest.cc
deleted file mode 100644
index 82a6edbf40726c3a56beca30361a0180d94adcaf..0000000000000000000000000000000000000000
--- a/rlz/lib/string_utils_unittest.cc
+++ /dev/null
@@ -1,69 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-//
-// Unit test for string manipulation functions used in the RLZ library.
-
-#include "rlz/lib/string_utils.h"
-
-#include "base/basictypes.h"
-#include "base/logging.h"
-#include "base/utf_string_conversions.h"
-#include "rlz/lib/assert.h"
-#include "testing/gmock/include/gmock/gmock.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-TEST(StringUtilsUnittest, IsAscii) {
- rlz_lib::SetExpectedAssertion("");
-
- char bad_letters[] = {'\x80', '\xA0', '\xFF'};
- for (size_t i = 0; i < arraysize(bad_letters); ++i)
- EXPECT_FALSE(rlz_lib::IsAscii(bad_letters[i]));
-
- char good_letters[] = {'A', '~', '\n', 0x7F, 0x00};
- for (size_t i = 0; i < arraysize(good_letters); ++i)
- EXPECT_TRUE(rlz_lib::IsAscii(good_letters[i]));
-}
-
-TEST(StringUtilsUnittest, HexStringToInteger) {
- rlz_lib::SetExpectedAssertion("HexStringToInteger: text is NULL.");
- EXPECT_EQ(0, rlz_lib::HexStringToInteger(NULL));
-
- rlz_lib::SetExpectedAssertion("");
- EXPECT_EQ(0, rlz_lib::HexStringToInteger(""));
- EXPECT_EQ(0, rlz_lib::HexStringToInteger(" "));
- EXPECT_EQ(0, rlz_lib::HexStringToInteger(" 0x "));
- EXPECT_EQ(0, rlz_lib::HexStringToInteger(" 0x0 "));
- EXPECT_EQ(0x12345, rlz_lib::HexStringToInteger("12345"));
- EXPECT_EQ(0xa34Ed0, rlz_lib::HexStringToInteger("a34Ed0"));
- EXPECT_EQ(0xa34Ed0, rlz_lib::HexStringToInteger("0xa34Ed0"));
- EXPECT_EQ(0xa34Ed0, rlz_lib::HexStringToInteger(" 0xa34Ed0"));
- EXPECT_EQ(0xa34Ed0, rlz_lib::HexStringToInteger("0xa34Ed0 "));
- EXPECT_EQ(0xa34Ed0, rlz_lib::HexStringToInteger(" 0xa34Ed0 "));
- EXPECT_EQ(0xa34Ed0, rlz_lib::HexStringToInteger(" 0x000a34Ed0 "));
- EXPECT_EQ(0xa34Ed0, rlz_lib::HexStringToInteger(" 000a34Ed0 "));
-
- rlz_lib::SetExpectedAssertion(
- "HexStringToInteger: text contains non-hex characters.");
- EXPECT_EQ(0x12ff, rlz_lib::HexStringToInteger("12ffg"));
- EXPECT_EQ(0x12f, rlz_lib::HexStringToInteger("12f 121"));
- EXPECT_EQ(0x12f, rlz_lib::HexStringToInteger("12f 121"));
- EXPECT_EQ(0, rlz_lib::HexStringToInteger("g12f"));
- EXPECT_EQ(0, rlz_lib::HexStringToInteger(" 0x0 \n"));
-
- rlz_lib::SetExpectedAssertion("");
-}
-
-TEST(StringUtilsUnittest, TestBytesToString) {
- unsigned char data[] = {0x1E, 0x00, 0x21, 0x67, 0xFF};
- std::string result;
-
- EXPECT_FALSE(rlz_lib::BytesToString(NULL, 5, &result));
- EXPECT_FALSE(rlz_lib::BytesToString(data, 5, NULL));
- EXPECT_FALSE(rlz_lib::BytesToString(NULL, 5, NULL));
-
- EXPECT_TRUE(rlz_lib::BytesToString(data, 5, &result));
- EXPECT_EQ(std::string("1E002167FF"), result);
- EXPECT_TRUE(rlz_lib::BytesToString(data, 4, &result));
- EXPECT_EQ(std::string("1E002167"), result);
-}
« no previous file with comments | « rlz/lib/string_utils.cc ('k') | rlz/mac/lib/machine_id_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698