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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
// 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 "ash/system/audio/audio_detailed_view.h"
#include <memory>
#include "ash/public/cpp/test/test_system_tray_client.h"
#include "ash/session/session_controller_impl.h"
#include "ash/shell.h"
#include "ash/system/tray/fake_detailed_view_delegate.h"
#include "ash/test/ash_test_base.h"
#include "base/memory/raw_ptr.h"
#include "base/test/scoped_feature_list.h"
#include "components/services/app_service/public/cpp/app_capability_access_cache.h"
#include "components/services/app_service/public/cpp/app_capability_access_cache_wrapper.h"
#include "components/services/app_service/public/cpp/app_registry_cache.h"
#include "components/services/app_service/public/cpp/app_registry_cache_wrapper.h"
#include "components/user_manager/fake_user_manager.h"
#include "media/base/media_switches.h"
#include "ui/views/test/views_test_utils.h"
#include "ui/views/widget/widget.h"
namespace ash {
class AudioDetailedViewTest : public AshTestBase {
public:
// AshTestBase:
void SetUp() override {
AshTestBase::SetUp();
auto audio_detailed_view =
std::make_unique<AudioDetailedView>(&detailed_view_delegate_);
audio_detailed_view_ = audio_detailed_view.get();
widget_ = CreateFramelessTestWidget();
widget_->SetFullscreen(true);
widget_->SetContentsView(audio_detailed_view.release()->GetAsView());
}
void TearDown() override {
widget_.reset();
AshTestBase::TearDown();
}
views::Button* GetSettingsButton() {
return audio_detailed_view_->settings_button_;
}
std::unique_ptr<views::Widget> widget_;
FakeDetailedViewDelegate detailed_view_delegate_;
raw_ptr<AudioDetailedView, DanglingUntriaged> audio_detailed_view_ = nullptr;
};
TEST_F(AudioDetailedViewTest, PressingSettingsButtonOpensSettings) {
views::Button* settings_button = GetSettingsButton();
// Clicking the button at the lock screen does nothing.
GetSessionControllerClient()->SetSessionState(
session_manager::SessionState::LOCKED);
LeftClickOn(settings_button);
EXPECT_EQ(0, GetSystemTrayClient()->show_audio_settings_count());
EXPECT_EQ(0u, detailed_view_delegate_.close_bubble_call_count());
// Clicking the button in an active user session opens OS settings.
GetSessionControllerClient()->SetSessionState(
session_manager::SessionState::ACTIVE);
LeftClickOn(settings_button);
EXPECT_EQ(1, GetSystemTrayClient()->show_audio_settings_count());
EXPECT_EQ(1u, detailed_view_delegate_.close_bubble_call_count());
}
class AudioDetailedViewAgcInfoTest
: public AudioDetailedViewTest,
public testing::WithParamInterface<testing::tuple<bool, bool>> {
public:
void SetUp() override {
scoped_feature_list_.InitWithFeatureStates(
{{media::kIgnoreUiGains, IsIgnoreUiGainsEnabled()}});
AudioDetailedViewTest::SetUp();
CrasAudioHandler* audio_handler = CrasAudioHandler::Get();
CHECK(audio_handler);
audio_handler->SetForceRespectUiGainsState(IsForceRespectUiGainsEnabled());
account_id_ = Shell::Get()->session_controller()->GetActiveAccountId();
registry_cache_.SetAccountId(account_id_);
apps::AppRegistryCacheWrapper::Get().AddAppRegistryCache(account_id_,
®istry_cache_);
capability_access_cache_.SetAccountId(account_id_);
apps::AppCapabilityAccessCacheWrapper::Get().AddAppCapabilityAccessCache(
account_id_, &capability_access_cache_);
audio_detailed_view_->Update();
}
void TearDown() override {
AudioDetailedViewTest::TearDown();
apps::AppRegistryCacheWrapper::Get().RemoveAppRegistryCache(
®istry_cache_);
apps::AppCapabilityAccessCacheWrapper::Get().RemoveAppCapabilityAccessCache(
&capability_access_cache_);
registry_cache_.ReinitializeForTesting();
}
bool IsIgnoreUiGainsEnabled() { return std::get<0>(GetParam()); }
bool IsForceRespectUiGainsEnabled() { return std::get<1>(GetParam()); }
views::View* GetAgcInfoView() {
return audio_detailed_view_->GetViewByID(
AudioDetailedView::AudioDetailedViewID::kAgcInfoView);
}
static apps::AppPtr MakeApp(const char* app_id, const char* name) {
apps::AppPtr app =
std::make_unique<apps::App>(apps::AppType::kChromeApp, app_id);
app->name = name;
app->short_name = name;
return app;
}
static apps::CapabilityAccessPtr MakeCapabilityAccess(
const char* app_id,
std::optional<bool> mic) {
apps::CapabilityAccessPtr access =
std::make_unique<apps::CapabilityAccess>(app_id);
access->camera = false;
access->microphone = mic;
return access;
}
void LaunchApp(const char* id,
const char* name,
std::optional<bool> use_mic) {
std::vector<apps::AppPtr> registry_deltas;
registry_deltas.push_back(MakeApp(id, name));
registry_cache_.OnAppsForTesting(std::move(registry_deltas),
apps::AppType::kUnknown,
/* should_notify_initialized = */ false);
std::vector<apps::CapabilityAccessPtr> capability_access_deltas;
capability_access_deltas.push_back(MakeCapabilityAccess(id, use_mic));
capability_access_cache_.OnCapabilityAccesses(
std::move(capability_access_deltas));
}
AccountId account_id_;
apps::AppRegistryCache registry_cache_;
apps::AppCapabilityAccessCache capability_access_cache_;
base::test::ScopedFeatureList scoped_feature_list_;
};
TEST_P(AudioDetailedViewAgcInfoTest, AgcInfoRowShowInProperConditions) {
const char* app_id = "app";
const char* app_name = "App name";
GetSessionControllerClient()->SetSessionState(
session_manager::SessionState::ACTIVE);
audio_detailed_view_->OnSessionStateChanged(
session_manager::SessionState::ACTIVE);
views::View* agc_info = GetAgcInfoView();
if (!IsIgnoreUiGainsEnabled()) {
ASSERT_EQ(agc_info, nullptr);
return;
}
ASSERT_NE(agc_info, nullptr);
// Launch an app accessing mic and requesting ignore UI gains.
LaunchApp(app_id, app_name, true);
audio_detailed_view_->OnNumStreamIgnoreUiGainsChanged(1);
EXPECT_EQ(agc_info->GetVisible(), !IsForceRespectUiGainsEnabled());
// Launch an app accessing mic but not requesting ignore UI gains.
LaunchApp(app_id, app_name, true);
audio_detailed_view_->OnNumStreamIgnoreUiGainsChanged(0);
EXPECT_EQ(agc_info->GetVisible(), false);
// Launch an app not accessing mic but requesting ignore UI gains.
// This should not happen in real cases though.
LaunchApp(app_id, app_name, false);
audio_detailed_view_->OnNumStreamIgnoreUiGainsChanged(1);
EXPECT_EQ(agc_info->GetVisible(), false);
// Launch an app not accessing mic and not requesting ignore UI gains.
LaunchApp(app_id, app_name, false);
audio_detailed_view_->OnNumStreamIgnoreUiGainsChanged(0);
EXPECT_EQ(agc_info->GetVisible(), false);
}
INSTANTIATE_TEST_SUITE_P(AudioDetailedViewAgcInfoVisibleTest,
AudioDetailedViewAgcInfoTest,
testing::Combine(testing::Bool(),
testing::Bool()));
} // namespace ash
|