/* -*- mode: c++ -*- * Copyright (C) 2020 Eric Paniagua (epaniagua@google.com) * * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation, version 3. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with * this program. If not, see . */ #include "testing/VirtualDeviceTest.h" #include "HIDReportObserver.h" #include "testing/HIDState.h" namespace kaleidoscope { namespace testing { void VirtualDeviceTest::SetUp() { HIDReportObserver::resetHook(&internal::HIDStateBuilder::ProcessHidReport); } std::unique_ptr VirtualDeviceTest::RunCycle() { sim_.RunCycle(); return State::Snapshot(); } // ============================================================================= void VirtualDeviceTest::LoadState() { output_state_ = State::Snapshot(); } void VirtualDeviceTest::ClearState() { output_state_ = nullptr; input_timestamps_.clear(); expected_reports_.clear(); } const HIDState* VirtualDeviceTest::HIDReports() const { if (output_state_ == nullptr) return nullptr; return output_state_->HIDReports(); } uint32_t VirtualDeviceTest::ReportTimestamp(size_t index) const { uint32_t t = output_state_->HIDReports()->Keyboard(index).Timestamp(); return t; } // ----------------------------------------------------------------------------- uint32_t VirtualDeviceTest::EventTimestamp(size_t index) const { return input_timestamps_[index]; } // ============================================================================= void VirtualDeviceTest::PressKey(KeyAddr addr) { sim_.Press(addr); input_timestamps_.push_back(Runtime.millisAtCycleStart()); } void VirtualDeviceTest::ReleaseKey(KeyAddr addr) { sim_.Release(addr); input_timestamps_.push_back(Runtime.millisAtCycleStart()); } // ============================================================================= void VirtualDeviceTest::ExpectReport(Keycodes keys, std::string description) { size_t report_timestamp{Runtime.millisAtCycleStart()}; ClearReport(); for (Key key : keys) { AddToReport(key); } ExpectedKeyboardReport new_report(report_timestamp, current_keyboard_keycodes_, description); expected_reports_.push_back(new_report); } // ============================================================================= void VirtualDeviceTest::ExpectReport(AddKeycodes added_keys, RemoveKeycodes removed_keys, std::string description) { uint32_t report_timestamp = Runtime.millisAtCycleStart(); for (Key key : added_keys) { AddToReport(key); } for (Key key : removed_keys) { RemoveFromReport(key); } ExpectedKeyboardReport new_report(report_timestamp, current_keyboard_keycodes_, description); expected_reports_.push_back(new_report); } // ----------------------------------------------------------------------------- void VirtualDeviceTest::ExpectReport(AddKeycodes added_keys, std::string description) { ExpectReport(added_keys, RemoveKeycodes{}, description); } void VirtualDeviceTest::ExpectReport(RemoveKeycodes removed_keys, std::string description) { ExpectReport(AddKeycodes{}, removed_keys, description); } // ============================================================================= void VirtualDeviceTest::ClearReport() { current_keyboard_keycodes_.clear(); } void VirtualDeviceTest::AddToReport(Key key) { current_keyboard_keycodes_.insert(key.getKeyCode()); } void VirtualDeviceTest::RemoveFromReport(Key key) { current_keyboard_keycodes_.erase(key.getKeyCode()); } // ============================================================================= void VirtualDeviceTest::CheckReports() const { int observed_report_count = HIDReports()->Keyboard().size(); int expected_report_count = expected_reports_.size(); EXPECT_EQ(observed_report_count, expected_report_count); int max_count = std::max(observed_report_count, expected_report_count); for (int i = 0; i < observed_report_count; ++i) { auto observed_report = HIDReports()->Keyboard(i); auto observed_keycodes = observed_report.ActiveKeycodes(); if (i < expected_report_count) { auto expected_report = expected_reports_[i]; auto expected_keycodes = expected_report.Keycodes(); EXPECT_THAT(observed_keycodes, ::testing::ElementsAreArray(expected_keycodes)) << expected_reports_[i].Message() << " (i=" << i << ")"; EXPECT_EQ(observed_report.Timestamp(), expected_report.Timestamp()) << "Report timestamps don't match (i=" << i << ")"; } else { std::cerr << "Unexpected keyboard report at " << observed_report.Timestamp() << "ms: { " << std::hex; for (uint8_t keycode : observed_keycodes) { std::cerr << int(keycode) << " "; } std::cerr << "}" << std::dec << std::endl; } } } } // namespace testing } // namespace kaleidoscope