You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
183 lines
6.3 KiB
183 lines
6.3 KiB
//
|
|
// Copyright (C) 2014 The Android Open Source Project
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
#include "update_engine/cros/common_service.h"
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <brillo/errors/error.h>
|
|
#include <policy/libpolicy.h>
|
|
#include <policy/mock_device_policy.h>
|
|
|
|
#include "update_engine/cros/fake_system_state.h"
|
|
#include "update_engine/cros/omaha_utils.h"
|
|
|
|
using std::string;
|
|
using std::vector;
|
|
using testing::_;
|
|
using testing::Return;
|
|
using testing::SetArgPointee;
|
|
using update_engine::UpdateAttemptFlags;
|
|
|
|
namespace chromeos_update_engine {
|
|
|
|
class UpdateEngineServiceTest : public ::testing::Test {
|
|
protected:
|
|
UpdateEngineServiceTest() = default;
|
|
|
|
void SetUp() override {
|
|
FakeSystemState::CreateInstance();
|
|
FakeSystemState::Get()->set_device_policy(nullptr);
|
|
mock_update_attempter_ = FakeSystemState::Get()->mock_update_attempter();
|
|
}
|
|
|
|
MockUpdateAttempter* mock_update_attempter_;
|
|
|
|
brillo::ErrorPtr error_;
|
|
UpdateEngineService common_service_;
|
|
};
|
|
|
|
TEST_F(UpdateEngineServiceTest, AttemptUpdate) {
|
|
EXPECT_CALL(
|
|
*mock_update_attempter_,
|
|
CheckForUpdate("app_ver", "url", UpdateAttemptFlags::kFlagNonInteractive))
|
|
.WillOnce(Return(true));
|
|
|
|
// The non-interactive flag needs to be passed through to CheckForUpdate.
|
|
bool result = false;
|
|
EXPECT_TRUE(
|
|
common_service_.AttemptUpdate(&error_,
|
|
"app_ver",
|
|
"url",
|
|
UpdateAttemptFlags::kFlagNonInteractive,
|
|
&result));
|
|
EXPECT_EQ(nullptr, error_);
|
|
EXPECT_TRUE(result);
|
|
}
|
|
|
|
TEST_F(UpdateEngineServiceTest, AttemptUpdateReturnsFalse) {
|
|
EXPECT_CALL(*mock_update_attempter_,
|
|
CheckForUpdate("app_ver", "url", UpdateAttemptFlags::kNone))
|
|
.WillOnce(Return(false));
|
|
bool result = true;
|
|
EXPECT_TRUE(common_service_.AttemptUpdate(
|
|
&error_, "app_ver", "url", UpdateAttemptFlags::kNone, &result));
|
|
EXPECT_EQ(nullptr, error_);
|
|
EXPECT_FALSE(result);
|
|
}
|
|
|
|
TEST_F(UpdateEngineServiceTest, AttemptInstall) {
|
|
EXPECT_CALL(*mock_update_attempter_, CheckForInstall(_, _))
|
|
.WillOnce(Return(true));
|
|
|
|
EXPECT_TRUE(common_service_.AttemptInstall(&error_, "", {}));
|
|
EXPECT_EQ(nullptr, error_);
|
|
}
|
|
|
|
TEST_F(UpdateEngineServiceTest, AttemptInstallReturnsFalse) {
|
|
EXPECT_CALL(*mock_update_attempter_, CheckForInstall(_, _))
|
|
.WillOnce(Return(false));
|
|
|
|
EXPECT_FALSE(common_service_.AttemptInstall(&error_, "", {}));
|
|
}
|
|
|
|
TEST_F(UpdateEngineServiceTest, SetDlcActiveValue) {
|
|
EXPECT_CALL(*mock_update_attempter_, SetDlcActiveValue(_, _))
|
|
.WillOnce(Return(true));
|
|
|
|
EXPECT_TRUE(common_service_.SetDlcActiveValue(&error_, true, "dlc0"));
|
|
}
|
|
|
|
TEST_F(UpdateEngineServiceTest, SetDlcActiveValueReturnsFalse) {
|
|
EXPECT_CALL(*mock_update_attempter_, SetDlcActiveValue(_, _))
|
|
.WillOnce(Return(false));
|
|
|
|
EXPECT_FALSE(common_service_.SetDlcActiveValue(&error_, true, "dlc0"));
|
|
}
|
|
|
|
// SetChannel is allowed when there's no device policy (the device is not
|
|
// enterprise enrolled).
|
|
TEST_F(UpdateEngineServiceTest, SetChannelWithNoPolicy) {
|
|
EXPECT_CALL(*mock_update_attempter_, RefreshDevicePolicy());
|
|
// If SetTargetChannel is called it means the policy check passed.
|
|
EXPECT_CALL(*FakeSystemState::Get()->mock_request_params(),
|
|
SetTargetChannel("stable-channel", true, _))
|
|
.WillOnce(Return(true));
|
|
EXPECT_TRUE(common_service_.SetChannel(&error_, "stable-channel", true));
|
|
ASSERT_EQ(nullptr, error_);
|
|
}
|
|
|
|
// When the policy is present, the delegated value should be checked.
|
|
TEST_F(UpdateEngineServiceTest, SetChannelWithDelegatedPolicy) {
|
|
policy::MockDevicePolicy mock_device_policy;
|
|
FakeSystemState::Get()->set_device_policy(&mock_device_policy);
|
|
EXPECT_CALL(mock_device_policy, GetReleaseChannelDelegated(_))
|
|
.WillOnce(DoAll(SetArgPointee<0>(true), Return(true)));
|
|
EXPECT_CALL(*FakeSystemState::Get()->mock_request_params(),
|
|
SetTargetChannel("beta-channel", true, _))
|
|
.WillOnce(Return(true));
|
|
|
|
EXPECT_TRUE(common_service_.SetChannel(&error_, "beta-channel", true));
|
|
ASSERT_EQ(nullptr, error_);
|
|
}
|
|
|
|
// When passing an invalid value (SetTargetChannel fails) an error should be
|
|
// raised.
|
|
TEST_F(UpdateEngineServiceTest, SetChannelWithInvalidChannel) {
|
|
EXPECT_CALL(*mock_update_attempter_, RefreshDevicePolicy());
|
|
EXPECT_CALL(*FakeSystemState::Get()->mock_request_params(),
|
|
SetTargetChannel("foo-channel", true, _))
|
|
.WillOnce(Return(false));
|
|
|
|
EXPECT_FALSE(common_service_.SetChannel(&error_, "foo-channel", true));
|
|
ASSERT_NE(nullptr, error_);
|
|
EXPECT_TRUE(error_->HasError(UpdateEngineService::kErrorDomain,
|
|
UpdateEngineService::kErrorFailed));
|
|
}
|
|
|
|
TEST_F(UpdateEngineServiceTest, GetChannel) {
|
|
FakeSystemState::Get()->mock_request_params()->set_current_channel("current");
|
|
FakeSystemState::Get()->mock_request_params()->set_target_channel("target");
|
|
string channel;
|
|
EXPECT_TRUE(common_service_.GetChannel(
|
|
&error_, true /* get_current_channel */, &channel));
|
|
EXPECT_EQ(nullptr, error_);
|
|
EXPECT_EQ("current", channel);
|
|
|
|
EXPECT_TRUE(common_service_.GetChannel(
|
|
&error_, false /* get_current_channel */, &channel));
|
|
EXPECT_EQ(nullptr, error_);
|
|
EXPECT_EQ("target", channel);
|
|
}
|
|
|
|
TEST_F(UpdateEngineServiceTest, ResetStatusSucceeds) {
|
|
EXPECT_CALL(*mock_update_attempter_, ResetStatus()).WillOnce(Return(true));
|
|
EXPECT_TRUE(common_service_.ResetStatus(&error_));
|
|
EXPECT_EQ(nullptr, error_);
|
|
}
|
|
|
|
TEST_F(UpdateEngineServiceTest, ResetStatusFails) {
|
|
EXPECT_CALL(*mock_update_attempter_, ResetStatus()).WillOnce(Return(false));
|
|
EXPECT_FALSE(common_service_.ResetStatus(&error_));
|
|
ASSERT_NE(nullptr, error_);
|
|
EXPECT_TRUE(error_->HasError(UpdateEngineService::kErrorDomain,
|
|
UpdateEngineService::kErrorFailed));
|
|
}
|
|
|
|
} // namespace chromeos_update_engine
|