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
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <memory>
#include <optional>
#include "ash/constants/ash_features.h"
#include "base/functional/bind.h"
#include "base/test/bind.h"
#include "chrome/browser/apps/app_service/webapk/webapk_prefs.h"
#include "chrome/browser/apps/app_service/webapk/webapk_test_server.h"
#include "chrome/browser/ash/arc/arc_util.h"
#include "chrome/browser/ash/arc/session/arc_session_manager.h"
#include "chrome/browser/policy/policy_test_utils.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/web_applications/test/web_app_browsertest_util.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "chromeos/ash/experiences/arc/arc_features_parser.h"
#include "chromeos/ash/experiences/arc/session/arc_bridge_service.h"
#include "chromeos/ash/experiences/arc/session/arc_service_manager.h"
#include "chromeos/ash/experiences/arc/test/arc_util_test_support.h"
#include "chromeos/ash/experiences/arc/test/fake_webapk_instance.h"
#include "components/policy/policy_constants.h"
#include "components/prefs/pref_change_registrar.h"
#include "content/public/test/browser_test.h"
#include "testing/gmock/include/gmock/gmock-matchers.h"
namespace {
constexpr char kWebApkPackageName[] = "org.chromium.webapk.browsertest";
std::optional<arc::ArcFeatures> GetArcFeatures() {
arc::ArcFeatures arc_features;
arc_features.build_props.abi_list = "x86";
return arc_features;
}
} // namespace
class WebApkPolicyBrowserTest : public policy::PolicyTest {
public:
void SetUpCommandLine(base::CommandLine* command_line) override {
arc::SetArcAvailableCommandLineForTesting(command_line);
}
void SetUpInProcessBrowserTestFixture() override {
PolicyTest::SetUpInProcessBrowserTestFixture();
arc::ArcSessionManager::SetUiEnabledForTesting(false);
}
void SetUpOnMainThread() override {
PolicyTest::SetUpOnMainThread();
arc::SetArcPlayStoreEnabledForProfile(browser()->profile(), true);
webapk_test_server_ = std::make_unique<apps::WebApkTestServer>();
webapk_test_server_->SetUpAndStartServer(embedded_test_server());
webapk_test_server_->RespondWithSuccess(kWebApkPackageName);
fake_webapk_instance_ = std::make_unique<arc::FakeWebApkInstance>();
arc::ArcServiceManager::Get()->arc_bridge_service()->webapk()->SetInstance(
fake_webapk_instance());
arc_features_getter_ = base::BindRepeating(&GetArcFeatures);
arc::ArcFeaturesParser::SetArcFeaturesGetterForTesting(
&arc_features_getter_);
}
arc::FakeWebApkInstance* fake_webapk_instance() {
return fake_webapk_instance_.get();
}
bool received_webapk_request() {
return webapk_test_server_->last_webapk_request() != nullptr;
}
private:
std::unique_ptr<arc::FakeWebApkInstance> fake_webapk_instance_;
base::RepeatingCallback<std::optional<arc::ArcFeatures>()>
arc_features_getter_;
std::unique_ptr<apps::WebApkTestServer> webapk_test_server_;
};
// When there's no policy set, installing a Web App should install a WebAPK.
// This test also acts as an integration test for the WebAPK installation
// process.
IN_PROC_BROWSER_TEST_F(WebApkPolicyBrowserTest, DefaultInstallWebApk) {
const GURL app_url =
embedded_test_server()->GetURL("/web_share_target/charts.html");
PrefChangeRegistrar pref_registrar;
pref_registrar.Init(browser()->profile()->GetPrefs());
// Wait for the pref to be set, which is the last stage of WebAPK
// installation.
base::RunLoop run_loop;
pref_registrar.Add(apps::webapk_prefs::kGeneratedWebApksPref,
run_loop.QuitClosure());
const webapps::AppId app_id =
web_app::InstallWebAppFromManifest(browser(), app_url);
run_loop.Run();
ASSERT_TRUE(received_webapk_request());
ASSERT_THAT(apps::webapk_prefs::GetWebApkAppIds(browser()->profile()),
testing::ElementsAre(app_id));
}
// When the WebAPKs feature disabled by policy, installing a web app should not
// generate a WebAPK.
IN_PROC_BROWSER_TEST_F(WebApkPolicyBrowserTest, DisabledByPolicy) {
policy::PolicyMap policies;
policies.Set(policy::key::kArcAppToWebAppSharingEnabled,
policy::POLICY_LEVEL_MANDATORY, policy::POLICY_SCOPE_USER,
policy::POLICY_SOURCE_CLOUD, base::Value(false), nullptr);
provider_.UpdateChromePolicy(policies);
const GURL app_url =
embedded_test_server()->GetURL("/web_share_target/charts.html");
const webapps::AppId app_id =
web_app::InstallWebAppFromManifest(browser(), app_url);
// Given that we are testing the absence of any WebAPK, we can't wait for
// anything to show up in Prefs. Instead, run until idle and assume this is
// enough time for installation to (not) trigger.
base::RunLoop().RunUntilIdle();
ASSERT_FALSE(received_webapk_request());
ASSERT_THAT(apps::webapk_prefs::GetWebApkAppIds(browser()->profile()),
testing::IsEmpty());
}
|