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

Unified Diff: chrome/browser/sync/util/nigori_unittest.cc

Issue 2089019: Add unit tests for Nigori permute and decrypt. (Closed)
Patch Set: Created 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/util/nigori_unittest.cc
diff --git a/chrome/browser/sync/util/nigori_unittest.cc b/chrome/browser/sync/util/nigori_unittest.cc
index 4c6af890a689ac5107e0380e3ca15c061ce8fd20..0294ec7650c7a53ca0db383953637c8abe6a1219 100644
--- a/chrome/browser/sync/util/nigori_unittest.cc
+++ b/chrome/browser/sync/util/nigori_unittest.cc
@@ -97,3 +97,32 @@ TEST(NigoriTest, CorruptedCiphertext) {
EXPECT_NE(plaintext, decrypted);
}
+
+TEST(NigoriTest, Permute) {
+ browser_sync::Nigori nigori("example.com");
+ EXPECT_TRUE(nigori.Init("username", "password"));
+
+ std::string permuted;
+ EXPECT_TRUE(nigori.Permute(browser_sync::Nigori::Password, "test name",
+ &permuted));
+
+ std::string expected =
+ "prewwdJj2PrGDczvmsHJEE5ndcCyVze8sY9kD5hjY/Tm"
+ "c5kOjXFK7zB3Ss4LlHjEDirMu+vh85JwHOnGrMVe+g==";
+ EXPECT_EQ(expected, permuted);
+}
+
+TEST(NigoriTest, Decrypt) {
+ browser_sync::Nigori nigori("example.com");
+ EXPECT_TRUE(nigori.Init("username", "password"));
+
+ std::string encrypted =
+ "e7+JyS6ibj6F5qqvpseukNRTZ+oBpu5iuv2VYjOfrH1dNiFLNf7Ov0"
+ "kx/zicKFn0lJcbG1UmkNWqIuR4x+quDNVuLaZGbrJPhrJuj7cokCM=";
+
+ std::string plaintext;
+ EXPECT_TRUE(nigori.Decrypt(encrypted, &plaintext));
+
+ std::string expected("test, test, 1, 2, 3");
+ EXPECT_EQ(expected, plaintext);
+}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698