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

Side by Side Diff: services/ui/clipboard/clipboard_unittest.cc

Issue 2123363002: ShellTest -> ServiceTest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 5 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
« no previous file with comments | « services/ui/clipboard/BUILD.gn ('k') | services/ui/public/cpp/tests/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <stdint.h> 5 #include <stdint.h>
6 #include <utility> 6 #include <utility>
7 7
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/run_loop.h" 10 #include "base/run_loop.h"
11 #include "mojo/common/common_type_converters.h" 11 #include "mojo/common/common_type_converters.h"
12 #include "services/shell/public/cpp/service_test.h"
12 #include "services/shell/public/cpp/shell_connection.h" 13 #include "services/shell/public/cpp/shell_connection.h"
13 #include "services/shell/public/cpp/shell_test.h"
14 #include "services/ui/public/interfaces/clipboard.mojom.h" 14 #include "services/ui/public/interfaces/clipboard.mojom.h"
15 15
16 using mojo::Array; 16 using mojo::Array;
17 using mojo::Map; 17 using mojo::Map;
18 using mojo::String; 18 using mojo::String;
19 using ui::mojom::Clipboard; 19 using ui::mojom::Clipboard;
20 20
21 namespace ui { 21 namespace ui {
22 namespace clipboard { 22 namespace clipboard {
23 namespace { 23 namespace {
24 24
25 const char* kUninitialized = "Uninitialized data"; 25 const char* kUninitialized = "Uninitialized data";
26 const char* kPlainTextData = "Some plain data"; 26 const char* kPlainTextData = "Some plain data";
27 const char* kHtmlData = "<html>data</html>"; 27 const char* kHtmlData = "<html>data</html>";
28 28
29 } // namespace 29 } // namespace
30 30
31 class ClipboardAppTest : public shell::test::ShellTest { 31 class ClipboardAppTest : public shell::test::ServiceTest {
32 public: 32 public:
33 ClipboardAppTest() : ShellTest("exe:mus_clipboard_unittests") {} 33 ClipboardAppTest() : ServiceTest("exe:mus_clipboard_unittests") {}
34 ~ClipboardAppTest() override {} 34 ~ClipboardAppTest() override {}
35 35
36 // Overridden from shell::test::ShellTest: 36 // Overridden from shell::test::ServiceTest:
37 void SetUp() override { 37 void SetUp() override {
38 ShellTest::SetUp(); 38 ServiceTest::SetUp();
39 39
40 connector()->ConnectToInterface("mojo:ui", &clipboard_); 40 connector()->ConnectToInterface("mojo:ui", &clipboard_);
41 ASSERT_TRUE(clipboard_); 41 ASSERT_TRUE(clipboard_);
42 } 42 }
43 43
44 uint64_t GetSequenceNumber() { 44 uint64_t GetSequenceNumber() {
45 uint64_t sequence_num = 999999; 45 uint64_t sequence_num = 999999;
46 EXPECT_TRUE(clipboard_->GetSequenceNumber( 46 EXPECT_TRUE(clipboard_->GetSequenceNumber(
47 Clipboard::Type::COPY_PASTE, &sequence_num)); 47 Clipboard::Type::COPY_PASTE, &sequence_num));
48 return sequence_num; 48 return sequence_num;
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 clipboard_->WriteClipboardData(Clipboard::Type::COPY_PASTE, 136 clipboard_->WriteClipboardData(Clipboard::Type::COPY_PASTE,
137 std::move(mime_data), 137 std::move(mime_data),
138 &sequence_num); 138 &sequence_num);
139 139
140 EXPECT_EQ(2ul, sequence_num); 140 EXPECT_EQ(2ul, sequence_num);
141 EXPECT_FALSE(GetDataOfType(mojom::kMimeTypeText, &data)); 141 EXPECT_FALSE(GetDataOfType(mojom::kMimeTypeText, &data));
142 } 142 }
143 143
144 } // namespace clipboard 144 } // namespace clipboard
145 } // namespace ui 145 } // namespace ui
OLDNEW
« no previous file with comments | « services/ui/clipboard/BUILD.gn ('k') | services/ui/public/cpp/tests/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698