1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/payments/core/has_enrolled_instrument_query.h"
#include "base/test/task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
namespace payments {
namespace {
class HasEnrolledInstrumentQueryTest : public ::testing::Test {
protected:
HasEnrolledInstrumentQuery guard_;
private:
base::test::SingleThreadTaskEnvironment task_environment_;
};
// An HTTPS website is not allowed to query all of the networks of the cards in
// user's autofill database.
TEST_F(HasEnrolledInstrumentQueryTest,
SameHttpsOriginCannotQueryTwoDifferentCardNetworks) {
EXPECT_TRUE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"basic-card", {"{supportedNetworks: ['amex']}"}}}));
EXPECT_FALSE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"basic-card", {"{supportedNetworks: ['visa']}"}}}));
}
// A localhost website is not allowed to query all of the networks of the cards
// in user's autofill database.
TEST_F(HasEnrolledInstrumentQueryTest,
SameLocalhostOriginCannotQueryTwoDifferentCardNetworks) {
EXPECT_TRUE(guard_.CanQuery(
GURL("http://localhost:8080"), GURL("http://localhost:8080"),
{{"basic-card", {"{supportedNetworks: ['amex']}"}}}));
EXPECT_FALSE(guard_.CanQuery(
GURL("http://localhost:8080"), GURL("http://localhost:8080"),
{{"basic-card", {"{supportedNetworks: ['visa']}"}}}));
}
// A file website is not allowed to query all of the networks of the cards in
// user's autofill database.
TEST_F(HasEnrolledInstrumentQueryTest,
SameFileOriginCannotQueryTwoDifferentCardNetworks) {
EXPECT_TRUE(guard_.CanQuery(
GURL("file:///tmp/test.html"), GURL("file:///tmp/test.html"),
{{"basic-card", {"{supportedNetworks: ['amex']}"}}}));
EXPECT_FALSE(guard_.CanQuery(
GURL("file:///tmp/test.html"), GURL("file:///tmp/test.html"),
{{"basic-card", {"{supportedNetworks: ['visa']}"}}}));
}
// Different HTTPS websites are allowed to query different card networks in
// user's autofill database.
TEST_F(HasEnrolledInstrumentQueryTest,
DifferentHttpsOriginsCanQueryTwoDifferentCardNetworks) {
EXPECT_TRUE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"basic-card", {"{supportedNetworks: ['amex']}"}}}));
EXPECT_TRUE(guard_.CanQuery(
GURL("https://not-example.test"), GURL("https://not-example.test"),
{{"basic-card", {"{supportedNetworks: ['visa']}"}}}));
}
// Different localhost websites are allowed to query different card networks in
// user's autofill database.
TEST_F(HasEnrolledInstrumentQueryTest,
DifferentLocalhostOriginsCanQueryTwoDifferentCardNetworks) {
EXPECT_TRUE(guard_.CanQuery(
GURL("http://localhost:8080"), GURL("http://localhost:8080"),
{{"basic-card", {"{supportedNetworks: ['amex']}"}}}));
EXPECT_TRUE(guard_.CanQuery(
GURL("http://localhost:9090"), GURL("http://localhost:9090"),
{{"basic-card", {"{supportedNetworks: ['visa']}"}}}));
}
// Different file websites are allowed to query different card networks in
// user's autofill database.
TEST_F(HasEnrolledInstrumentQueryTest,
DifferentFileOriginsCanQueryTwoDifferentCardNetworks) {
EXPECT_TRUE(guard_.CanQuery(
GURL("file:///tmp/test.html"), GURL("file:///tmp/test.html"),
{{"basic-card", {"{supportedNetworks: ['amex']}"}}}));
EXPECT_TRUE(guard_.CanQuery(
GURL("file:///tmp/not-test.html"), GURL("file:///tmp/not-test.html"),
{{"basic-card", {"{supportedNetworks: ['visa']}"}}}));
}
// The same website is not allowed to query the same payment method with
// different parameters.
TEST_F(HasEnrolledInstrumentQueryTest,
SameOriginCannotQueryBasicCardWithTwoDifferentCardNetworks) {
EXPECT_TRUE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"basic-card", {"{supportedNetworks: ['visa']}"}},
{"https://alicepay.test", {"{alicePayParameter: 1}"}}}));
EXPECT_FALSE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"basic-card", {"{supportedNetworks: ['visa']}"}},
{"https://bobpay.test", {"{bobPayParameter: 2}"}}}));
EXPECT_FALSE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"basic-card", {"{supportedNetworks: ['amex']}"}},
{"https://bobpay.test", {"{bobPayParameter: 2}"}}}));
}
// Two different websites are allowed to query the same payment method with
// different parameters.
TEST_F(HasEnrolledInstrumentQueryTest,
DifferentOriginsCanQueryBasicCardWithTwoDifferentCardNetworks) {
EXPECT_TRUE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"basic-card", {"{supportedNetworks: ['visa']}"}}}));
EXPECT_TRUE(guard_.CanQuery(
GURL("https://not-example.test"), GURL("https://not-example.test"),
{{"basic-card", {"{supportedNetworks: ['amex']}"}}}));
}
// A website can query several different payment methods, as long as each
// payment method is queried with the same payment-method-specific data.
TEST_F(HasEnrolledInstrumentQueryTest,
SameOriginCanQuerySeveralDifferentPaymentMethodIdentifiers) {
EXPECT_TRUE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"basic-card", {"{supportedNetworks: ['visa']}"}},
{"https://alicepay.test", {"{alicePayParameter: 1}"}}}));
EXPECT_FALSE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"https://alicepay.test", {"{alicePayParameter: 1}"}},
{"https://bobpay.test", {"{bobPayParameter: 2}"}}}));
EXPECT_FALSE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"https://bobpay.test", {"{bobPayParameter: 2}"}},
{"basic-card", {"{supportedNetworks: ['visa']}"}}}));
}
// A website cannot query several different payment methods without the
// per-method quota, even if method-specific data remains unchanged.
TEST_F(HasEnrolledInstrumentQueryTest,
SameOriginCannotQueryDifferentMethodsWithoutPerMethodQuota) {
EXPECT_TRUE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"basic-card", {"{supportedNetworks: ['visa']}"}},
{"https://alicepay.test", {"{alicePayParameter: 1}"}}}));
EXPECT_FALSE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"https://alicepay.test", {"{alicePayParameter: 1}"}},
{"https://bobpay.test", {"{bobPayParameter: 2}"}}}));
EXPECT_FALSE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"https://bobpay.test", {"{bobPayParameter: 2}"}},
{"basic-card", {"{supportedNetworks: ['visa']}"}}}));
}
// An instance of a website with per-method quota enabled (e.g., through an
// origin trial) can query different payment methods, as long as each payment
// method is queried with the same method-specific data. Another instance of the
// same website (e.g., in a different tab) without the per-method quota feature
// cannot query different payment methods.
TEST_F(HasEnrolledInstrumentQueryTest, SameWebsiteDifferentQuotaPolicy) {
// First instance of https://example.test has per-method quota feature enabled
// and so can query different payment methods, as long as the method-specific
// data stays the same.
EXPECT_TRUE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"basic-card", {"{supportedNetworks: ['visa']}"}},
{"https://alicepay.test", {"{alicePayParameter: 1}"}}}));
EXPECT_FALSE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"https://alicepay.test", {"{alicePayParameter: 1}"}},
{"https://bobpay.test", {"{bobPayParameter: 2}"}}}));
EXPECT_FALSE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"https://bobpay.test", {"{bobPayParameter: 2}"}},
{"basic-card", {"{supportedNetworks: ['visa']}"}}}));
// Second instance of https://example.test has per-method quota feature
// disabled and so can only repeat the first query.
EXPECT_FALSE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"https://alicepay.test", {"{alicePayParameter: 1}"}},
{"https://bobpay.test", {"{bobPayParameter: 2}"}}}));
EXPECT_TRUE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"basic-card", {"{supportedNetworks: ['visa']}"}},
{"https://alicepay.test", {"{alicePayParameter: 1}"}}}));
EXPECT_FALSE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"https://bobpay.test", {"{bobPayParameter: 2}"}},
{"basic-card", {"{supportedNetworks: ['visa']}"}}}));
// The two website queries can be interleaved any number of times in any order
// with the same results.
EXPECT_TRUE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"basic-card", {"{supportedNetworks: ['visa']}"}},
{"https://alicepay.test", {"{alicePayParameter: 1}"}}}));
EXPECT_FALSE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"https://bobpay.test", {"{bobPayParameter: 2}"}},
{"basic-card", {"{supportedNetworks: ['visa']}"}}}));
EXPECT_FALSE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"https://alicepay.test", {"{alicePayParameter: 1}"}},
{"https://bobpay.test", {"{bobPayParameter: 2}"}}}));
EXPECT_TRUE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"basic-card", {"{supportedNetworks: ['visa']}"}},
{"https://alicepay.test", {"{alicePayParameter: 1}"}}}));
EXPECT_FALSE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"https://alicepay.test", {"{alicePayParameter: 1}"}},
{"https://bobpay.test", {"{bobPayParameter: 2}"}}}));
EXPECT_FALSE(guard_.CanQuery(
GURL("https://example.test"), GURL("https://example.test"),
{{"https://bobpay.test", {"{bobPayParameter: 2}"}},
{"basic-card", {"{supportedNetworks: ['visa']}"}}}));
}
} // namespace
} // namespace payments
|