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/updater/update_service_impl_inactive.h"
#include <vector>
#include "base/files/file_path.h"
#include "base/run_loop.h"
#include "base/test/bind.h"
#include "base/test/task_environment.h"
#include "base/version.h"
#include "chrome/updater/registration_data.h"
#include "chrome/updater/update_service.h"
#include "components/policy/core/common/policy_types.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace updater {
TEST(UpdateServiceImplInactiveTest, All) {
base::test::TaskEnvironment task_environment;
scoped_refptr<UpdateService> update_service = MakeInactiveUpdateService();
{
base::RunLoop run_loop;
update_service->GetVersion(
base::BindLambdaForTesting([&run_loop](const base::Version& version) {
EXPECT_FALSE(version.IsValid());
run_loop.Quit();
}));
run_loop.Run();
}
{
base::RunLoop run_loop;
update_service->FetchPolicies(
policy::PolicyFetchReason::kTest,
base::BindLambdaForTesting([&run_loop](int result) {
EXPECT_EQ(result, -1);
run_loop.Quit();
}));
run_loop.Run();
}
{
base::RunLoop run_loop;
update_service->RegisterApp(
RegistrationRequest(),
base::BindLambdaForTesting([&run_loop](int result) {
EXPECT_EQ(result, -1);
run_loop.Quit();
}));
run_loop.Run();
}
{
base::RunLoop run_loop;
update_service->GetAppStates(base::BindLambdaForTesting(
[&run_loop](const std::vector<UpdateService::AppState>& app_states) {
EXPECT_TRUE(app_states.empty());
run_loop.Quit();
}));
run_loop.Run();
}
{
base::RunLoop run_loop;
update_service->RunPeriodicTasks(
base::BindLambdaForTesting([&run_loop] { run_loop.Quit(); }));
run_loop.Run();
}
{
base::RunLoop run_loop;
update_service->CheckForUpdate(
/*app_id=*/"", UpdateService::Priority::kForeground,
UpdateService::PolicySameVersionUpdate::kNotAllowed,
/*language=*/{},
base::RepeatingCallback<void(const UpdateService::UpdateState&)>(),
base::BindLambdaForTesting([&run_loop](UpdateService::Result result) {
EXPECT_EQ(result, UpdateService::Result::kInactive);
run_loop.Quit();
}));
run_loop.Run();
}
{
base::RunLoop run_loop;
update_service->Update(
/*app_id=*/"",
/*install_data_index=*/"", UpdateService::Priority::kForeground,
UpdateService::PolicySameVersionUpdate::kNotAllowed,
/*language=*/{},
base::RepeatingCallback<void(const UpdateService::UpdateState&)>(),
base::BindLambdaForTesting([&run_loop](UpdateService::Result result) {
EXPECT_EQ(result, UpdateService::Result::kInactive);
run_loop.Quit();
}));
run_loop.Run();
}
{
base::RunLoop run_loop;
update_service->UpdateAll(
base::RepeatingCallback<void(const UpdateService::UpdateState&)>(),
base::BindLambdaForTesting([&run_loop](UpdateService::Result result) {
EXPECT_EQ(result, UpdateService::Result::kInactive);
run_loop.Quit();
}));
run_loop.Run();
}
{
base::RunLoop run_loop;
update_service->Install(
RegistrationRequest(),
/*client_install_data=*/"",
/*install_data_index=*/"", UpdateService::Priority::kForeground,
/*language=*/{},
base::RepeatingCallback<void(const UpdateService::UpdateState&)>(),
base::BindLambdaForTesting([&run_loop](UpdateService::Result result) {
EXPECT_EQ(result, UpdateService::Result::kInactive);
run_loop.Quit();
}));
run_loop.Run();
}
{
// This function does not take a callback parameter.
update_service->CancelInstalls(/*app_id=*/"");
}
{
base::RunLoop run_loop;
update_service->RunInstaller(
/*app_id=*/"",
/*installer_path=*/base::FilePath(),
/*install_args=*/"",
/*install_data=*/"",
/*install_settings=*/"",
/*language=*/{},
base::RepeatingCallback<void(const UpdateService::UpdateState&)>(),
base::BindLambdaForTesting([&run_loop](UpdateService::Result result) {
EXPECT_EQ(result, UpdateService::Result::kInactive);
run_loop.Quit();
}));
run_loop.Run();
}
}
} // namespace updater
|