blob: f6f1a759f2dffd2e0b04b45e0b33aa4f215e003b [file] [log] [blame]
// Copyright (c) 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "services/device/serial/serial_port_manager_impl.h"
#include "base/macros.h"
#include "mojo/public/cpp/bindings/interface_ptr.h"
#include "services/device/device_service_test_base.h"
#include "services/device/public/mojom/constants.mojom.h"
#include "services/device/public/mojom/serial.mojom.h"
namespace device {
namespace {
class SerialPortManagerImplTest : public DeviceServiceTestBase {
public:
SerialPortManagerImplTest() = default;
~SerialPortManagerImplTest() override = default;
protected:
void SetUp() override {
DeviceServiceTestBase::SetUp();
connector()->BindInterface(mojom::kServiceName, &port_manager_);
}
void TearDown() override { port_manager_.reset(); }
mojom::SerialPortManagerPtr port_manager_;
DISALLOW_COPY_AND_ASSIGN(SerialPortManagerImplTest);
};
// This is to simply test that on Linux/Mac/Windows a client can connect to
// Device Service and bind the serial SerialDeviceEnumerator interface
// correctly.
// TODO(leonhsl): figure out how to add more robust tests.
TEST_F(SerialPortManagerImplTest, SimpleConnectTest) {
port_manager_.FlushForTesting();
}
} // namespace
} // namespace device