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

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

Issue 889283002: Remove Client= from device/serial/data_stream.mojom. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: This time without racing message pipes 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
« no previous file with comments | « device/serial/serial_connection_factory.cc ('k') | device/serial/serial_service_impl.h » ('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 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 <string> 5 #include <string>
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #include "base/run_loop.h" 9 #include "base/run_loop.h"
10 #include "base/strings/string_piece.h" 10 #include "base/strings/string_piece.h"
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 mojo::InterfacePtr<serial::SerialService> service; 67 mojo::InterfacePtr<serial::SerialService> service;
68 mojo::BindToProxy( 68 mojo::BindToProxy(
69 new SerialServiceImpl( 69 new SerialServiceImpl(
70 new SerialConnectionFactory( 70 new SerialConnectionFactory(
71 base::Bind(&SerialConnectionTest::CreateIoHandler, 71 base::Bind(&SerialConnectionTest::CreateIoHandler,
72 base::Unretained(this)), 72 base::Unretained(this)),
73 base::MessageLoopProxy::current()), 73 base::MessageLoopProxy::current()),
74 scoped_ptr<SerialDeviceEnumerator>(new FakeSerialDeviceEnumerator)), 74 scoped_ptr<SerialDeviceEnumerator>(new FakeSerialDeviceEnumerator)),
75 &service); 75 &service);
76 service.set_error_handler(this); 76 service.set_error_handler(this);
77 mojo::InterfacePtr<serial::DataSink> consumer; 77 mojo::InterfacePtr<serial::DataSink> sink;
78 mojo::InterfacePtr<serial::DataSource> producer; 78 mojo::InterfacePtr<serial::DataSource> source;
79 service->Connect("device", 79 mojo::InterfacePtr<serial::DataSourceClient> source_client;
80 serial::ConnectionOptions::New(), 80 mojo::InterfaceRequest<serial::DataSourceClient> source_client_request =
81 mojo::GetProxy(&connection_), 81 mojo::GetProxy(&source_client);
82 mojo::GetProxy(&consumer), 82 service->Connect("device", serial::ConnectionOptions::New(),
83 mojo::GetProxy(&producer)); 83 mojo::GetProxy(&connection_), mojo::GetProxy(&sink),
84 sender_.reset(new DataSender( 84 mojo::GetProxy(&source), source_client.Pass());
85 consumer.Pass(), kBufferSize, serial::SEND_ERROR_DISCONNECTED)); 85 sender_.reset(new DataSender(sink.Pass(), kBufferSize,
86 receiver_ = new DataReceiver( 86 serial::SEND_ERROR_DISCONNECTED));
87 producer.Pass(), kBufferSize, serial::RECEIVE_ERROR_DISCONNECTED); 87 receiver_ =
88 new DataReceiver(source.Pass(), source_client_request.Pass(),
89 kBufferSize, serial::RECEIVE_ERROR_DISCONNECTED);
88 connection_.set_error_handler(this); 90 connection_.set_error_handler(this);
89 connection_->GetInfo( 91 connection_->GetInfo(
90 base::Bind(&SerialConnectionTest::StoreInfo, base::Unretained(this))); 92 base::Bind(&SerialConnectionTest::StoreInfo, base::Unretained(this)));
91 WaitForEvent(EVENT_GOT_INFO); 93 WaitForEvent(EVENT_GOT_INFO);
92 ASSERT_TRUE(io_handler_.get()); 94 ASSERT_TRUE(io_handler_.get());
93 } 95 }
94 96
95 void StoreInfo(serial::ConnectionInfoPtr options) { 97 void StoreInfo(serial::ConnectionInfoPtr options) {
96 info_ = options.Pass(); 98 info_ = options.Pass();
97 EventReceived(EVENT_GOT_INFO); 99 EventReceived(EVENT_GOT_INFO);
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 WaitForEvent(EVENT_DATA_SENT); 325 WaitForEvent(EVENT_DATA_SENT);
324 EXPECT_EQ(serial::SEND_ERROR_NONE, send_error_); 326 EXPECT_EQ(serial::SEND_ERROR_NONE, send_error_);
325 EXPECT_EQ(4, bytes_sent_); 327 EXPECT_EQ(4, bytes_sent_);
326 ASSERT_NO_FATAL_FAILURE(Receive()); 328 ASSERT_NO_FATAL_FAILURE(Receive());
327 WaitForEvent(EVENT_DATA_RECEIVED); 329 WaitForEvent(EVENT_DATA_RECEIVED);
328 EXPECT_EQ("data", data_received_); 330 EXPECT_EQ("data", data_received_);
329 EXPECT_EQ(serial::RECEIVE_ERROR_NONE, receive_error_); 331 EXPECT_EQ(serial::RECEIVE_ERROR_NONE, receive_error_);
330 } 332 }
331 333
332 } // namespace device 334 } // namespace device
OLDNEW
« no previous file with comments | « device/serial/serial_connection_factory.cc ('k') | device/serial/serial_service_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698