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
|
// 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 "chrome/browser/ui/android/hats/survey_client_android.h"
#include <memory>
#include "base/functional/bind.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/android/hats/hats_service_android.h"
#include "chrome/browser/ui/android/hats/test/test_survey_utils_bridge.h"
#include "chrome/browser/ui/hats/hats_service.h"
#include "chrome/browser/ui/hats/hats_service_factory.h"
#include "chrome/test/base/chrome_test_utils.h"
#include "components/messages/android/message_dispatcher_bridge.h"
#include "components/messages/android/test/messages_test_helper.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "net/dns/mock_host_resolver.h"
namespace hats {
namespace {
const char kTestSurveyTrigger[] = "testing";
const SurveyBitsData kTestSurveyProductSpecificBitsData{
{"Test Field 1", true},
{"Test Field 2", false}};
const SurveyStringData kTestSurveyProductSpecificStringData{
{"Test Field 3", "Test value"}};
// Helper class that used to wait for message enqueued.
class MessageWaiter {
public:
explicit MessageWaiter(messages::MessagesTestHelper& messages_test_helper) {
messages_test_helper.WaitForMessageEnqueued(
base::BindOnce(&MessageWaiter::OnEvent, base::Unretained(this)));
}
~MessageWaiter() = default;
// Wait until the message dispatcher has a count change.
[[nodiscard]] bool Wait() { return waiter_helper_.Wait(); }
private:
void OnEvent() { waiter_helper_.OnEvent(); }
content::WaiterHelper waiter_helper_;
};
class SurveyObserver {
public:
SurveyObserver() = default;
void Accept() { accepted_ = true; }
void Dismiss() { dismissed_ = true; }
bool IsAccepted() { return accepted_; }
bool IsDismissed() { return dismissed_; }
base::WeakPtr<SurveyObserver> GetWeakPtr() {
return weak_ptr_factory_.GetWeakPtr();
}
private:
bool accepted_ = false;
bool dismissed_ = false;
base::WeakPtrFactory<SurveyObserver> weak_ptr_factory_{this};
};
} // namespace
class SurveyClientAndroidBrowserTest : public AndroidBrowserTest {
public:
SurveyClientAndroidBrowserTest() = default;
~SurveyClientAndroidBrowserTest() override = default;
void SetUp() override {
TestSurveyUtilsBridge::SetUpJavaTestSurveyFactory();
AndroidBrowserTest::SetUp();
}
void SetUpOnMainThread() override {
// Map all out-going DNS lookups to the local server.
host_resolver()->AddRule("*", "127.0.0.1");
messages_test_helper_.AttachTestMessageDispatcherForTesting(
window_android());
}
void TearDown() override {
messages_test_helper_.ResetMessageDispatcherForTesting();
}
content::WebContents* web_contents() {
return chrome_test_utils::GetActiveWebContents(this);
}
ui::WindowAndroid* window_android() {
return web_contents()->GetTopLevelNativeWindow();
}
HatsServiceAndroid* GetHatsService() {
HatsServiceAndroid* service =
static_cast<HatsServiceAndroid*>(HatsServiceFactory::GetForProfile(
Profile::FromBrowserContext(web_contents()->GetBrowserContext()),
true));
return service;
}
protected:
messages::MessagesTestHelper messages_test_helper_;
};
IN_PROC_BROWSER_TEST_F(SurveyClientAndroidBrowserTest, LaunchSurvey) {
EXPECT_TRUE(content::WaitForLoadStop(web_contents()));
SurveyObserver observer;
auto* hatsService = GetHatsService();
{
MessageWaiter waiter(messages_test_helper_);
hatsService->LaunchSurveyForWebContents(
kTestSurveyTrigger, web_contents(), kTestSurveyProductSpecificBitsData,
kTestSurveyProductSpecificStringData,
base::BindOnce(&SurveyObserver::Accept, observer.GetWeakPtr()),
base::BindOnce(&SurveyObserver::Dismiss, observer.GetWeakPtr()),
std::nullopt, HatsService::SurveyOptions());
EXPECT_TRUE(waiter.Wait());
}
hatsService->GetFirstTaskForTesting()
.GetMessageForTesting()
->HandleActionClick(base::android::AttachCurrentThread());
EXPECT_TRUE(observer.IsAccepted());
}
} // namespace hats
|