1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
#include <doctest/doctest.h>
#include <toml11/parser.hpp>
#include <toml11/serializer.hpp>
#include <toml11/types.hpp>
#include <toml11/literal.hpp>
TEST_CASE("testing decimal")
{
const auto decimal_fmt = [](std::size_t w, std::size_t s) {
toml::integer_format_info fmt;
fmt.fmt = toml::integer_format::dec;
fmt.width = w;
fmt.spacer = s;
return fmt;
};
CHECK_EQ( "0", toml::format(toml::value( 0, decimal_fmt(1, 0))));
CHECK_EQ( "1234", toml::format(toml::value( 1234, decimal_fmt(0, 0))));
CHECK_EQ( "-1234", toml::format(toml::value( -1234, decimal_fmt(0, 0))));
CHECK_EQ( "1_2_3_4", toml::format(toml::value( 1234, decimal_fmt(4, 1))));
CHECK_EQ( "-1_2_3_4", toml::format(toml::value( -1234, decimal_fmt(5, 1))));
CHECK_EQ("123_456_789", toml::format(toml::value(123456789, decimal_fmt(9, 3))));
}
TEST_CASE("testing hex")
{
const auto hex_fmt = [](bool u, std::size_t w, std::size_t s) {
toml::integer_format_info fmt;
fmt.fmt = toml::integer_format::hex;
fmt.uppercase = u;
fmt.width = w;
fmt.spacer = s;
return fmt;
};
CHECK_EQ("0xdeadbeef", toml::format(toml::value(0xDEADBEEF, hex_fmt(false, 8, 0))));
CHECK_EQ("0xdead_beef", toml::format(toml::value(0xDEADBEEF, hex_fmt(false, 8, 4))));
CHECK_EQ("0xff", toml::format(toml::value(0xFF, hex_fmt(false, 2, 0))));
CHECK_EQ("0x00ff", toml::format(toml::value(0xFF, hex_fmt(false, 4, 0))));
CHECK_EQ("0x0000ff", toml::format(toml::value(0xFF, hex_fmt(false, 6, 0))));
CHECK_EQ("0xDEADBEEF", toml::format(toml::value(0xDEADBEEF, hex_fmt(true, 8, 0))));
CHECK_EQ("0xDEAD_BEEF", toml::format(toml::value(0xDEADBEEF, hex_fmt(true, 8, 4))));
CHECK_EQ("0xFF", toml::format(toml::value(0xFF, hex_fmt(true, 2, 0))));
CHECK_EQ("0x00FF", toml::format(toml::value(0xFF, hex_fmt(true, 4, 0))));
CHECK_EQ("0x0000FF", toml::format(toml::value(0xFF, hex_fmt(true, 6, 0))));
using namespace toml::literals::toml_literals;
CHECK_EQ("0xdeadbeef", toml::format("0xdeadbeef"_toml ));
CHECK_EQ("0xdead_beef", toml::format("0xdead_beef"_toml));
CHECK_EQ("0xff", toml::format("0xff"_toml ));
CHECK_EQ("0x00ff", toml::format("0x00ff"_toml ));
CHECK_EQ("0x0000ff", toml::format("0x0000ff"_toml ));
CHECK_EQ("0xDEADBEEF", toml::format("0xDEADBEEF"_toml ));
CHECK_EQ("0xDEAD_BEEF", toml::format("0xDEAD_BEEF"_toml));
CHECK_EQ("0xFF", toml::format("0xFF"_toml ));
CHECK_EQ("0x00FF", toml::format("0x00FF"_toml ));
CHECK_EQ("0x0000FF", toml::format("0x0000FF"_toml ));
}
TEST_CASE("testing oct")
{
const auto oct_fmt = [](std::size_t w, std::size_t s) {
toml::integer_format_info fmt;
fmt.fmt = toml::integer_format::oct;
fmt.width = w;
fmt.spacer = s;
return fmt;
};
CHECK_EQ("0o644", toml::format(toml::value(64*6+8*4+4, oct_fmt(3, 0))));
CHECK_EQ("0o7_7_7", toml::format(toml::value(64*7+8*7+7, oct_fmt(3, 1))));
CHECK_EQ("0o000644", toml::format(toml::value(64*6+8*4+4, oct_fmt(6, 0))));
}
TEST_CASE("testing bin")
{
const auto bin_fmt = [](std::size_t w, std::size_t s) {
toml::integer_format_info fmt;
fmt.fmt = toml::integer_format::bin;
fmt.width = w;
fmt.spacer = s;
return fmt;
};
CHECK_EQ("0b1000", toml::format(toml::value(8, bin_fmt(4, 0))));
CHECK_EQ("0b00001000", toml::format(toml::value(8, bin_fmt(8, 0))));
CHECK_EQ("0b0000_1000", toml::format(toml::value(8, bin_fmt(8, 4))));
}
TEST_CASE("testing decimal with suffix")
{
toml::spec sp = toml::spec::v(1,0,0);
sp.ext_num_suffix = true;
const auto decimal_fmt = [](std::size_t w, std::size_t s, std::string sfx) {
toml::integer_format_info fmt;
fmt.fmt = toml::integer_format::dec;
fmt.width = w;
fmt.spacer = s;
fmt.suffix = sfx;
return fmt;
};
CHECK_EQ( "0_J", toml::format(toml::value( 0, decimal_fmt(1, 0, "J")), sp));
CHECK_EQ( "1234_kcal", toml::format(toml::value( 1234, decimal_fmt(0, 0, "kcal")), sp));
CHECK_EQ("1_2_3_4_μm", toml::format(toml::value( 1234, decimal_fmt(4, 1, "μm")), sp));
}
|