summaryrefslogtreecommitdiff
path: root/tests/test_common/keyboard_report_util.cpp
diff options
context:
space:
mode:
authorStefan Kerkmann <karlk90@pm.me>2021-11-22 22:15:04 +0100
committerGitHub <noreply@github.com>2021-11-23 08:15:04 +1100
commitb6054c0206609f3755f71d819643644d250288b0 (patch)
tree4f6f33040bb5184d47144090058eb089d2782b6c /tests/test_common/keyboard_report_util.cpp
parentf4966a19d69a7f3bbefeea0537071d7d7c2abbdd (diff)
[Tests] Increase QMK test coverage (#13789)
* Add per-test keymaps * Add better trace and info logs for failed unit-tests * Add layer state assertion with tracing message * Use individual test binaries configuration options * Add basic qmk functionality tests * Add tap hold configurations tests * Add auto shift tests * `qmk format-c * Fix tests Co-authored-by: Nick Brassel <nick@tzarc.org>
Diffstat (limited to 'tests/test_common/keyboard_report_util.cpp')
-rw-r--r--tests/test_common/keyboard_report_util.cpp21
1 files changed, 13 insertions, 8 deletions
diff --git a/tests/test_common/keyboard_report_util.cpp b/tests/test_common/keyboard_report_util.cpp
index f73cf239e0..e148c76beb 100644
--- a/tests/test_common/keyboard_report_util.cpp
+++ b/tests/test_common/keyboard_report_util.cpp
@@ -44,16 +44,21 @@ bool operator==(const report_keyboard_t& lhs, const report_keyboard_t& rhs) {
44 return lhs.mods == rhs.mods && lhskeys == rhskeys; 44 return lhs.mods == rhs.mods && lhskeys == rhskeys;
45} 45}
46 46
47std::ostream& operator<<(std::ostream& stream, const report_keyboard_t& value) { 47std::ostream& operator<<(std::ostream& stream, const report_keyboard_t& report) {
48 stream << "Keyboard report:" << std::endl; 48 auto keys = get_keys(report);
49 stream << "Mods: " << (uint32_t)value.mods << std::endl; 49
50 stream << "Keys: ";
51 // TODO: This should probably print friendly names for the keys 50 // TODO: This should probably print friendly names for the keys
52 for (uint32_t k : get_keys(value)) { 51 stream << "Keyboard Report: Mods (" << (uint32_t)report.mods << ") Keys (";
53 stream << k << " "; 52
53 for (auto key = keys.cbegin(); key != keys.cend();) {
54 stream << +(*key);
55 key++;
56 if (key != keys.cend()) {
57 stream << ",";
58 }
54 } 59 }
55 stream << std::endl; 60
56 return stream; 61 return stream << ")" << std::endl;
57} 62}
58 63
59KeyboardReportMatcher::KeyboardReportMatcher(const std::vector<uint8_t>& keys) { 64KeyboardReportMatcher::KeyboardReportMatcher(const std::vector<uint8_t>& keys) {