Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Side by Side Diff: ui/ozone/platform/wayland/wayland_display_unittest.cc

Issue 2042503002: ozone/platform/wayland: Add support for wl_output_interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: hide the use of the base::Closure Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <wayland-server-core.h> 5 #include <wayland-server-core.h>
6 #include <xdg-shell-unstable-v5-server-protocol.h> 6 #include <xdg-shell-unstable-v5-server-protocol.h>
7 7
8 #include "base/run_loop.h" 8 #include "base/run_loop.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 #include "ui/ozone/platform/wayland/fake_server.h" 10 #include "ui/ozone/platform/wayland/fake_server.h"
11 #include "ui/ozone/platform/wayland/wayland_display.h" 11 #include "ui/ozone/platform/wayland/wayland_display.h"
12 #include "ui/ozone/platform/wayland/wayland_screen.h"
12 13
13 namespace ui { 14 namespace ui {
14 15
15 TEST(WaylandDisplayTest, UseUnstableVersion) { 16 TEST(WaylandDisplayTest, UseUnstableVersion) {
16 base::MessageLoopForUI message_loop; 17 base::MessageLoopForUI message_loop;
17 wl::FakeServer server; 18 wl::FakeServer server;
18 EXPECT_CALL(*server.xdg_shell(), 19 EXPECT_CALL(*server.xdg_shell(),
19 UseUnstableVersion(XDG_SHELL_VERSION_CURRENT)); 20 UseUnstableVersion(XDG_SHELL_VERSION_CURRENT));
20 ASSERT_TRUE(server.Start()); 21 ASSERT_TRUE(server.Start());
21 WaylandDisplay display; 22 WaylandDisplay display;
(...skipping 16 matching lines...) Expand all
38 server.Pause(); 39 server.Pause();
39 40
40 xdg_shell_send_ping(server.xdg_shell()->resource(), 1234); 41 xdg_shell_send_ping(server.xdg_shell()->resource(), 1234);
41 EXPECT_CALL(*server.xdg_shell(), Pong(1234)); 42 EXPECT_CALL(*server.xdg_shell(), Pong(1234));
42 43
43 server.Resume(); 44 server.Resume();
44 base::RunLoop().RunUntilIdle(); 45 base::RunLoop().RunUntilIdle();
45 server.Pause(); 46 server.Pause();
46 } 47 }
47 48
49 TEST(WaylandDisplayTest, Output) {
50 base::MessageLoopForUI message_loop;
51 display::Display fake_display(1, gfx::Rect(0, 0, 800, 600));
52 wl::FakeServer server;
53 server.AddDisplay(fake_display);
54 ASSERT_TRUE(server.Start());
55 WaylandDisplay display;
56 ASSERT_TRUE(display.Initialize());
57 display.StartProcessingEvents();
58
59 display.PrimaryScreen()->WaitforOutputAvailable();
60
61 ASSERT_TRUE(display.GetScreenList().size() == 1);
62 WaylandScreen* screen = display.PrimaryScreen();
63 ASSERT_TRUE(screen->Geometry().width() == 800);
64 ASSERT_TRUE(screen->Geometry().height() == 600);
65
66 server.Resume();
67 base::RunLoop().RunUntilIdle();
68 server.Pause();
69 }
70
48 } // namespace ui 71 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698