blob: 71196d0a30a3805fdb131bee31a261482c1442ef [file] [log] [blame]
// Copyright (c) 2012 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 <map>
#include <memory>
#include "ash/components/audio/cras_audio_handler.h"
#include "ash/components/audio/sounds.h"
#include "ash/constants/ash_switches.h"
#include "ash/shell.h"
#include "base/command_line.h"
#include "base/macros.h"
#include "chrome/browser/ash/accessibility/accessibility_manager.h"
#include "chrome/browser/browser_process.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "content/public/test/browser_test.h"
#include "services/audio/public/cpp/sounds/sounds_manager.h"
#include "ui/base/accelerators/accelerator.h"
#include "ui/events/test/event_generator.h"
namespace {
using ::ash::AccessibilityManager;
class SoundsManagerTestImpl : public audio::SoundsManager {
public:
SoundsManagerTestImpl() = default;
~SoundsManagerTestImpl() override {}
bool Initialize(SoundKey key, const base::StringPiece& /* data */) override {
is_sound_initialized_[key] = true;
return true;
}
bool Play(SoundKey key) override {
++num_play_requests_[key];
return true;
}
bool Stop(SoundKey key) override { return true; }
base::TimeDelta GetDuration(SoundKey /* key */) override {
return base::TimeDelta();
}
bool is_sound_initialized(SoundKey key) { return is_sound_initialized_[key]; }
int num_play_requests(SoundKey key) { return num_play_requests_[key]; }
private:
std::map<SoundKey, bool> is_sound_initialized_;
std::map<SoundKey, int> num_play_requests_;
DISALLOW_COPY_AND_ASSIGN(SoundsManagerTestImpl);
};
class VolumeControllerTest : public InProcessBrowserTest {
public:
VolumeControllerTest() {}
~VolumeControllerTest() override {}
void SetUpOnMainThread() override {
audio_handler_ = ash::CrasAudioHandler::Get();
}
void VolumeUp() {
ui::test::EventGenerator(ash::Shell::GetPrimaryRootWindow())
.PressKey(ui::VKEY_VOLUME_UP, ui::EF_NONE);
}
void VolumeDown() {
ui::test::EventGenerator(ash::Shell::GetPrimaryRootWindow())
.PressKey(ui::VKEY_VOLUME_DOWN, ui::EF_NONE);
}
void VolumeMute() {
ui::test::EventGenerator(ash::Shell::GetPrimaryRootWindow())
.PressKey(ui::VKEY_VOLUME_MUTE, ui::EF_NONE);
}
protected:
ash::CrasAudioHandler* audio_handler_; // Not owned.
private:
DISALLOW_COPY_AND_ASSIGN(VolumeControllerTest);
};
IN_PROC_BROWSER_TEST_F(VolumeControllerTest, VolumeUpAndDown) {
// Set initial value as 50%
const int kInitVolume = 50;
audio_handler_->SetOutputVolumePercent(kInitVolume);
EXPECT_EQ(audio_handler_->GetOutputVolumePercent(), kInitVolume);
VolumeUp();
EXPECT_LT(kInitVolume, audio_handler_->GetOutputVolumePercent());
VolumeDown();
EXPECT_EQ(kInitVolume, audio_handler_->GetOutputVolumePercent());
VolumeDown();
EXPECT_GT(kInitVolume, audio_handler_->GetOutputVolumePercent());
}
IN_PROC_BROWSER_TEST_F(VolumeControllerTest, VolumeDownToZero) {
// Setting to very small volume.
audio_handler_->SetOutputVolumePercent(1);
VolumeDown();
EXPECT_EQ(0, audio_handler_->GetOutputVolumePercent());
VolumeDown();
EXPECT_EQ(0, audio_handler_->GetOutputVolumePercent());
VolumeUp();
EXPECT_LT(0, audio_handler_->GetOutputVolumePercent());
}
IN_PROC_BROWSER_TEST_F(VolumeControllerTest, VolumeUpTo100) {
// Setting to almost max
audio_handler_->SetOutputVolumePercent(99);
VolumeUp();
EXPECT_EQ(100, audio_handler_->GetOutputVolumePercent());
VolumeUp();
EXPECT_EQ(100, audio_handler_->GetOutputVolumePercent());
VolumeDown();
EXPECT_GT(100, audio_handler_->GetOutputVolumePercent());
}
IN_PROC_BROWSER_TEST_F(VolumeControllerTest, Mutes) {
ASSERT_FALSE(audio_handler_->IsOutputMuted());
const int initial_volume = audio_handler_->GetOutputVolumePercent();
VolumeMute();
EXPECT_TRUE(audio_handler_->IsOutputMuted());
// Further mute buttons doesn't have effects.
VolumeMute();
EXPECT_TRUE(audio_handler_->IsOutputMuted());
// Right after the volume up after set_mute recovers to original volume.
VolumeUp();
EXPECT_FALSE(audio_handler_->IsOutputMuted());
EXPECT_EQ(initial_volume, audio_handler_->GetOutputVolumePercent());
VolumeMute();
// After the volume down, the volume goes down to zero explicitly.
VolumeDown();
EXPECT_TRUE(audio_handler_->IsOutputMuted());
EXPECT_EQ(0, audio_handler_->GetOutputVolumePercent());
// Thus, further VolumeUp doesn't recover the volume, it's just slightly
// bigger than 0.
VolumeUp();
EXPECT_LT(0, audio_handler_->GetOutputVolumePercent());
EXPECT_GT(initial_volume, audio_handler_->GetOutputVolumePercent());
}
class VolumeControllerSoundsTest : public VolumeControllerTest {
public:
VolumeControllerSoundsTest() : sounds_manager_(NULL) {}
~VolumeControllerSoundsTest() override {}
void SetUpInProcessBrowserTestFixture() override {
sounds_manager_ = new SoundsManagerTestImpl();
audio::SoundsManager::InitializeForTesting(sounds_manager_);
}
bool is_sound_initialized() const {
return sounds_manager_->is_sound_initialized(
static_cast<int>(ash::Sound::kVolumeAdjust));
}
int num_play_requests() const {
return sounds_manager_->num_play_requests(
static_cast<int>(ash::Sound::kVolumeAdjust));
}
private:
SoundsManagerTestImpl* sounds_manager_;
DISALLOW_COPY_AND_ASSIGN(VolumeControllerSoundsTest);
};
IN_PROC_BROWSER_TEST_F(VolumeControllerSoundsTest, Simple) {
audio_handler_->SetOutputVolumePercent(50);
AccessibilityManager::Get()->EnableSpokenFeedback(false);
VolumeUp();
VolumeDown();
EXPECT_EQ(0, num_play_requests());
AccessibilityManager::Get()->EnableSpokenFeedback(true);
VolumeUp();
VolumeDown();
EXPECT_EQ(2, num_play_requests());
}
IN_PROC_BROWSER_TEST_F(VolumeControllerSoundsTest, EdgeCases) {
EXPECT_TRUE(is_sound_initialized());
AccessibilityManager::Get()->EnableSpokenFeedback(true);
// Check that sound is played on volume up and volume down.
audio_handler_->SetOutputVolumePercent(50);
VolumeUp();
EXPECT_EQ(1, num_play_requests());
VolumeDown();
EXPECT_EQ(2, num_play_requests());
audio_handler_->SetOutputVolumePercent(99);
VolumeUp();
EXPECT_EQ(3, num_play_requests());
audio_handler_->SetOutputVolumePercent(100);
VolumeUp();
EXPECT_EQ(3, num_play_requests());
// Check that sound isn't played when audio is muted.
audio_handler_->SetOutputVolumePercent(50);
VolumeMute();
VolumeDown();
ASSERT_TRUE(audio_handler_->IsOutputMuted());
EXPECT_EQ(3, num_play_requests());
// Check that audio is unmuted and sound is played.
VolumeUp();
ASSERT_FALSE(audio_handler_->IsOutputMuted());
EXPECT_EQ(4, num_play_requests());
}
class VolumeControllerSoundsDisabledTest : public VolumeControllerSoundsTest {
public:
VolumeControllerSoundsDisabledTest() {}
~VolumeControllerSoundsDisabledTest() override {}
void SetUpCommandLine(base::CommandLine* command_line) override {
VolumeControllerSoundsTest::SetUpCommandLine(command_line);
command_line->AppendSwitch(chromeos::switches::kDisableVolumeAdjustSound);
}
private:
DISALLOW_COPY_AND_ASSIGN(VolumeControllerSoundsDisabledTest);
};
IN_PROC_BROWSER_TEST_F(VolumeControllerSoundsDisabledTest, VolumeAdjustSounds) {
EXPECT_FALSE(is_sound_initialized());
// Check that sound isn't played on volume up and volume down.
audio_handler_->SetOutputVolumePercent(50);
VolumeUp();
VolumeDown();
EXPECT_EQ(0, num_play_requests());
}
} // namespace