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

Unified Diff: components/proximity_auth/base64url_unittest.cc

Issue 1063323002: Move base64url.* to CryptAuth component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cryptauth_refactor
Patch Set: rename path in chrome/browser/chromeos Created 5 years, 8 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 | « components/proximity_auth/base64url.cc ('k') | components/proximity_auth/client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/proximity_auth/base64url_unittest.cc
diff --git a/components/proximity_auth/base64url_unittest.cc b/components/proximity_auth/base64url_unittest.cc
deleted file mode 100644
index 946185814d14e9ba8931f515ebcc5a10b8aceac8..0000000000000000000000000000000000000000
--- a/components/proximity_auth/base64url_unittest.cc
+++ /dev/null
@@ -1,67 +0,0 @@
-// Copyright 2014 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.
-
-#include "components/proximity_auth/base64url.h"
-
-#include "base/base64.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace proximity_auth {
-
-TEST(ProximityAuthBase64UrlTest, EncodeRegularString) {
- const std::string input = "Hello world!";
- const std::string expected_output = "SGVsbG8gd29ybGQh";
-
- std::string web_safe_output;
- Base64UrlEncode(input, &web_safe_output);
- EXPECT_EQ(expected_output, web_safe_output);
-
- // For good measure, make sure that the encoding matches the //base
- // implemenation as well.
- std::string non_web_safe_output;
- base::Base64Encode(input, &non_web_safe_output);
- EXPECT_EQ(web_safe_output, non_web_safe_output);
-}
-
-TEST(ProximityAuthBase64UrlTest, DecodeRegularString) {
- const std::string input = "SGVsbG8gd29ybGQh";
- const std::string expected_output = "Hello world!";
-
- std::string web_safe_output;
- EXPECT_TRUE(Base64UrlDecode(input, &web_safe_output));
- EXPECT_EQ(expected_output, web_safe_output);
-
- // For good measure, make sure that the encoding matches the //base
- // implemenation as well.
- std::string non_web_safe_output;
- EXPECT_TRUE(base::Base64Decode(input, &non_web_safe_output));
- EXPECT_EQ(web_safe_output, non_web_safe_output);
-}
-
-TEST(ProximityAuthBase64UrlTest, EncodeSpecialCharacters) {
- // This happens to be a stable encoding, i.e. encode(decode(s)) gives back s.
- const std::string encoded = "/+Y=";
- std::string decoded;
- ASSERT_TRUE(base::Base64Decode(encoded, &decoded));
-
- // Decoded strings that encode to special characters are non-printable, so,
- // for ease of testing, just compare the web-safe and non-web-safe encodings.
- std::string web_safe_encoded;
- Base64UrlEncode(decoded, &web_safe_encoded);
- EXPECT_EQ("_-Y=", web_safe_encoded);
-}
-
-TEST(ProximityAuthBase64UrlTest, DecodeSpecialCharacters) {
- const std::string encoded = "_-Y=";
- std::string decoded;
- ASSERT_TRUE(Base64UrlDecode(encoded, &decoded));
-
- // Decoded strings that encode to special characters are non-printable, so,
- // for ease of testing, just compare the web-safe and non-web-safe encodings.
- std::string non_web_safe_encoded;
- base::Base64Encode(decoded, &non_web_safe_encoded);
- EXPECT_EQ("/+Y=", non_web_safe_encoded);
-}
-
-} // namespace proximity_auth
« no previous file with comments | « components/proximity_auth/base64url.cc ('k') | components/proximity_auth/client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698