From 97c7a4f557324f8be28fb0d5c572414e08110078 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Sun, 5 Jan 2020 16:02:04 -0500 Subject: [PATCH] Update PRS1 test YAML to emit first and last N/2 samples instead of first N, allowing for regression testing of end-of-session edge cases. --- oscar/tests/prs1tests.cpp | 7 ++++++- oscar/tests/sessiontests.cpp | 14 ++++++++++++-- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/oscar/tests/prs1tests.cpp b/oscar/tests/prs1tests.cpp index 95f7e7e4..59924488 100644 --- a/oscar/tests/prs1tests.cpp +++ b/oscar/tests/prs1tests.cpp @@ -143,11 +143,16 @@ static QString byteList(QByteArray data, int limit=-1) { int count = data.size(); if (limit == -1 || limit > count) limit = count; + int first = limit / 2; + int last = limit - first; QStringList l; - for (int i = 0; i < limit; i++) { + for (int i = 0; i < first; i++) { l.push_back(QString( "%1" ).arg((int) data[i] & 0xFF, 2, 16, QChar('0') ).toUpper()); } if (limit < count) l.push_back("..."); + for (int i = count - last; i < count; i++) { + l.push_back(QString( "%1" ).arg((int) data[i] & 0xFF, 2, 16, QChar('0') ).toUpper()); + } QString s = l.join(" "); return s; } diff --git a/oscar/tests/sessiontests.cpp b/oscar/tests/sessiontests.cpp index 303984e9..9af3f697 100644 --- a/oscar/tests/sessiontests.cpp +++ b/oscar/tests/sessiontests.cpp @@ -144,11 +144,16 @@ static QString eventChannel(ChannelID i) static QString intList(EventStoreType* data, int count, int limit=-1) { if (limit == -1 || limit > count) limit = count; + int first = limit / 2; + int last = limit - first; QStringList l; - for (int i = 0; i < limit; i++) { + for (int i = 0; i < first; i++) { l.push_back(QString::number(data[i])); } if (limit < count) l.push_back("..."); + for (int i = count - last; i < count; i++) { + l.push_back(QString::number(data[i])); + } QString s = "[ " + l.join(",") + " ]"; return s; } @@ -156,11 +161,16 @@ static QString intList(EventStoreType* data, int count, int limit=-1) static QString intList(quint32* data, int count, int limit=-1) { if (limit == -1 || limit > count) limit = count; + int first = limit / 2; + int last = limit - first; QStringList l; - for (int i = 0; i < limit; i++) { + for (int i = 0; i < first; i++) { l.push_back(QString::number(data[i] / 1000)); } if (limit < count) l.push_back("..."); + for (int i = count - last; i < count; i++) { + l.push_back(QString::number(data[i] / 1000)); + } QString s = "[ " + l.join(",") + " ]"; return s; }