summaryrefslogtreecommitdiffstats
path: root/components/autofill/content/browser/wallet/wallet_service_url_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'components/autofill/content/browser/wallet/wallet_service_url_unittest.cc')
-rw-r--r--components/autofill/content/browser/wallet/wallet_service_url_unittest.cc65
1 files changed, 65 insertions, 0 deletions
diff --git a/components/autofill/content/browser/wallet/wallet_service_url_unittest.cc b/components/autofill/content/browser/wallet/wallet_service_url_unittest.cc
new file mode 100644
index 0000000..ec18062
--- /dev/null
+++ b/components/autofill/content/browser/wallet/wallet_service_url_unittest.cc
@@ -0,0 +1,65 @@
+// Copyright 2013 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 "base/command_line.h"
+#include "components/autofill/common/autofill_switches.h"
+#include "components/autofill/content/browser/wallet/wallet_service_url.h"
+#include "googleurl/src/gurl.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace autofill {
+namespace wallet {
+
+TEST(WalletServiceUrl, CheckDefaultUrls) {
+ EXPECT_EQ("https://payments-form-dogfood.sandbox.google.com/online/v2/wallet/"
+ "autocheckout/v1/getWalletItemsJwtless",
+ GetGetWalletItemsUrl().spec());
+ EXPECT_EQ("https://payments-form-dogfood.sandbox.google.com/online/v2/wallet/"
+ "autocheckout/v1/getFullWalletJwtless",
+ GetGetFullWalletUrl().spec());
+ EXPECT_EQ("https://wallet-web.sandbox.google.com/manage/w/0/#paymentMethods:",
+ GetManageInstrumentsUrl().spec());
+ EXPECT_EQ("https://wallet-web.sandbox.google.com/manage/w/0/"
+ "#settings:addresses",
+ GetManageAddressesUrl().spec());
+ EXPECT_EQ("https://payments-form-dogfood.sandbox.google.com/online/v2/wallet/"
+ "autocheckout/v1/acceptLegalDocument",
+ GetAcceptLegalDocumentsUrl().spec());
+ EXPECT_EQ("https://payments-form-dogfood.sandbox.google.com/online/v2/wallet/"
+ "autocheckout/v1/authenticateInstrument",
+ GetAuthenticateInstrumentUrl().spec());
+ EXPECT_EQ("https://payments-form-dogfood.sandbox.google.com/online/v2/wallet/"
+ "autocheckout/v1/reportStatus",
+ GetSendStatusUrl().spec());
+ EXPECT_EQ("https://payments-form-dogfood.sandbox.google.com/online/v2/wallet/"
+ "autocheckout/v1/saveToWallet",
+ GetSaveToWalletUrl().spec());
+ EXPECT_EQ("https://payments-form-dogfood.sandbox.google.com/online/v2/"
+ "passiveauth",
+ GetPassiveAuthUrl().spec());
+ EXPECT_EQ("https://wallet-web.sandbox.google.com/online-secure/"
+ "temporarydata/cvv?s7e=cvv",
+ GetEncryptionUrl().spec());
+ EXPECT_EQ("https://wallet-web.sandbox.google.com/checkout/dehEfe?"
+ "s7e=cardNumber%3Bcvv",
+ GetEscrowUrl().spec());
+}
+
+TEST(WalletServiceUrl, IsUsingProd) {
+ // The sandbox servers are the default (for now). Update if this changes.
+ EXPECT_FALSE(IsUsingProd());
+
+ CommandLine* command_line = CommandLine::ForCurrentProcess();
+ command_line->AppendSwitch(switches::kWalletServiceUseProd);
+ EXPECT_TRUE(IsUsingProd());
+
+ const GURL prod_get_items_url = GetGetWalletItemsUrl();
+ command_line->AppendSwitchASCII(switches::kWalletServiceUrl, "http://goo.gl");
+ EXPECT_FALSE(IsUsingProd());
+
+ ASSERT_NE(prod_get_items_url, GetGetWalletItemsUrl());
+}
+
+} // namespace wallet
+} // namespace autofill