2019-07-27 16:31:19 +02:00
|
|
|
#include "test/framework/catch.hpp"
|
|
|
|
#include "src/shellmatta_utils.c"
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
static uint32_t write_callCnt = 0u;
|
|
|
|
static char write_data[10];
|
|
|
|
static uint32_t write_length;
|
|
|
|
|
|
|
|
static shellmatta_retCode_t writeFct(const char* data, uint32_t length)
|
|
|
|
{
|
|
|
|
write_callCnt ++;
|
2020-03-01 17:53:27 +01:00
|
|
|
memcpy(write_data, data, length);
|
2019-07-27 16:31:19 +02:00
|
|
|
write_length = length;
|
|
|
|
return SHELLMATTA_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_CASE( "shellmatta_utils_restoreCursorPos" ) {
|
|
|
|
|
|
|
|
shellmatta_instance_t inst;
|
|
|
|
char buffer[20];
|
|
|
|
|
|
|
|
inst.buffer = buffer;
|
|
|
|
inst.bufferSize = 20;
|
|
|
|
inst.cursor = 10;
|
|
|
|
inst.inputCount = 10;
|
|
|
|
inst.echoEnabled = true;
|
|
|
|
|
|
|
|
inst.write = writeFct;
|
|
|
|
|
|
|
|
write_callCnt = 0u;
|
|
|
|
memset(write_data, 0, sizeof(write_data));
|
|
|
|
write_length = 0u;
|
|
|
|
|
|
|
|
utils_restoreCursorPos(&inst);
|
|
|
|
|
|
|
|
CHECK( write_callCnt == 1u);
|
|
|
|
CHECK( write_length == 3u);
|
2020-02-03 20:45:19 +01:00
|
|
|
REQUIRE( strncmp("\x1b[u", write_data, 3u) == 0);
|
2019-07-27 16:31:19 +02:00
|
|
|
}
|