blob: 85867431571ecb0e18128dc8a6edad06d20e2af1 [file] [log] [blame]
// Copyright 2023 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/commerce/core/account_checker.h"
#include <queue>
#include <string>
#include <unordered_map>
#include "base/check.h"
#include "base/functional/callback.h"
#include "base/run_loop.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/task_environment.h"
#include "base/time/time.h"
#include "components/commerce/core/commerce_constants.h"
#include "components/commerce/core/commerce_feature_list.h"
#include "components/commerce/core/pref_names.h"
#include "components/commerce/core/prefs.h"
#include "components/endpoint_fetcher/mock_endpoint_fetcher.h"
#include "components/prefs/testing_pref_service.h"
#include "components/signin/public/identity_manager/identity_test_environment.h"
#include "components/sync/base/features.h"
#include "components/sync/base/user_selectable_type.h"
#include "components/sync/test/test_sync_service.h"
#include "components/sync/test/test_sync_user_settings.h"
#include "google_apis/gaia/gaia_constants.h"
#include "net/http/http_status_code.h"
#include "net/traffic_annotation/network_traffic_annotation_test_helper.h"
#include "services/data_decoder/public/cpp/test_support/in_process_data_decoder.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
#include "services/network/public/cpp/weak_wrapper_shared_url_loader_factory.h"
#include "services/network/test/test_url_loader_factory.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using endpoint_fetcher::EndpointFetcher;
using endpoint_fetcher::MockEndpointFetcher;
using testing::_;
using testing::InSequence;
namespace {
constexpr base::TimeDelta kTimeout = base::Milliseconds(10000);
const char kPostData[] = "{\"preferences\":{\"price_track_email\":true}}";
} // namespace
namespace commerce {
class SpyAccountChecker : public AccountChecker {
public:
SpyAccountChecker(
PrefService* pref_service,
signin::IdentityManager* identity_manager,
syncer::SyncService* sync_service,
scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory)
: AccountChecker("us",
"en-us",
pref_service,
identity_manager,
sync_service,
std::move(url_loader_factory)) {}
SpyAccountChecker(const SpyAccountChecker&) = delete;
SpyAccountChecker operator=(const SpyAccountChecker&) = delete;
~SpyAccountChecker() override = default;
MOCK_METHOD(std::unique_ptr<EndpointFetcher>,
CreateEndpointFetcher,
(signin::OAuthConsumerId oauth_consumer_id,
const GURL& url,
const endpoint_fetcher::HttpMethod http_method,
const std::string& content_type,
const base::TimeDelta& timeout,
const std::string& post_data,
const net::NetworkTrafficAnnotationTag& annotation_tag),
(override));
protected:
friend class AccountCheckerTest;
};
class AccountCheckerTest : public testing::Test {
public:
AccountCheckerTest() = default;
~AccountCheckerTest() override = default;
void SetUp() override {
test_features_.InitAndEnableFeature(kShoppingList);
RegisterProfilePrefs(pref_service_.registry());
scoped_refptr<network::SharedURLLoaderFactory> test_url_loader_factory =
base::MakeRefCounted<network::WeakWrapperSharedURLLoaderFactory>(
&test_url_loader_factory_);
fetcher_ = std::make_unique<MockEndpointFetcher>();
sync_service_ = std::make_unique<syncer::TestSyncService>();
account_checker_ = std::make_unique<SpyAccountChecker>(
&pref_service_, identity_test_env_.identity_manager(),
sync_service_.get(), std::move(test_url_loader_factory));
ASSERT_EQ(false, account_checker_->IsSignedIn());
ON_CALL(*account_checker_, CreateEndpointFetcher).WillByDefault([this]() {
return std::move(fetcher_);
});
}
void SetFetchResponse(std::string response) {
fetcher_.reset();
fetcher_ = std::make_unique<MockEndpointFetcher>();
fetcher_->SetFetchResponse(response);
}
void FetchPriceEmailPref() { account_checker_->FetchPriceEmailPref(); }
protected:
base::test::TaskEnvironment task_environment_;
signin::IdentityTestEnvironment identity_test_env_;
base::test::ScopedFeatureList test_features_;
TestingPrefServiceSimple pref_service_;
network::TestURLLoaderFactory test_url_loader_factory_;
data_decoder::test::InProcessDataDecoder in_process_data_decoder_;
std::unique_ptr<MockEndpointFetcher> fetcher_;
std::unique_ptr<syncer::TestSyncService> sync_service_;
std::unique_ptr<SpyAccountChecker> account_checker_;
};
TEST_F(AccountCheckerTest, TestFetchPriceEmailPref) {
{
InSequence s;
// Fetch email pref.
EXPECT_CALL(
*account_checker_,
CreateEndpointFetcher(signin::OAuthConsumerId::kChromeMemex,
GURL(kNotificationsPrefUrl),
endpoint_fetcher::HttpMethod::kGet, kContentType,
kTimeout, kEmptyPostData, _));
}
ASSERT_EQ(false, pref_service_.GetBoolean(kPriceEmailNotificationsEnabled));
identity_test_env_.MakePrimaryAccountAvailable("mock_email@gmail.com",
signin::ConsentLevel::kSync);
SetFetchResponse("{ \"preferences\": { \"price_track_email\" : true } }");
FetchPriceEmailPref();
pref_service_.user_prefs_store()->WaitForValue(
kPriceEmailNotificationsEnabled, base::Value(true));
ASSERT_EQ(true, pref_service_.GetBoolean(kPriceEmailNotificationsEnabled));
}
TEST_F(AccountCheckerTest, TestSendPriceEmailPrefOnPrefChange) {
{
InSequence s;
// Send email pref.
EXPECT_CALL(*account_checker_,
CreateEndpointFetcher(signin::OAuthConsumerId::kChromeMemex,
GURL(kNotificationsPrefUrl),
endpoint_fetcher::HttpMethod::kPost,
kContentType, kTimeout, kPostData, _));
}
ASSERT_EQ(false, pref_service_.GetBoolean(kPriceEmailNotificationsEnabled));
identity_test_env_.MakePrimaryAccountAvailable("mock_email@gmail.com",
signin::ConsentLevel::kSync);
SetFetchResponse("{ \"preferences\": { \"price_track_email\" : true } }");
pref_service_.SetBoolean(kPriceEmailNotificationsEnabled, true);
pref_service_.user_prefs_store()->WaitForValue(
kPriceEmailNotificationsEnabled, base::Value(true));
ASSERT_EQ(true, pref_service_.GetBoolean(kPriceEmailNotificationsEnabled));
}
} // namespace commerce