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

Unified Diff: third_party/mojo/src/mojo/edk/system/unique_identifier_unittest.cc

Issue 1157843002: Update mojo sdk to rev 1dc8a9a5db73d3718d99917fadf31f5fb2ebad4f (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
Index: third_party/mojo/src/mojo/edk/system/unique_identifier_unittest.cc
diff --git a/third_party/mojo/src/mojo/edk/system/unique_identifier_unittest.cc b/third_party/mojo/src/mojo/edk/system/unique_identifier_unittest.cc
index 524129329db292b331e1361e0ffae7c6d05a86c9..15b70b466c3f3ef1866f6bdd3911f9794b3f2c04 100644
--- a/third_party/mojo/src/mojo/edk/system/unique_identifier_unittest.cc
+++ b/third_party/mojo/src/mojo/edk/system/unique_identifier_unittest.cc
@@ -5,7 +5,7 @@
#include "mojo/edk/system/unique_identifier.h"
#include <set>
-#include <sstream>
+#include <string>
#include "base/containers/hash_tables.h"
#include "base/macros.h"
@@ -47,19 +47,66 @@ TEST_F(UniqueIdentifierTest, Basic) {
id2 = id1;
}
-TEST_F(UniqueIdentifierTest, Logging) {
- std::ostringstream oss1;
+TEST_F(UniqueIdentifierTest, ToString) {
UniqueIdentifier id1 = UniqueIdentifier::Generate(platform_support());
- oss1 << id1;
- EXPECT_FALSE(oss1.str().empty());
+ std::string id1_string = id1.ToString();
+ EXPECT_FALSE(id1_string.empty());
+
+ // The string should be printable, and not contain certain characters.
+ for (size_t i = 0; i < id1_string.size(); i++) {
+ char c = id1_string[i];
+ // Printable characters, not including space.
+ EXPECT_GT(c, ' ');
+ EXPECT_LE(c, '\x7e');
+ // Single and double quotes, and backslashes are disallowed.
+ EXPECT_NE(c, '\'');
+ EXPECT_NE(c, '"');
+ EXPECT_NE(c, '\\');
+ }
- std::ostringstream oss2;
UniqueIdentifier id2 = UniqueIdentifier::Generate(platform_support());
- oss2 << id2;
- EXPECT_FALSE(oss2.str().empty());
+ std::string id2_string = id2.ToString();
+ EXPECT_FALSE(id2_string.empty());
EXPECT_NE(id1, id2);
- EXPECT_NE(oss1.str(), oss2.str());
+ EXPECT_NE(id1_string, id2_string);
+}
+
+TEST_F(UniqueIdentifierTest, FromString) {
+ UniqueIdentifier id = UniqueIdentifier::Generate(platform_support());
+ std::string id_string = id.ToString();
+ EXPECT_FALSE(id_string.empty());
+
+ bool success = false;
+ UniqueIdentifier id_restored =
+ UniqueIdentifier::FromString(id_string, &success);
+ EXPECT_TRUE(success);
+ EXPECT_EQ(id, id_restored);
+}
+
+TEST_F(UniqueIdentifierTest, FromStringFailures) {
+ bool success = true;
+ UniqueIdentifier::FromString("", &success);
+ EXPECT_FALSE(success);
+
+ // That the cases below will fail requires *some* knowledge of the (private)
+ // encoding. So first check something that we know should succeed, to roughly
+ // confirm our knowledge.
+ success = false;
+ UniqueIdentifier::FromString("0123456789abcdef0123456789ABCDEF", &success);
+ EXPECT_TRUE(success);
+
+ success = true;
+ UniqueIdentifier::FromString("!@#$%^&*()_+-=/\\,.<>[]{};':\"|", &success);
+ EXPECT_FALSE(success);
+
+ success = true;
+ UniqueIdentifier::FromString("0123456789abcdef0123456789ABCDE", &success);
+ EXPECT_FALSE(success);
+
+ success = true;
+ UniqueIdentifier::FromString("0123456789abcdef0123456789ABCD", &success);
+ EXPECT_FALSE(success);
}
TEST_F(UniqueIdentifierTest, StdSet) {
« no previous file with comments | « third_party/mojo/src/mojo/edk/system/unique_identifier.cc ('k') | third_party/mojo/src/mojo/edk/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698