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 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
|
// Copyright 2014 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 <X11/extensions/Xrandr.h>
#undef Bool
#undef None
#include "base/test/simple_test_tick_clock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/display/chromeos/x11/display_mode_x11.h"
#include "ui/display/chromeos/x11/display_snapshot_x11.h"
#include "ui/display/chromeos/x11/native_display_delegate_x11.h"
#include "ui/display/chromeos/x11/native_display_event_dispatcher_x11.h"
namespace ui {
namespace {
DisplaySnapshotX11* CreateOutput(int64_t id,
DisplayConnectionType type,
RROutput output,
RRCrtc crtc) {
static const DisplayModeX11* kDefaultDisplayMode =
new DisplayModeX11(gfx::Size(1, 1), false, 60.0f, 20);
DisplaySnapshotX11* snapshot = new DisplaySnapshotX11(
id,
gfx::Point(0, 0),
gfx::Size(0, 0),
type,
false,
false,
std::string(),
std::vector<const DisplayMode*>(1, kDefaultDisplayMode),
kDefaultDisplayMode,
NULL,
output,
crtc,
0);
return snapshot;
}
DisplaySnapshotX11* CreateExternalOutput(RROutput output, RRCrtc crtc) {
return CreateOutput(static_cast<int64_t>(output),
DISPLAY_CONNECTION_TYPE_UNKNOWN,
output,
crtc);
}
DisplaySnapshotX11* CreateInternalOutput(RROutput output, RRCrtc crtc) {
return CreateOutput(0,
DISPLAY_CONNECTION_TYPE_INTERNAL,
output,
crtc);
}
class TestHelperDelegate : public NativeDisplayDelegateX11::HelperDelegate {
public:
TestHelperDelegate();
virtual ~TestHelperDelegate();
int num_calls_update_xrandr_config() const {
return num_calls_update_xrandr_config_;
}
int num_calls_notify_observers() const { return num_calls_notify_observers_; }
void set_cached_outputs(const std::vector<DisplaySnapshot*>& outputs) {
cached_outputs_ = outputs;
}
// NativeDisplayDelegateX11::HelperDelegate overrides:
virtual void UpdateXRandRConfiguration(const base::NativeEvent& event)
override;
virtual const std::vector<DisplaySnapshot*>& GetCachedDisplays() const
override;
virtual void NotifyDisplayObservers() override;
private:
int num_calls_update_xrandr_config_;
int num_calls_notify_observers_;
std::vector<DisplaySnapshot*> cached_outputs_;
DISALLOW_COPY_AND_ASSIGN(TestHelperDelegate);
};
TestHelperDelegate::TestHelperDelegate()
: num_calls_update_xrandr_config_(0), num_calls_notify_observers_(0) {}
TestHelperDelegate::~TestHelperDelegate() {}
void TestHelperDelegate::UpdateXRandRConfiguration(
const base::NativeEvent& event) {
++num_calls_update_xrandr_config_;
}
const std::vector<DisplaySnapshot*>& TestHelperDelegate::GetCachedDisplays()
const {
return cached_outputs_;
}
void TestHelperDelegate::NotifyDisplayObservers() {
++num_calls_notify_observers_;
}
////////////////////////////////////////////////////////////////////////////////
// NativeDisplayEventDispatcherX11Test
class NativeDisplayEventDispatcherX11Test : public testing::Test {
public:
NativeDisplayEventDispatcherX11Test();
virtual ~NativeDisplayEventDispatcherX11Test();
protected:
void DispatchScreenChangeEvent();
void DispatchOutputChangeEvent(RROutput output,
RRCrtc crtc,
RRMode mode,
bool connected);
int xrandr_event_base_;
scoped_ptr<TestHelperDelegate> helper_delegate_;
scoped_ptr<NativeDisplayEventDispatcherX11> dispatcher_;
base::SimpleTestTickClock* test_tick_clock_; // Owned by |dispatcher_|.
private:
DISALLOW_COPY_AND_ASSIGN(NativeDisplayEventDispatcherX11Test);
};
NativeDisplayEventDispatcherX11Test::NativeDisplayEventDispatcherX11Test()
: xrandr_event_base_(10),
helper_delegate_(new TestHelperDelegate()),
dispatcher_(new NativeDisplayEventDispatcherX11(helper_delegate_.get(),
xrandr_event_base_)),
test_tick_clock_(new base::SimpleTestTickClock) {
test_tick_clock_->Advance(base::TimeDelta::FromMilliseconds(1));
dispatcher_->SetTickClockForTest(
scoped_ptr<base::TickClock>(test_tick_clock_));
}
NativeDisplayEventDispatcherX11Test::~NativeDisplayEventDispatcherX11Test() {}
void NativeDisplayEventDispatcherX11Test::DispatchScreenChangeEvent() {
XRRScreenChangeNotifyEvent event = {0};
event.type = xrandr_event_base_ + RRScreenChangeNotify;
dispatcher_->DispatchEvent(reinterpret_cast<const PlatformEvent>(&event));
}
void NativeDisplayEventDispatcherX11Test::DispatchOutputChangeEvent(
RROutput output,
RRCrtc crtc,
RRMode mode,
bool connected) {
XRROutputChangeNotifyEvent event = {0};
event.type = xrandr_event_base_ + RRNotify;
event.subtype = RRNotify_OutputChange;
event.output = output;
event.crtc = crtc;
event.mode = mode;
event.connection = connected ? RR_Connected : RR_Disconnected;
dispatcher_->DispatchEvent(reinterpret_cast<const PlatformEvent>(&event));
}
} // namespace
TEST_F(NativeDisplayEventDispatcherX11Test, OnScreenChangedEvent) {
DispatchScreenChangeEvent();
EXPECT_EQ(1, helper_delegate_->num_calls_update_xrandr_config());
EXPECT_EQ(0, helper_delegate_->num_calls_notify_observers());
}
TEST_F(NativeDisplayEventDispatcherX11Test, CheckNotificationOnFirstEvent) {
DispatchOutputChangeEvent(1, 10, 20, true);
EXPECT_EQ(0, helper_delegate_->num_calls_update_xrandr_config());
EXPECT_EQ(1, helper_delegate_->num_calls_notify_observers());
}
TEST_F(NativeDisplayEventDispatcherX11Test, CheckNotificationAfterSecondEvent) {
DispatchOutputChangeEvent(1, 10, 20, true);
// Simulate addition of the first output to the cached output list.
ScopedVector<DisplaySnapshot> outputs;
outputs.push_back(CreateExternalOutput(1, 10));
helper_delegate_->set_cached_outputs(outputs.get());
DispatchOutputChangeEvent(2, 11, 20, true);
EXPECT_EQ(2, helper_delegate_->num_calls_notify_observers());
}
TEST_F(NativeDisplayEventDispatcherX11Test, CheckNotificationOnDisconnect) {
ScopedVector<DisplaySnapshot> outputs;
outputs.push_back(CreateExternalOutput(1, 10));
helper_delegate_->set_cached_outputs(outputs.get());
DispatchOutputChangeEvent(1, 10, 20, false);
EXPECT_EQ(1, helper_delegate_->num_calls_notify_observers());
}
TEST_F(NativeDisplayEventDispatcherX11Test, CheckNotificationOnModeChange) {
ScopedVector<DisplaySnapshot> outputs;
outputs.push_back(CreateExternalOutput(1, 10));
helper_delegate_->set_cached_outputs(outputs.get());
DispatchOutputChangeEvent(1, 10, 21, true);
EXPECT_EQ(1, helper_delegate_->num_calls_notify_observers());
}
TEST_F(NativeDisplayEventDispatcherX11Test, CheckNotificationOnSecondOutput) {
ScopedVector<DisplaySnapshot> outputs;
outputs.push_back(CreateExternalOutput(1, 10));
helper_delegate_->set_cached_outputs(outputs.get());
DispatchOutputChangeEvent(2, 11, 20, true);
EXPECT_EQ(1, helper_delegate_->num_calls_notify_observers());
}
TEST_F(NativeDisplayEventDispatcherX11Test, CheckNotificationOnDifferentCrtc) {
ScopedVector<DisplaySnapshot> outputs;
outputs.push_back(CreateExternalOutput(1, 10));
helper_delegate_->set_cached_outputs(outputs.get());
DispatchOutputChangeEvent(1, 11, 20, true);
EXPECT_EQ(1, helper_delegate_->num_calls_notify_observers());
}
TEST_F(NativeDisplayEventDispatcherX11Test,
CheckNotificationOnSecondOutputDisconnect) {
ScopedVector<DisplaySnapshot> outputs;
outputs.push_back(CreateExternalOutput(1, 10));
outputs.push_back(CreateExternalOutput(2, 11));
helper_delegate_->set_cached_outputs(outputs.get());
DispatchOutputChangeEvent(2, 11, 20, false);
EXPECT_EQ(1, helper_delegate_->num_calls_notify_observers());
}
TEST_F(NativeDisplayEventDispatcherX11Test,
AvoidDuplicateNotificationOnSecondOutputDisconnect) {
ScopedVector<DisplaySnapshot> outputs;
outputs.push_back(CreateExternalOutput(1, 10));
outputs.push_back(CreateExternalOutput(2, 11));
helper_delegate_->set_cached_outputs(outputs.get());
DispatchOutputChangeEvent(2, 11, 20, false);
EXPECT_EQ(1, helper_delegate_->num_calls_notify_observers());
// Simulate removal of second output from cached output list.
outputs.erase(outputs.begin() + 1);
helper_delegate_->set_cached_outputs(outputs.get());
DispatchOutputChangeEvent(2, 11, 20, false);
EXPECT_EQ(1, helper_delegate_->num_calls_notify_observers());
}
TEST_F(NativeDisplayEventDispatcherX11Test,
ForceUpdateAfterCacheExpiration) {
// +1 to compenstate a possible rounding error.
const int kHalfOfExpirationMs =
NativeDisplayEventDispatcherX11::kUseCacheAfterStartupMs / 2 + 1;
ScopedVector<DisplaySnapshot> outputs;
outputs.push_back(CreateExternalOutput(1, 10));
outputs.push_back(CreateExternalOutput(2, 11));
helper_delegate_->set_cached_outputs(outputs.get());
EXPECT_EQ(0, helper_delegate_->num_calls_notify_observers());
// Duplicated event will be ignored during the startup.
DispatchOutputChangeEvent(2, 11, 20, true);
EXPECT_EQ(0, helper_delegate_->num_calls_notify_observers());
test_tick_clock_->Advance(base::TimeDelta::FromMilliseconds(
kHalfOfExpirationMs));
// Duplicated event will still be ignored.
DispatchOutputChangeEvent(2, 11, 20, true);
EXPECT_EQ(0, helper_delegate_->num_calls_notify_observers());
// The startup timeout has been elapsed. Duplicated event
// should not be ignored.
test_tick_clock_->Advance(
base::TimeDelta::FromMilliseconds(kHalfOfExpirationMs));
DispatchOutputChangeEvent(2, 11, 20, true);
EXPECT_EQ(1, helper_delegate_->num_calls_notify_observers());
// Sending the same event immediately shoudldn't be ignored.
DispatchOutputChangeEvent(2, 11, 20, true);
EXPECT_EQ(2, helper_delegate_->num_calls_notify_observers());
// Advancing time further should not change the behavior.
test_tick_clock_->Advance(base::TimeDelta::FromMilliseconds(
kHalfOfExpirationMs));
DispatchOutputChangeEvent(2, 11, 20, true);
EXPECT_EQ(3, helper_delegate_->num_calls_notify_observers());
test_tick_clock_->Advance(
base::TimeDelta::FromMilliseconds(kHalfOfExpirationMs));
DispatchOutputChangeEvent(2, 11, 20, true);
EXPECT_EQ(4, helper_delegate_->num_calls_notify_observers());
}
TEST_F(NativeDisplayEventDispatcherX11Test,
UpdateMissingExternalDisplayId) {
ScopedVector<DisplaySnapshot> outputs;
outputs.push_back(CreateInternalOutput(1, 10));
helper_delegate_->set_cached_outputs(outputs.get());
ASSERT_EQ(0, helper_delegate_->num_calls_notify_observers());
// Internal display's ID can be zero and not updated.
DispatchOutputChangeEvent(1, 10, 20, true);
EXPECT_EQ(0, helper_delegate_->num_calls_notify_observers());
outputs.clear();
outputs.push_back(CreateOutput(0, DISPLAY_CONNECTION_TYPE_UNKNOWN, 2, 11));
helper_delegate_->set_cached_outputs(outputs.get());
// External display should be updated if the id is zero.
DispatchOutputChangeEvent(2, 11, 20, true);
EXPECT_EQ(1, helper_delegate_->num_calls_notify_observers());
}
} // namespace ui
|