diff --git a/oscar/SleepLib/deviceconnection.cpp b/oscar/SleepLib/deviceconnection.cpp index 3d4651de..212c6749 100644 --- a/oscar/SleepLib/deviceconnection.cpp +++ b/oscar/SleepLib/deviceconnection.cpp @@ -114,6 +114,11 @@ public: QByteArray getData() const { Q_ASSERT(usesData() == true); + if (m_data.isEmpty()) { + qWarning().noquote() << "replaying event with missing data" << *this; + QByteArray empty; + return empty; // toUtf8() below crashes with an empty string. + } return QByteArray::fromHex(m_data.toUtf8()); } inline bool ok() const { return m_values.contains("error") == false; } @@ -320,17 +325,6 @@ void XmlReplay::processPendingSignals(const QObject* target) // and cannot alter the underlying target until the const method holding // the lock releases it at function exit. pending->signal(const_cast(target)); - - /* - XmlReplayEvent* next = m_pendingSignal->m_next; - if (next && next->isSignal() == false) { - next = nullptr; - } - if (next) { - qDebug() << "UNTESTED: multiple signal events in a row:" << m_pendingSignal->tag() << next->tag(); - } - m_pendingSignal = next; - */ } } diff --git a/oscar/tests/deviceconnectiontests.cpp b/oscar/tests/deviceconnectiontests.cpp index 5ebe4962..fec07016 100644 --- a/oscar/tests/deviceconnectiontests.cpp +++ b/oscar/tests/deviceconnectiontests.cpp @@ -93,6 +93,36 @@ void DeviceConnectionTests::testSerialPortScanning() } +static void testDownload(const QString & loaderName) +{ + SerialOximeter * oxi = qobject_cast(lookupLoader(loaderName)); + Q_ASSERT(oxi); + + if (oxi->openDevice()) { + oxi->resetDevice(); + int session_count = oxi->getSessionCount(); + qDebug() << session_count << "sessions"; + for (int i = 0; i < session_count; i++) { + qDebug() << i+1 << oxi->getDateTime(i) << oxi->getDuration(i); + oxi->Open("import"); + if (oxi->commandDriven()) { + oxi->getSessionData(i); + while (!oxi->isImporting() && !oxi->isAborted()) { + //QThread::msleep(10); + QCoreApplication::processEvents(); + } + while (oxi->isImporting() && !oxi->isAborted()) { + //QThread::msleep(10); + QCoreApplication::processEvents(); + } + } + oxi->openDevice(); // annoyingly import currently closes the device, so reopen it + } + } + oxi->closeDevice(); + oxi->trashRecords(); +} + void DeviceConnectionTests::testOximeterConnection() { CMS50F37Loader::Register(); @@ -131,22 +161,13 @@ void DeviceConnectionTests::testOximeterConnection() qDebug().noquote() << string; */ - - SerialOximeter * oxi = qobject_cast(lookupLoader(cms50f37_class_name)); - Q_ASSERT(oxi); QFile file("cms50f37.xml"); if (!file.exists()) { qDebug() << "Recording oximeter connection"; Q_ASSERT(file.open(QFile::ReadWrite)); devices.record(&file); - if (oxi->openDevice()) { - oxi->resetDevice(); - int session_count = oxi->getSessionCount(); - qDebug() << session_count; - } - oxi->closeDevice(); - oxi->trashRecords(); + testDownload(cms50f37_class_name); devices.record(nullptr); file.close(); } @@ -154,13 +175,7 @@ void DeviceConnectionTests::testOximeterConnection() qDebug() << "Replaying oximeter connection"; Q_ASSERT(file.open(QFile::ReadOnly)); devices.replay(&file); - if (oxi->openDevice()) { - oxi->resetDevice(); - int session_count = oxi->getSessionCount(); - qDebug() << session_count; - } - oxi->closeDevice(); - oxi->trashRecords(); + testDownload(cms50f37_class_name); devices.replay(nullptr); file.close(); }