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

Side by Side Diff: device/serial/serial_service_unittest.cc

Issue 873293006: Revert of Remove Client= from device/serial/data_stream.mojom. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "base/bind.h" 5 #include "base/bind.h"
6 #include "base/message_loop/message_loop.h" 6 #include "base/message_loop/message_loop.h"
7 #include "base/run_loop.h" 7 #include "base/run_loop.h"
8 #include "device/serial/serial.mojom.h" 8 #include "device/serial/serial.mojom.h"
9 #include "device/serial/serial_service_impl.h" 9 #include "device/serial/serial_service_impl.h"
10 #include "device/serial/test_serial_io_handler.h" 10 #include "device/serial/test_serial_io_handler.h"
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 mojo::BindToProxy( 77 mojo::BindToProxy(
78 new SerialServiceImpl( 78 new SerialServiceImpl(
79 new SerialConnectionFactory( 79 new SerialConnectionFactory(
80 base::Bind(&SerialServiceTest::ReturnIoHandler, 80 base::Bind(&SerialServiceTest::ReturnIoHandler,
81 base::Unretained(this)), 81 base::Unretained(this)),
82 base::MessageLoopProxy::current()), 82 base::MessageLoopProxy::current()),
83 scoped_ptr<SerialDeviceEnumerator>(new FakeSerialDeviceEnumerator)), 83 scoped_ptr<SerialDeviceEnumerator>(new FakeSerialDeviceEnumerator)),
84 &service); 84 &service);
85 mojo::InterfacePtr<serial::Connection> connection; 85 mojo::InterfacePtr<serial::Connection> connection;
86 mojo::InterfacePtr<serial::DataSink> sink; 86 mojo::InterfacePtr<serial::DataSink> sink;
87 mojo::InterfacePtr<serial::DataSinkClient> sink_client;
88 mojo::GetProxy(&sink_client);
89 mojo::InterfacePtr<serial::DataSource> source; 87 mojo::InterfacePtr<serial::DataSource> source;
90 mojo::InterfacePtr<serial::DataSourceClient> source_client; 88 service->Connect(path,
91 mojo::GetProxy(&source_client); 89 serial::ConnectionOptions::New(),
92 service->Connect(path, serial::ConnectionOptions::New(), 90 mojo::GetProxy(&connection),
93 mojo::GetProxy(&connection), mojo::GetProxy(&sink), 91 mojo::GetProxy(&sink),
94 sink_client.Pass(), mojo::GetProxy(&source), 92 mojo::GetProxy(&source));
95 source_client.Pass());
96 connection.set_error_handler(this); 93 connection.set_error_handler(this);
97 expecting_error_ = !expecting_success; 94 expecting_error_ = !expecting_success;
98 connection->GetInfo( 95 connection->GetInfo(
99 base::Bind(&SerialServiceTest::OnGotInfo, base::Unretained(this))); 96 base::Bind(&SerialServiceTest::OnGotInfo, base::Unretained(this)));
100 RunMessageLoop(); 97 RunMessageLoop();
101 EXPECT_EQ(!expecting_success, connection.encountered_error()); 98 EXPECT_EQ(!expecting_success, connection.encountered_error());
102 EXPECT_EQ(expecting_success, connected_); 99 EXPECT_EQ(expecting_success, connected_);
103 connection.reset(); 100 connection.reset();
104 } 101 }
105 102
(...skipping 30 matching lines...) Expand all
136 TEST_F(SerialServiceTest, ConnectInvalidPath) { 133 TEST_F(SerialServiceTest, ConnectInvalidPath) {
137 RunConnectTest("invalid_path", false); 134 RunConnectTest("invalid_path", false);
138 } 135 }
139 136
140 TEST_F(SerialServiceTest, ConnectOpenFailed) { 137 TEST_F(SerialServiceTest, ConnectOpenFailed) {
141 io_handler_ = new FailToOpenIoHandler; 138 io_handler_ = new FailToOpenIoHandler;
142 RunConnectTest("device", false); 139 RunConnectTest("device", false);
143 } 140 }
144 141
145 } // namespace device 142 } // namespace device
OLDNEW
« no previous file with comments | « device/serial/serial_service_impl.cc ('k') | extensions/renderer/api/serial/data_receiver_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698