2023-06-11 18:47:13 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2023
|
|
|
|
*
|
|
|
|
* 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 "utility.hpp"
|
|
|
|
|
2023-06-12 17:40:32 +00:00
|
|
|
TEST_SUITE_BEGIN("Flags operators");
|
2023-06-11 18:47:13 +00:00
|
|
|
|
|
|
|
enum class Flags : uint8_t {
|
|
|
|
A = 0x1,
|
|
|
|
B = 0x2,
|
|
|
|
C = 0x4,
|
|
|
|
};
|
|
|
|
|
2023-06-12 17:40:32 +00:00
|
|
|
ENABLE_FLAGS_OPERATORS(Flags);
|
|
|
|
|
|
|
|
TEST_CASE("operator| should combine flags.") {
|
|
|
|
constexpr Flags f = Flags::A | Flags::C;
|
|
|
|
static_assert(static_cast<int>(f) == 5);
|
|
|
|
}
|
|
|
|
|
2023-06-11 18:47:13 +00:00
|
|
|
TEST_CASE("When flag set, flags_enabled should be true.") {
|
2023-06-12 17:40:32 +00:00
|
|
|
constexpr Flags f = Flags::A;
|
|
|
|
static_assert(flags_enabled(f, Flags::A));
|
2023-06-11 18:47:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("When flag not set, flags_enabled should be false.") {
|
2023-06-12 17:40:32 +00:00
|
|
|
constexpr Flags f = Flags::B;
|
|
|
|
static_assert(flags_enabled(f, Flags::A) == false);
|
2023-06-11 18:47:13 +00:00
|
|
|
}
|
|
|
|
|
2023-06-14 07:57:20 +00:00
|
|
|
TEST_SUITE_END();
|
|
|
|
|
|
|
|
TEST_CASE("Stash should save and restore value.") {
|
|
|
|
int val = 10;
|
|
|
|
|
|
|
|
{
|
|
|
|
Stash s{val};
|
|
|
|
val = 20;
|
|
|
|
CHECK_EQ(val, 20);
|
|
|
|
}
|
|
|
|
|
|
|
|
CHECK_EQ(val, 10);
|
|
|
|
}
|
2023-06-17 20:01:46 +00:00
|
|
|
|
|
|
|
TEST_CASE("ms_duration should return duration.") {
|
|
|
|
auto sample_rate = 48'000;
|
|
|
|
auto bytes_per_sample = 2; // 16 bit.
|
|
|
|
auto seconds = 5;
|
|
|
|
auto size = seconds * sample_rate * bytes_per_sample;
|
|
|
|
CHECK_EQ(ms_duration(size, sample_rate, bytes_per_sample), 5 * 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("ms_duration not fault when passed zero.") {
|
|
|
|
CHECK_EQ(ms_duration(0, 0, 0), 0);
|
2023-09-12 19:38:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("to_byte_array returns correct size and values.") {
|
|
|
|
auto arr1 = to_byte_array<uint8_t>(0xAB);
|
|
|
|
REQUIRE_EQ(std::size(arr1), 1);
|
|
|
|
CHECK_EQ(arr1[0], 0xAB);
|
|
|
|
|
|
|
|
auto arr2 = to_byte_array<uint16_t>(0xABCD);
|
|
|
|
REQUIRE_EQ(std::size(arr2), 2);
|
|
|
|
CHECK_EQ(arr2[0], 0xAB);
|
|
|
|
CHECK_EQ(arr2[1], 0xCD);
|
|
|
|
|
|
|
|
auto arr4 = to_byte_array<uint32_t>(0xABCD1234);
|
|
|
|
REQUIRE_EQ(std::size(arr4), 4);
|
|
|
|
CHECK_EQ(arr4[0], 0xAB);
|
|
|
|
CHECK_EQ(arr4[1], 0xCD);
|
|
|
|
CHECK_EQ(arr4[2], 0x12);
|
|
|
|
CHECK_EQ(arr4[3], 0x34);
|
2023-09-18 21:22:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("join will join strings") {
|
|
|
|
CHECK_EQ(join(',', {}), "");
|
|
|
|
CHECK_EQ(join(',', {"a"}), "a");
|
|
|
|
CHECK_EQ(join('-', {"a", "b"}), "a-b");
|
|
|
|
CHECK_EQ(join(',', {"a", "b", "c"}), "a,b,c");
|
2023-06-17 20:01:46 +00:00
|
|
|
}
|