OLD | NEW |
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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 connected_ = true; | 67 connected_ = true; |
68 StopMessageLoop(); | 68 StopMessageLoop(); |
69 } | 69 } |
70 | 70 |
71 scoped_refptr<SerialIoHandler> ReturnIoHandler() { return io_handler_; } | 71 scoped_refptr<SerialIoHandler> ReturnIoHandler() { return io_handler_; } |
72 | 72 |
73 void RunConnectTest(const std::string& path, bool expecting_success) { | 73 void RunConnectTest(const std::string& path, bool expecting_success) { |
74 if (!io_handler_.get()) | 74 if (!io_handler_.get()) |
75 io_handler_ = new TestSerialIoHandler; | 75 io_handler_ = new TestSerialIoHandler; |
76 mojo::InterfacePtr<serial::SerialService> service; | 76 mojo::InterfacePtr<serial::SerialService> service; |
77 mojo::BindToProxy( | 77 new SerialServiceImpl( |
78 new SerialServiceImpl( | 78 new SerialConnectionFactory( |
79 new SerialConnectionFactory( | 79 base::Bind(&SerialServiceTest::ReturnIoHandler, |
80 base::Bind(&SerialServiceTest::ReturnIoHandler, | 80 base::Unretained(this)), |
81 base::Unretained(this)), | 81 base::ThreadTaskRunnerHandle::Get()), |
82 base::ThreadTaskRunnerHandle::Get()), | 82 scoped_ptr<SerialDeviceEnumerator>(new FakeSerialDeviceEnumerator), |
83 scoped_ptr<SerialDeviceEnumerator>(new FakeSerialDeviceEnumerator)), | 83 mojo::GetProxy(&service)); |
84 &service); | |
85 mojo::InterfacePtr<serial::Connection> connection; | 84 mojo::InterfacePtr<serial::Connection> connection; |
86 mojo::InterfacePtr<serial::DataSink> sink; | 85 mojo::InterfacePtr<serial::DataSink> sink; |
87 mojo::InterfacePtr<serial::DataSource> source; | 86 mojo::InterfacePtr<serial::DataSource> source; |
88 mojo::InterfacePtr<serial::DataSourceClient> source_client; | 87 mojo::InterfacePtr<serial::DataSourceClient> source_client; |
89 mojo::GetProxy(&source_client); | 88 mojo::GetProxy(&source_client); |
90 service->Connect(path, serial::ConnectionOptions::New(), | 89 service->Connect(path, serial::ConnectionOptions::New(), |
91 mojo::GetProxy(&connection), mojo::GetProxy(&sink), | 90 mojo::GetProxy(&connection), mojo::GetProxy(&sink), |
92 mojo::GetProxy(&source), source_client.Pass()); | 91 mojo::GetProxy(&source), source_client.Pass()); |
93 connection.set_error_handler(this); | 92 connection.set_error_handler(this); |
94 expecting_error_ = !expecting_success; | 93 expecting_error_ = !expecting_success; |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 TEST_F(SerialServiceTest, ConnectInvalidPath) { | 132 TEST_F(SerialServiceTest, ConnectInvalidPath) { |
134 RunConnectTest("invalid_path", false); | 133 RunConnectTest("invalid_path", false); |
135 } | 134 } |
136 | 135 |
137 TEST_F(SerialServiceTest, ConnectOpenFailed) { | 136 TEST_F(SerialServiceTest, ConnectOpenFailed) { |
138 io_handler_ = new FailToOpenIoHandler; | 137 io_handler_ = new FailToOpenIoHandler; |
139 RunConnectTest("device", false); | 138 RunConnectTest("device", false); |
140 } | 139 } |
141 | 140 |
142 } // namespace device | 141 } // namespace device |
OLD | NEW |