mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
91 lines
3.7 KiB
C++
91 lines
3.7 KiB
C++
/* Device Connection Unit Tests
|
|
*
|
|
* Copyright (c) 2020 The OSCAR Team
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file COPYING in the main directory of the source code
|
|
* for more details. */
|
|
|
|
#include "deviceconnectiontests.h"
|
|
#include "SleepLib/deviceconnection.h"
|
|
|
|
#include <QTemporaryFile>
|
|
|
|
void DeviceConnectionTests::testSerialPortInfoSerialization()
|
|
{
|
|
QString serialized;
|
|
|
|
// With VID and PID
|
|
const QString tag = R"(<serial portName="cu.SLAB_USBtoUART" systemLocation="/dev/cu.SLAB_USBtoUART" description="CP210x USB to UART Bridge Controller" manufacturer="Silicon Labs" serialNumber="0001" vendorIdentifier="0x10C4" productIdentifier="0xEA60"/>)";
|
|
SerialPortInfo info = SerialPortInfo(tag);
|
|
Q_ASSERT(info.isNull() == false);
|
|
Q_ASSERT(info.portName() == "cu.SLAB_USBtoUART");
|
|
Q_ASSERT(info.systemLocation() == "/dev/cu.SLAB_USBtoUART");
|
|
Q_ASSERT(info.description() == "CP210x USB to UART Bridge Controller");
|
|
Q_ASSERT(info.manufacturer() == "Silicon Labs");
|
|
Q_ASSERT(info.serialNumber() == "0001");
|
|
Q_ASSERT(info.hasVendorIdentifier());
|
|
Q_ASSERT(info.hasProductIdentifier());
|
|
Q_ASSERT(info.vendorIdentifier() == 0x10C4);
|
|
Q_ASSERT(info.productIdentifier() == 0xEA60);
|
|
serialized = info;
|
|
Q_ASSERT(serialized == tag);
|
|
|
|
// Without VID or PID
|
|
const QString tag2 = R"(<serial portName="cu.Bluetooth-Incoming-Port" systemLocation="/dev/cu.Bluetooth-Incoming-Port" description="incoming port - Bluetooth-Incoming-Port" manufacturer="" serialNumber=""/>)";
|
|
SerialPortInfo info2 = SerialPortInfo(tag2);
|
|
Q_ASSERT(info2.isNull() == false);
|
|
Q_ASSERT(info2.portName() == "cu.Bluetooth-Incoming-Port");
|
|
Q_ASSERT(info2.systemLocation() == "/dev/cu.Bluetooth-Incoming-Port");
|
|
Q_ASSERT(info2.description() == "incoming port - Bluetooth-Incoming-Port");
|
|
Q_ASSERT(info2.manufacturer() == "");
|
|
Q_ASSERT(info2.serialNumber() == "");
|
|
Q_ASSERT(info2.hasVendorIdentifier() == false);
|
|
Q_ASSERT(info2.hasProductIdentifier() == false);
|
|
serialized = info2;
|
|
Q_ASSERT(serialized == tag2);
|
|
|
|
// Empty
|
|
const QString tag3 = R"(<serial/>)";
|
|
SerialPortInfo info3 = SerialPortInfo(tag3);
|
|
Q_ASSERT(info3.isNull() == true);
|
|
serialized = info3;
|
|
Q_ASSERT(serialized == tag3);
|
|
}
|
|
|
|
void DeviceConnectionTests::testSerialPortScanning()
|
|
{
|
|
QString string;
|
|
|
|
DeviceConnectionManager & devices = DeviceConnectionManager::getInstance();
|
|
devices.record(string);
|
|
auto list1 = SerialPortInfo::availablePorts();
|
|
auto list2 = SerialPortInfo::availablePorts();
|
|
devices.record(nullptr);
|
|
// string now contains the recorded XML.
|
|
qDebug().noquote() << string;
|
|
|
|
devices.replay(string);
|
|
Q_ASSERT(list1 == SerialPortInfo::availablePorts());
|
|
Q_ASSERT(list2 == SerialPortInfo::availablePorts());
|
|
Q_ASSERT(list2 == SerialPortInfo::availablePorts()); // replaying past the recording should return the final state
|
|
devices.replay(nullptr); // turn off replay
|
|
auto list3 = SerialPortInfo::availablePorts();
|
|
|
|
// Test file-based recording/playback
|
|
QTemporaryFile recording;
|
|
Q_ASSERT(recording.open());
|
|
devices.record(&recording);
|
|
list1 = SerialPortInfo::availablePorts();
|
|
list2 = SerialPortInfo::availablePorts();
|
|
devices.record(nullptr);
|
|
|
|
recording.seek(0);
|
|
devices.replay(&recording);
|
|
Q_ASSERT(list1 == SerialPortInfo::availablePorts());
|
|
Q_ASSERT(list2 == SerialPortInfo::availablePorts());
|
|
Q_ASSERT(list2 == SerialPortInfo::availablePorts()); // replaying past the recording should return the final state
|
|
devices.replay(nullptr); // turn off replay
|
|
list3 = SerialPortInfo::availablePorts();
|
|
}
|