refactor(unity): made unity runner compatible with Linux target

pull/6808/head
Jakob Hasse 2022-11-14 14:55:22 +01:00
rodzic 4ded1ea4cf
commit 1e7daf316a
5 zmienionych plików z 51 dodań i 20 usunięć

Wyświetl plik

@ -382,7 +382,7 @@ test_esp_system:
script:
- cd ${IDF_PATH}/components/esp_system/host_test/test_esp_system/
- idf.py build
- timeout 5 build/test_esp_system.elf | tee log.txt || true
- echo "*" | timeout 5 build/test_esp_system.elf | tee log.txt || true
- grep "6 Tests 0 Failures 0 Ignored" log.txt
test_esp_timer_cxx:

Wyświetl plik

@ -7,6 +7,7 @@
#include <stdlib.h>
#include <setjmp.h>
#include "unity.h"
#include "unity_test_runner.h"
#include "esp_system.h"
@ -40,12 +41,12 @@ static void cleanup(void)
esp_unregister_shutdown_handler(action);
}
void test_reset_reason(void)
TEST_CASE("reset_reason", "[esp_system]")
{
TEST_ASSERT_EQUAL(ESP_RST_POWERON, esp_reset_reason());
}
void test_unregister_handler_works(void)
TEST_CASE("unregister_handler_works", "[esp_system]")
{
token = 0;
// for some reason, the handlers are executed in reverse order of adding handlers, so we always
@ -64,7 +65,7 @@ void test_unregister_handler_works(void)
TEST_ASSERT_EQUAL(0, token);
}
void test_register_shutdown_handler_twice_fails(void)
TEST_CASE("register_shutdown_handler_twice_fails", "[esp_system]")
{
TEST_ASSERT_EQUAL(ESP_OK, esp_register_shutdown_handler(jump_back_shutdown_handler));
TEST_ASSERT_EQUAL(ESP_ERR_INVALID_STATE, esp_register_shutdown_handler(jump_back_shutdown_handler));
@ -72,7 +73,7 @@ void test_register_shutdown_handler_twice_fails(void)
cleanup();
}
void test_register_shutdown_handler_works(void)
TEST_CASE("register_shutdown_handler_works", "[esp_system]")
{
token = 0;
TEST_ASSERT_EQUAL(esp_register_shutdown_handler(jump_back_shutdown_handler), ESP_OK);
@ -87,7 +88,7 @@ void test_register_shutdown_handler_works(void)
TEST_ASSERT_EQUAL(1, token);
}
void test_register_too_many_shutdown_handler_fails(void)
TEST_CASE("register_too_many_shutdown_handler_fails", "[esp_system]")
{
TEST_ASSERT_EQUAL(ESP_OK, esp_register_shutdown_handler(dummy_shutdown_handler_0));
TEST_ASSERT_EQUAL(ESP_OK, esp_register_shutdown_handler(dummy_shutdown_handler_1));
@ -100,7 +101,7 @@ void test_register_too_many_shutdown_handler_fails(void)
cleanup();
}
void test_heap_size_stubs(void)
TEST_CASE("heap_size_stubs", "[esp_system]")
{
TEST_ASSERT_EQUAL(47000, esp_get_free_heap_size());
TEST_ASSERT_EQUAL(47000, esp_get_free_internal_heap_size());
@ -109,12 +110,6 @@ void test_heap_size_stubs(void)
void app_main(void)
{
UNITY_BEGIN();
RUN_TEST(test_reset_reason);
RUN_TEST(test_unregister_handler_works);
RUN_TEST(test_register_shutdown_handler_twice_fails);
RUN_TEST(test_register_shutdown_handler_works);
RUN_TEST(test_register_too_many_shutdown_handler_fails);
RUN_TEST(test_heap_size_stubs);
UNITY_END();
printf("Running esp_system host test app");
unity_run_menu();
}

Wyświetl plik

@ -1,2 +1 @@
CONFIG_IDF_TARGET="linux"
CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER=n

Wyświetl plik

@ -15,9 +15,9 @@ endif()
if(CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER)
list(APPEND srcs "unity_runner.c")
# Note the following files are not compatible with the Linux target.
# On Linux, these are masked because we also don't use the IDF test runner there
list(APPEND srcs "unity_utils_freertos.c" "unity_utils_cache.c")
if(NOT "${target}" STREQUAL "linux")
list(APPEND srcs "unity_utils_freertos.c" "unity_utils_cache.c")
endif()
list(APPEND requires "freertos")
endif()

Wyświetl plik

@ -7,11 +7,11 @@
#include <stdbool.h>
#include <unistd.h>
#include <stdio.h>
#include <ctype.h>
#include <sys/time.h>
#include "unity.h"
#include "sdkconfig.h"
static struct timeval s_test_start, s_test_stop;
void unity_putc(int c)
@ -25,6 +25,43 @@ void unity_flush(void)
fsync(fileno(stdout));
}
static void esp_unity_readline(char* dst, size_t len)
{
/* Read line from console with support for echoing and backspaces */
size_t write_index = 0;
for (;;) {
char c = 0;
int result = fgetc(stdin);
if (result == EOF) {
continue;
}
c = (char) result;
if (c == '\r' || c == '\n') {
/* Add null terminator and return on newline */
unity_putc('\n');
dst[write_index] = '\0';
return;
} else if (c == '\b') {
if (write_index > 0) {
/* Delete previously entered character */
write_index--;
unity_putc('\b');
unity_putc(' ');
unity_putc('\b');
}
} else if (len > 0 && write_index < len - 1 && !iscntrl(c)) {
/* Write a max of len - 1 characters to allow for null terminator */
unity_putc(c);
dst[write_index++] = c;
}
}
}
void unity_gets(char *dst, size_t len)
{
esp_unity_readline(dst, len);
}
void unity_exec_time_start(void)
{
gettimeofday(&s_test_start, NULL);