blob: 6426a8099197f7467b3ec7103ee786083adf7483 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <memory>
#include "ash/constants/ash_pref_names.h"
#include "base/test/task_environment.h"
#include "chromeos/dbus/shill/shill_manager_client.h"
#include "chromeos/network/fast_transition_observer.h"
#include "chromeos/network/network_handler_test_helper.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/testing_pref_service.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace chromeos {
namespace test {
class FastTransitionObserverTest : public ::testing::Test {
public:
FastTransitionObserverTest() {
local_state_ = std::make_unique<TestingPrefServiceSimple>();
local_state_->registry()->RegisterBooleanPref(
prefs::kDeviceWiFiFastTransitionEnabled, false);
observer_ = std::make_unique<FastTransitionObserver>(local_state_.get());
}
FastTransitionObserverTest(const FastTransitionObserverTest&) = delete;
FastTransitionObserverTest& operator=(const FastTransitionObserverTest&) =
delete;
~FastTransitionObserverTest() override {
observer_.reset();
local_state_.reset();
}
TestingPrefServiceSimple* local_state() { return local_state_.get(); }
bool GetFastTransitionStatus() {
return ShillManagerClient::Get()
->GetTestInterface()
->GetFastTransitionStatus();
}
private:
base::test::SingleThreadTaskEnvironment task_environment_;
NetworkHandlerTestHelper network_handler_test_helper_;
std::unique_ptr<TestingPrefServiceSimple> local_state_;
std::unique_ptr<FastTransitionObserver> observer_;
};
TEST_F(FastTransitionObserverTest, FastTransitionChangeCallsShill) {
// Test that a change in the Fast Transition policy value leads to
// shill_manager_client being called.
// Make sure Fast Transition is disabled just before setting preference.
EXPECT_FALSE(GetFastTransitionStatus());
// Setting the preference should update the Fast Transition policy.
local_state()->SetBoolean(prefs::kDeviceWiFiFastTransitionEnabled, true);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(GetFastTransitionStatus());
// Clearing the preference should disable Fast Transition
local_state()->ClearPref(prefs::kDeviceWiFiFastTransitionEnabled);
base::RunLoop().RunUntilIdle();
EXPECT_FALSE(GetFastTransitionStatus());
}
} // namespace test
} // namespace chromeos