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

Unified Diff: media/midi/midi_manager_usb_unittest.cc

Issue 107163008: [WebMIDI] Introduce MidiManagerUsb (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@usb-midi-stream
Patch Set: Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: media/midi/midi_manager_usb_unittest.cc
diff --git a/media/midi/midi_manager_usb_unittest.cc b/media/midi/midi_manager_usb_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..2bf28d74d9ef903ec51e3beef10253c40e1c45b7
--- /dev/null
+++ b/media/midi/midi_manager_usb_unittest.cc
@@ -0,0 +1,298 @@
+// Copyright 2014 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 "media/midi/midi_manager_usb.h"
+
+#include <string>
+
+#include "base/strings/stringprintf.h"
+#include "media/midi/usb_midi_device.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace media {
+
+namespace {
+
+template<typename T, size_t N>
+std::vector<T> ToVector(const T (&array)[N]) {
+ return std::vector<T>(array, array + N);
+}
+
+class Logger {
+ public:
+ void AddLog(const std::string& message) { log_ += message; }
+ std::string TakeLog() {
+ std::string result;
+ result.swap(log_);
+ return result;
+ }
+
+ private:
+ std::string log_;
+};
scherkus (not reviewing) 2014/01/27 19:23:49 DISALLOW etc...
yhirano 2014/01/28 04:31:05 Done.
+
+class FakeUsbMidiDevice : public UsbMidiDevice {
+ public:
+ explicit FakeUsbMidiDevice(Logger* logger) : logger_(logger) {}
+ virtual ~FakeUsbMidiDevice() {}
+
+ virtual std::vector<uint8> GetDescriptor() OVERRIDE {
+ logger_->AddLog("UsbMidiDevice::GetDescriptor\n");
+ return descriptor_;
+ }
+
+ virtual void Send(int endpoint_number,
+ const std::vector<uint8>& data) OVERRIDE {
+ logger_->AddLog("UsbMidiDevice::Send ");
+ logger_->AddLog(base::StringPrintf("endpoint = %d data =",
+ endpoint_number));
+ for (size_t i = 0; i < data.size(); ++i)
+ logger_->AddLog(base::StringPrintf(" 0x%02x", data[i]));
+ logger_->AddLog("\n");
+ }
+
+ void SetDescriptor(const std::vector<uint8> descriptor) {
+ descriptor_ = descriptor;
+ }
+
+ private:
+ std::vector<uint8> descriptor_;
+ Logger* logger_;
+};
scherkus (not reviewing) 2014/01/27 19:23:49 DISALLOW etc...
yhirano 2014/01/28 04:31:05 Done.
+
+class FakeMIDIManagerClient : public MIDIManagerClient {
+ public:
+ explicit FakeMIDIManagerClient(Logger* logger) : logger_(logger) {}
+ virtual ~FakeMIDIManagerClient() {}
+
+ virtual void ReceiveMIDIData(uint32 port_index,
+ const uint8* data,
+ size_t size,
+ double timestamp) OVERRIDE {
+ logger_->AddLog("MIDIManagerClient::ReceiveMIDIData ");
+ logger_->AddLog(base::StringPrintf("port_index = %d data =", port_index));
+ for (size_t i = 0; i < size; ++i)
+ logger_->AddLog(base::StringPrintf(" 0x%02x", data[i]));
+ logger_->AddLog("\n");
+ }
+
+ virtual void AccumulateMIDIBytesSent(size_t size) OVERRIDE {
+ logger_->AddLog("MIDIManagerClient::AccumulateMIDIBytesSent ");
+ logger_->AddLog(base::StringPrintf("size = %zu\n", size));
+ }
+
+ private:
+ Logger* logger_;
+};
scherkus (not reviewing) 2014/01/27 19:23:49 DISALLOW etc...
yhirano 2014/01/28 04:31:05 Done.
+
+class TestUsbMidiDeviceFactory : public UsbMidiDevice::Factory {
+ public:
+ TestUsbMidiDeviceFactory() {}
+ virtual ~TestUsbMidiDeviceFactory() {}
+ virtual void EnumerateDevices(UsbMidiDeviceDelegate* device,
+ Callback callback) OVERRIDE {
+ callback_ = callback;
+ }
+
+ Callback callback_;
+};
scherkus (not reviewing) 2014/01/27 19:23:49 DISALLOW etc...
yhirano 2014/01/28 04:31:05 Done.
+
+class MIDIManagerUsbTest : public ::testing::Test {
+ public:
+ MIDIManagerUsbTest() : is_initialized_(false), is_well_initialized_(false) {
+ scoped_ptr<TestUsbMidiDeviceFactory> factory(new TestUsbMidiDeviceFactory);
+ factory_ = factory.get();
+ manager_.reset(
+ new MIDIManagerUsb(factory.PassAs<UsbMidiDevice::Factory>()));
+ }
+ virtual ~MIDIManagerUsbTest() {
+ if (!logger_.TakeLog().empty()) {
+ ADD_FAILURE();
scherkus (not reviewing) 2014/01/27 19:23:49 I'd print out the contents of the log: ADD_FAILU
yhirano 2014/01/28 04:31:05 Done.
+ }
+ }
+
+ protected:
+ void Initialize() {
+ manager_->Initialize(base::Bind(&MIDIManagerUsbTest::OnInitializeDone,
+ base::Unretained(this)));
+ }
+
+ void OnInitializeDone(bool result) {
+ is_initialized_ = true;
scherkus (not reviewing) 2014/01/27 19:23:49 nit: I think a better name for these two would be
yhirano 2014/01/28 04:31:05 Done.
+ is_well_initialized_ = result;
+ }
+
+ bool is_initialized_;
+ bool is_well_initialized_;
+
+ scoped_ptr<MIDIManagerUsb> manager_;
+ // Owned by manager_.
+ TestUsbMidiDeviceFactory* factory_;
+ Logger logger_;
+};
scherkus (not reviewing) 2014/01/27 19:23:49 DISALLOW etc...
yhirano 2014/01/28 04:31:05 Done.
+
+
+TEST_F(MIDIManagerUsbTest, Initialize) {
+ scoped_ptr<FakeUsbMidiDevice> device(new FakeUsbMidiDevice(&logger_));
+ uint8 descriptor[] = {
+ 0x12, 0x01, 0x10, 0x01, 0x00, 0x00, 0x00, 0x08, 0x86, 0x1a,
+ 0x2d, 0x75, 0x54, 0x02, 0x00, 0x02, 0x00, 0x01, 0x09, 0x02,
+ 0x75, 0x00, 0x02, 0x01, 0x00, 0x80, 0x30, 0x09, 0x04, 0x00,
+ 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x09, 0x24, 0x01, 0x00,
+ 0x01, 0x09, 0x00, 0x01, 0x01, 0x09, 0x04, 0x01, 0x00, 0x02,
+ 0x01, 0x03, 0x00, 0x00, 0x07, 0x24, 0x01, 0x00, 0x01, 0x51,
+ 0x00, 0x06, 0x24, 0x02, 0x01, 0x02, 0x00, 0x06, 0x24, 0x02,
+ 0x01, 0x03, 0x00, 0x06, 0x24, 0x02, 0x02, 0x06, 0x00, 0x09,
+ 0x24, 0x03, 0x01, 0x07, 0x01, 0x06, 0x01, 0x00, 0x09, 0x24,
+ 0x03, 0x02, 0x04, 0x01, 0x02, 0x01, 0x00, 0x09, 0x24, 0x03,
+ 0x02, 0x05, 0x01, 0x03, 0x01, 0x00, 0x09, 0x05, 0x02, 0x02,
+ 0x20, 0x00, 0x00, 0x00, 0x00, 0x06, 0x25, 0x01, 0x02, 0x02,
+ 0x03, 0x09, 0x05, 0x82, 0x02, 0x20, 0x00, 0x00, 0x00, 0x00,
+ 0x05, 0x25, 0x01, 0x01, 0x07,
+ };
+ device->SetDescriptor(ToVector(descriptor));
+
+ Initialize();
+ ScopedVector<UsbMidiDevice> devices;
+ devices.push_back(device.release());
+ EXPECT_FALSE(is_initialized_);
+ factory_->callback_.Run(true, &devices);
+ EXPECT_TRUE(is_initialized_);
+ EXPECT_TRUE(is_well_initialized_);
+
+ ASSERT_EQ(1u, manager_->input_ports().size());
+ ASSERT_EQ(2u, manager_->output_ports().size());
+ ASSERT_TRUE(manager_->input_stream());
+ std::vector<UsbMidiInputStream::JackUniqueKey> keys =
+ manager_->input_stream()->RegisteredJackKeys();
+ ASSERT_EQ(2u, manager_->output_streams().size());
+ EXPECT_EQ(2u, manager_->output_streams()[0]->jack().jack_id);
+ EXPECT_EQ(3u, manager_->output_streams()[1]->jack().jack_id);
+ ASSERT_EQ(1u, keys.size());
+ EXPECT_EQ(2, keys[0].endpoint_number);
+
+ EXPECT_EQ("UsbMidiDevice::GetDescriptor\n", logger_.TakeLog());
+}
+
+TEST_F(MIDIManagerUsbTest, InitializeFail) {
+ Initialize();
+
+ EXPECT_FALSE(is_initialized_);
+ factory_->callback_.Run(false, NULL);
+ EXPECT_TRUE(is_initialized_);
+ EXPECT_FALSE(is_well_initialized_);
+}
+
+TEST_F(MIDIManagerUsbTest, InitializeFailBecauseOfInvalidDescriptor) {
+ scoped_ptr<FakeUsbMidiDevice> device(new FakeUsbMidiDevice(&logger_));
+ uint8 descriptor[] = {0x04};
+ device->SetDescriptor(ToVector(descriptor));
+
+ Initialize();
+ ScopedVector<UsbMidiDevice> devices;
+ devices.push_back(device.release());
+ EXPECT_FALSE(is_initialized_);
+ factory_->callback_.Run(true, &devices);
+ EXPECT_TRUE(is_initialized_);
+ EXPECT_FALSE(is_well_initialized_);
+ EXPECT_EQ("UsbMidiDevice::GetDescriptor\n", logger_.TakeLog());
+}
+
+TEST_F(MIDIManagerUsbTest, Send) {
+ scoped_ptr<FakeUsbMidiDevice> device(new FakeUsbMidiDevice(&logger_));
+ FakeMIDIManagerClient client(&logger_);
+ uint8 descriptor[] = {
+ 0x12, 0x01, 0x10, 0x01, 0x00, 0x00, 0x00, 0x08, 0x86, 0x1a,
+ 0x2d, 0x75, 0x54, 0x02, 0x00, 0x02, 0x00, 0x01, 0x09, 0x02,
+ 0x75, 0x00, 0x02, 0x01, 0x00, 0x80, 0x30, 0x09, 0x04, 0x00,
+ 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x09, 0x24, 0x01, 0x00,
+ 0x01, 0x09, 0x00, 0x01, 0x01, 0x09, 0x04, 0x01, 0x00, 0x02,
+ 0x01, 0x03, 0x00, 0x00, 0x07, 0x24, 0x01, 0x00, 0x01, 0x51,
+ 0x00, 0x06, 0x24, 0x02, 0x01, 0x02, 0x00, 0x06, 0x24, 0x02,
+ 0x01, 0x03, 0x00, 0x06, 0x24, 0x02, 0x02, 0x06, 0x00, 0x09,
+ 0x24, 0x03, 0x01, 0x07, 0x01, 0x06, 0x01, 0x00, 0x09, 0x24,
+ 0x03, 0x02, 0x04, 0x01, 0x02, 0x01, 0x00, 0x09, 0x24, 0x03,
+ 0x02, 0x05, 0x01, 0x03, 0x01, 0x00, 0x09, 0x05, 0x02, 0x02,
+ 0x20, 0x00, 0x00, 0x00, 0x00, 0x06, 0x25, 0x01, 0x02, 0x02,
+ 0x03, 0x09, 0x05, 0x82, 0x02, 0x20, 0x00, 0x00, 0x00, 0x00,
+ 0x05, 0x25, 0x01, 0x01, 0x07,
+ };
+
+ device->SetDescriptor(ToVector(descriptor));
+ uint8 data[] = {
+ 0x90, 0x45, 0x7f,
+ 0xf0, 0x00, 0x01, 0xf7,
+ };
+
+ Initialize();
+ ScopedVector<UsbMidiDevice> devices;
+ devices.push_back(device.release());
+ EXPECT_FALSE(is_initialized_);
+ factory_->callback_.Run(true, &devices);
+ ASSERT_TRUE(is_initialized_);
+ ASSERT_TRUE(is_well_initialized_);
+
+ manager_->DispatchSendMIDIData(&client, 1, ToVector(data), 0);
+ EXPECT_EQ("UsbMidiDevice::GetDescriptor\n"
+ "UsbMidiDevice::Send endpoint = 2 data = "
+ "0x19 0x90 0x45 0x7f "
+ "0x14 0xf0 0x00 0x01 "
+ "0x15 0xf7 0x00 0x00\n"
+ "MIDIManagerClient::AccumulateMIDIBytesSent size = 7\n",
+ logger_.TakeLog());
+}
+
+TEST_F(MIDIManagerUsbTest, Receive) {
+ scoped_ptr<FakeUsbMidiDevice> device(new FakeUsbMidiDevice(&logger_));
+ FakeMIDIManagerClient client(&logger_);
+ uint8 descriptor[] = {
+ 0x12, 0x01, 0x10, 0x01, 0x00, 0x00, 0x00, 0x08, 0x86, 0x1a,
+ 0x2d, 0x75, 0x54, 0x02, 0x00, 0x02, 0x00, 0x01, 0x09, 0x02,
+ 0x75, 0x00, 0x02, 0x01, 0x00, 0x80, 0x30, 0x09, 0x04, 0x00,
+ 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x09, 0x24, 0x01, 0x00,
+ 0x01, 0x09, 0x00, 0x01, 0x01, 0x09, 0x04, 0x01, 0x00, 0x02,
+ 0x01, 0x03, 0x00, 0x00, 0x07, 0x24, 0x01, 0x00, 0x01, 0x51,
+ 0x00, 0x06, 0x24, 0x02, 0x01, 0x02, 0x00, 0x06, 0x24, 0x02,
+ 0x01, 0x03, 0x00, 0x06, 0x24, 0x02, 0x02, 0x06, 0x00, 0x09,
+ 0x24, 0x03, 0x01, 0x07, 0x01, 0x06, 0x01, 0x00, 0x09, 0x24,
+ 0x03, 0x02, 0x04, 0x01, 0x02, 0x01, 0x00, 0x09, 0x24, 0x03,
+ 0x02, 0x05, 0x01, 0x03, 0x01, 0x00, 0x09, 0x05, 0x02, 0x02,
+ 0x20, 0x00, 0x00, 0x00, 0x00, 0x06, 0x25, 0x01, 0x02, 0x02,
+ 0x03, 0x09, 0x05, 0x82, 0x02, 0x20, 0x00, 0x00, 0x00, 0x00,
+ 0x05, 0x25, 0x01, 0x01, 0x07,
+ };
+
+ device->SetDescriptor(ToVector(descriptor));
+ uint8 data[] = {
+ 0x09, 0x90, 0x45, 0x7f,
+ 0x04, 0xf0, 0x00, 0x01,
+ 0x49, 0x90, 0x88, 0x99, // This data should be ignored (CN = 4).
+ 0x05, 0xf7, 0x00, 0x00,
+ };
+
+ Initialize();
+ ScopedVector<UsbMidiDevice> devices;
+ UsbMidiDevice* device_raw = device.get();
+ devices.push_back(device.release());
+ EXPECT_FALSE(is_initialized_);
+ factory_->callback_.Run(true, &devices);
+ ASSERT_TRUE(is_initialized_);
+ ASSERT_TRUE(is_well_initialized_);
+
+ manager_->StartSession(&client);
+ manager_->ReceiveUsbMidiData(device_raw, 2, data, arraysize(data), 0);
+ manager_->EndSession(&client);
+
+ EXPECT_EQ("UsbMidiDevice::GetDescriptor\n"
+ "MIDIManagerClient::ReceiveMIDIData port_index = 0 "
+ "data = 0x90 0x45 0x7f\n"
+ "MIDIManagerClient::ReceiveMIDIData port_index = 0 "
+ "data = 0xf0 0x00 0x01\n"
+ "MIDIManagerClient::ReceiveMIDIData port_index = 0 data = 0xf7\n",
+ logger_.TakeLog());
+}
+
+} // namespace
+
+} // namespace media

Powered by Google App Engine
This is Rietveld 408576698