summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorleep-frog <66687468+leep-frog@users.noreply.github.com>2024-05-13 13:15:52 -0400
committerGitHub <noreply@github.com>2024-05-13 18:15:52 +0100
commit6d222b71c6de320097e3dd25ef3f2783da0d638f (patch)
treed09fbd59f5b515d6a61dab503b92625ac36318c2
parent8c05254a68f291a374eef3ac4174914a196c726a (diff)
Add housekeeping execution to unit tests (#22999)0.24.9
-rw-r--r--tests/housekeeping/config.h19
-rw-r--r--tests/housekeeping/test.mk18
-rw-r--r--tests/housekeeping/test_housekeeping.cpp68
-rw-r--r--tests/test_common/test_fixture.cpp4
4 files changed, 108 insertions, 1 deletions
diff --git a/tests/housekeeping/config.h b/tests/housekeeping/config.h
new file mode 100644
index 0000000000..bf1f8cd27f
--- /dev/null
+++ b/tests/housekeeping/config.h
@@ -0,0 +1,19 @@
+/* Copyright 2024 leep-frog
+ *
+ * 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, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
+#pragma once
+
+#include "test_common.h"
diff --git a/tests/housekeeping/test.mk b/tests/housekeeping/test.mk
new file mode 100644
index 0000000000..bf46b735ce
--- /dev/null
+++ b/tests/housekeeping/test.mk
@@ -0,0 +1,18 @@
+# Copyright 2024 leep-frog
+#
+# 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, either version 2 of the License, or
+# (at your option) any later version.
+#
+# 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 <http://www.gnu.org/licenses/>.
+
+# --------------------------------------------------------------------------------
+# Keep this file, even if it is empty, as a marker that this folder contains tests
+# --------------------------------------------------------------------------------
diff --git a/tests/housekeeping/test_housekeeping.cpp b/tests/housekeeping/test_housekeeping.cpp
new file mode 100644
index 0000000000..6f1e6a6284
--- /dev/null
+++ b/tests/housekeeping/test_housekeeping.cpp
@@ -0,0 +1,68 @@
+/* Copyright 2024 leep-frog
+ *
+ * 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, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
+#include "keyboard_report_util.hpp"
+#include "keycode.h"
+#include "test_common.hpp"
+#include "action_tapping.h"
+#include "test_keymap_key.hpp"
+
+using testing::_;
+
+class HousekeepingMock {
+ public:
+ virtual ~HousekeepingMock() {}
+
+ // mock methods
+ MOCK_METHOD0(housekeeping_task_kb, void(void));
+ MOCK_METHOD0(housekeeping_task_user, void(void));
+};
+
+class Housekeeping : public TestFixture {
+ public:
+ Housekeeping() {
+ _housekeepingMock.reset(new ::testing::NiceMock<HousekeepingMock>());
+ }
+ virtual ~Housekeeping() {
+ _housekeepingMock.reset();
+ }
+
+ static std::unique_ptr<HousekeepingMock> _housekeepingMock;
+};
+
+std::unique_ptr<HousekeepingMock> Housekeeping::_housekeepingMock;
+
+extern "C" {
+void housekeeping_task_kb(void) {
+ if (Housekeeping::_housekeepingMock) {
+ Housekeeping::_housekeepingMock->housekeeping_task_kb();
+ }
+}
+
+void housekeeping_task_user(void) {
+ if (Housekeeping::_housekeepingMock) {
+ Housekeeping::_housekeepingMock->housekeeping_task_user();
+ }
+}
+}
+
+TEST_F(Housekeeping, Works) {
+ TestDriver driver;
+
+ EXPECT_CALL(*_housekeepingMock, housekeeping_task_kb()).Times(1);
+ EXPECT_CALL(*_housekeepingMock, housekeeping_task_user()).Times(1);
+ run_one_scan_loop();
+}
diff --git a/tests/test_common/test_fixture.cpp b/tests/test_common/test_fixture.cpp
index 72763d0bc0..3cfb2cb4c2 100644
--- a/tests/test_common/test_fixture.cpp
+++ b/tests/test_common/test_fixture.cpp
@@ -58,7 +58,8 @@ void TestFixture::TearDownTestCase() {}
TestFixture::TestFixture() {
m_this = this;
timer_clear();
- test_logger.info() << "tapping term is " << +GET_TAPPING_TERM(KC_TRANSPARENT, &(keyrecord_t){}) << "ms" << std::endl;
+ keyrecord_t empty_keyrecord = {0};
+ test_logger.info() << "tapping term is " << +GET_TAPPING_TERM(KC_TRANSPARENT, &empty_keyrecord) << "ms" << std::endl;
}
TestFixture::~TestFixture() {
@@ -175,6 +176,7 @@ void TestFixture::idle_for(unsigned time) {
test_logger.trace() << +time << " keyboard task " << (time > 1 ? "loops" : "loop") << std::endl;
for (unsigned i = 0; i < time; i++) {
keyboard_task();
+ housekeeping_task();
advance_time(1);
}
}