mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-12-12 01:04:25 -05:00
af424aa5f8
* First WIP symfield * Cleanup widget code * Rebase and format * Fix 'to_integer' bug, fix siggen UI. * to_string_hex fix, unit tests for string code * Pass instance in callback * Fix on_change callbacks * Fix keyfob (not active) * to_byte_array, coaster tx cleanup * Add to_byte_array tests * Changes in ui_numbers * Fix ui_encoders * Format * Fix modemsetup view's symfields * Remove header * Format
145 lines
6.0 KiB
C++
145 lines
6.0 KiB
C++
/*
|
|
* Copyright (C) 2023 Kyle Reed
|
|
*
|
|
* This file is part of PortaPack.
|
|
*
|
|
* 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, 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; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "doctest.h"
|
|
#include "string_format.hpp"
|
|
|
|
/* TODO: Tests for all string_format functions. */
|
|
|
|
TEST_CASE("to_string_dec_int returns correct value.") {
|
|
CHECK_EQ(to_string_dec_int(0), "0");
|
|
CHECK_EQ(to_string_dec_int(1), "1");
|
|
CHECK_EQ(to_string_dec_int(-1), "-1");
|
|
CHECK_EQ(to_string_dec_int(1'000'000), "1000000");
|
|
CHECK_EQ(to_string_dec_int(-1'000'000), "-1000000");
|
|
CHECK_EQ(to_string_dec_int(1'234'567'890), "1234567890");
|
|
CHECK_EQ(to_string_dec_int(-1'234'567'890), "-1234567890");
|
|
CHECK_EQ(to_string_dec_int(1'234'567'891), "1234567891");
|
|
CHECK_EQ(to_string_dec_int(-1'234'567'891), "-1234567891");
|
|
CHECK_EQ(to_string_dec_int(9'876'543'210), "9876543210");
|
|
CHECK_EQ(to_string_dec_int(-9'876'543'210), "-9876543210");
|
|
}
|
|
|
|
TEST_CASE("to_string_dec_uint returns correct value.") {
|
|
CHECK_EQ(to_string_dec_uint(0), "0");
|
|
CHECK_EQ(to_string_dec_uint(1), "1");
|
|
CHECK_EQ(to_string_dec_uint(1'000'000), "1000000");
|
|
CHECK_EQ(to_string_dec_uint(1'234'567'890), "1234567890");
|
|
CHECK_EQ(to_string_dec_uint(1'234'567'891), "1234567891");
|
|
CHECK_EQ(to_string_dec_uint(9'876'543'210), "9876543210");
|
|
}
|
|
|
|
TEST_CASE("to_string_freq returns correct value.") {
|
|
CHECK_EQ(to_string_freq(0), " 0");
|
|
CHECK_EQ(to_string_freq(1), " 1");
|
|
CHECK_EQ(to_string_freq(1'000'000), " 1000000");
|
|
CHECK_EQ(to_string_freq(1'234'567'890), "1234567890");
|
|
CHECK_EQ(to_string_freq(1'234'567'891), "1234567891");
|
|
}
|
|
|
|
TEST_CASE("to_string_short_freq returns correct value.") {
|
|
CHECK_EQ(to_string_short_freq(0), " 0.0000");
|
|
CHECK_EQ(to_string_short_freq(49), " 0.0000");
|
|
CHECK_EQ(to_string_short_freq(50), " 0.0001");
|
|
CHECK_EQ(to_string_short_freq(1'000'049), " 1.0000");
|
|
CHECK_EQ(to_string_short_freq(1'000'050), " 1.0001");
|
|
CHECK_EQ(to_string_short_freq(1'234'567'850), "1234.5679");
|
|
CHECK_EQ(to_string_short_freq(1'234'567'849), "1234.5678");
|
|
}
|
|
|
|
TEST_CASE("to_string_rounded_freq returns correct value.") {
|
|
CHECK_EQ(to_string_rounded_freq(0, 0), "0");
|
|
CHECK_EQ(to_string_rounded_freq(0, 2), "0.00");
|
|
CHECK_EQ(to_string_rounded_freq(49, 4), "0.0000");
|
|
CHECK_EQ(to_string_rounded_freq(50, 4), "0.0001");
|
|
CHECK_EQ(to_string_rounded_freq(23'456, 4), "0.0235");
|
|
CHECK_EQ(to_string_rounded_freq(1'000'000, 4), "1.0000");
|
|
CHECK_EQ(to_string_rounded_freq(1'000'567'849, 4), "1000.5678");
|
|
CHECK_EQ(to_string_rounded_freq(1'234'567'891, 0), "1234");
|
|
CHECK_EQ(to_string_rounded_freq(1'234'567'891, 1), "1234.6");
|
|
CHECK_EQ(to_string_rounded_freq(1'234'567'891, 2), "1234.57");
|
|
CHECK_EQ(to_string_rounded_freq(1'234'567'891, 3), "1234.568");
|
|
CHECK_EQ(to_string_rounded_freq(1'234'567'891, 4), "1234.5679");
|
|
CHECK_EQ(to_string_rounded_freq(1'234'567'891, 5), "1234.56789");
|
|
CHECK_EQ(to_string_rounded_freq(1'234'567'891, 6), "1234.567891");
|
|
CHECK_EQ(to_string_rounded_freq(1'234'567'891, 9), "1234.567891");
|
|
}
|
|
|
|
TEST_CASE("to_string_hex returns correct value.") {
|
|
CHECK_EQ(to_string_hex(0x0, 1), "0");
|
|
CHECK_EQ(to_string_hex(0x0, 4), "0000");
|
|
CHECK_EQ(to_string_hex(0x1, 1), "1");
|
|
CHECK_EQ(to_string_hex(0xA, 1), "A");
|
|
CHECK_EQ(to_string_hex(0xA0, 2), "A0");
|
|
CHECK_EQ(to_string_hex(0xA1, 2), "A1");
|
|
CHECK_EQ(to_string_hex(0xA1FE, 2), "FE"); // NB: Truncates front.
|
|
CHECK_EQ(to_string_hex(0x12345678, 8), "12345678");
|
|
CHECK_EQ(to_string_hex(0x9ABCDEF0, 8), "9ABCDEF0");
|
|
}
|
|
|
|
TEST_CASE("to_string_hex returns correct value based on type.") {
|
|
CHECK_EQ(to_string_hex<uint8_t>(0xA), "0A");
|
|
CHECK_EQ(to_string_hex<uint8_t>(0xFE), "FE");
|
|
CHECK_EQ(to_string_hex<uint16_t>(0x00FE), "00FE");
|
|
CHECK_EQ(to_string_hex<uint16_t>(0xCAFE), "CAFE");
|
|
CHECK_EQ(to_string_hex<uint32_t>(0xCAFE), "0000CAFE");
|
|
CHECK_EQ(to_string_hex<uint32_t>(0xCAFEBEEF), "CAFEBEEF");
|
|
CHECK_EQ(to_string_hex<uint64_t>(0xCAFEBEEF), "00000000CAFEBEEF");
|
|
CHECK_EQ(to_string_hex<uint64_t>(0xC0FFEE00CAFEBABE), "C0FFEE00CAFEBABE");
|
|
}
|
|
|
|
TEST_CASE("char_to_uint returns correct value.") {
|
|
CHECK_EQ(char_to_uint('0', 10), 0);
|
|
CHECK_EQ(char_to_uint('5', 10), 5);
|
|
CHECK_EQ(char_to_uint('8', 8), 0); // Bad value given radix.
|
|
CHECK_EQ(char_to_uint('8', 10), 8);
|
|
CHECK_EQ(char_to_uint('8', 16), 8);
|
|
CHECK_EQ(char_to_uint('A', 10), 0); // Bad value given radix.
|
|
CHECK_EQ(char_to_uint('A', 16), 0xA);
|
|
CHECK_EQ(char_to_uint('a', 16), 0xA); // Lowercase.
|
|
CHECK_EQ(char_to_uint('f', 16), 0xF); // Lowercase.
|
|
CHECK_EQ(char_to_uint('G', 16), 0); // Bad value given radix.
|
|
}
|
|
|
|
TEST_CASE("uint_to_char returns correct value.") {
|
|
CHECK_EQ(uint_to_char(0, 10), '0');
|
|
CHECK_EQ(uint_to_char(5, 10), '5');
|
|
CHECK_EQ(uint_to_char(8, 8), '\0'); // Bad value given radix.
|
|
CHECK_EQ(uint_to_char(8, 10), '8');
|
|
CHECK_EQ(uint_to_char(8, 16), '8');
|
|
CHECK_EQ(uint_to_char(10, 10), '\0'); // Bad value given radix.
|
|
CHECK_EQ(uint_to_char(10, 16), 'A');
|
|
CHECK_EQ(uint_to_char(15, 16), 'F');
|
|
CHECK_EQ(uint_to_char(16, 16), '\0'); // Bad value given radix.
|
|
}
|
|
|
|
TEST_CASE("trim removes whitespace.") {
|
|
CHECK(trim(" foo\n") == "foo");
|
|
}
|
|
|
|
TEST_CASE("trim returns empty for only whitespace.") {
|
|
CHECK(trim(" \n").empty());
|
|
}
|
|
|
|
TEST_CASE("trim empty returns empty.") {
|
|
CHECK(trim("").empty());
|
|
}
|