From 6d222b71c6de320097e3dd25ef3f2783da0d638f Mon Sep 17 00:00:00 2001
From: leep-frog
Date: Mon, 13 May 2024 13:15:52 -0400
Subject: Add housekeeping execution to unit tests (#22999)
---
tests/housekeeping/test_housekeeping.cpp | 68 ++++++++++++++++++++++++++++++++
1 file changed, 68 insertions(+)
create mode 100644 tests/housekeeping/test_housekeeping.cpp
(limited to 'tests/housekeeping/test_housekeeping.cpp')
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 .
+ */
+
+#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());
+ }
+ virtual ~Housekeeping() {
+ _housekeepingMock.reset();
+ }
+
+ static std::unique_ptr _housekeepingMock;
+};
+
+std::unique_ptr 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();
+}
--
cgit v1.2.3