Files
RedBear-OS/recipes/libs/nghttp2/source/src/template_test.cc
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

240 lines
5.9 KiB
C++

/*
* nghttp2 - HTTP/2 C Library
*
* Copyright (c) 2016 Tatsuhiro Tsujikawa
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "template_test.h"
#include <cstring>
#include <iostream>
#include <sstream>
#include "munitxx.h"
#include "template.h"
using namespace std::literals;
namespace nghttp2 {
namespace {
const MunitTest tests[]{
munit_void_test(test_template_immutable_string),
munit_void_test(test_template_string_ref),
munit_void_test(test_template_as_uint8_span),
munit_test_end(),
};
} // namespace
const MunitSuite template_suite{
"/template", tests, NULL, 1, MUNIT_SUITE_OPTION_NONE,
};
void test_template_immutable_string(void) {
ImmutableString null;
assert_string_equal("", null.c_str());
assert_size(0, ==, null.size());
assert_true(null.empty());
ImmutableString from_cstr("alpha");
assert_string_equal("alpha", from_cstr.c_str());
assert_size(5, ==, from_cstr.size());
assert_false(from_cstr.empty());
assert_true("alpha" == from_cstr);
assert_true(from_cstr == "alpha");
assert_true(std::string("alpha") == from_cstr);
assert_true(from_cstr == std::string("alpha"));
// copy constructor
ImmutableString src("charlie");
ImmutableString copy = src;
assert_string_equal("charlie", copy.c_str());
assert_size(7, ==, copy.size());
// copy assignment
ImmutableString copy2;
copy2 = src;
assert_string_equal("charlie", copy2.c_str());
assert_size(7, ==, copy2.size());
// move constructor
ImmutableString move = std::move(copy);
assert_string_equal("charlie", move.c_str());
assert_size(7, ==, move.size());
assert_string_equal("", copy.c_str());
assert_size(0, ==, copy.size());
// move assignment
move = std::move(from_cstr);
assert_string_equal("alpha", move.c_str());
assert_size(5, ==, move.size());
assert_string_equal("", from_cstr.c_str());
assert_size(0, ==, from_cstr.size());
// from string literal
auto from_lit = ImmutableString::from_lit("bravo");
assert_string_equal("bravo", from_lit.c_str());
assert_size(5, ==, from_lit.size());
// equality
ImmutableString eq("delta");
assert_true("delta1" != eq);
assert_true("delt" != eq);
assert_true(eq != "delta1");
assert_true(eq != "delt");
// operator[]
ImmutableString br_op("foxtrot");
assert_char('f', ==, br_op[0]);
assert_char('o', ==, br_op[1]);
assert_char('t', ==, br_op[6]);
assert_char('\0', ==, br_op[7]);
// operator==(const ImmutableString &, const ImmutableString &)
{
ImmutableString a("foo");
ImmutableString b("foo");
ImmutableString c("fo");
assert_true(a == b);
assert_true(a != c);
assert_true(c != b);
}
// operator<<
{
ImmutableString a("foo");
std::stringstream ss;
ss << a;
assert_stdstring_equal("foo", ss.str());
}
// operator +=(std::string &, const ImmutableString &)
{
std::string a = "alpha";
a += ImmutableString("bravo");
assert_stdstring_equal("alphabravo", a);
}
}
void test_template_string_ref(void) {
StringRef empty;
assert_stdsv_equal(""sv, empty);
assert_size(0, ==, empty.size());
// from std::string
std::string alpha = "alpha";
StringRef ref(alpha);
assert_true("alpha" == ref);
assert_true(ref == "alpha");
assert_true(alpha == ref);
assert_true(ref == alpha);
assert_size(5, ==, ref.size());
// from string literal
auto from_lit = "alpha"_sr;
assert_stdsv_equal("alpha"sv, from_lit);
assert_size(5, ==, from_lit.size());
// from ImmutableString
auto im = ImmutableString::from_lit("bravo");
StringRef imref(im);
assert_stdsv_equal("bravo"sv, imref);
assert_size(5, ==, imref.size());
// from C-string
StringRef cstrref("charlie");
assert_stdsv_equal("charlie"sv, cstrref);
assert_size(7, ==, cstrref.size());
// from C-string and its length
StringRef cstrnref("delta", 5);
assert_stdsv_equal("delta"sv, cstrnref);
assert_size(5, ==, cstrnref.size());
// operator[]
StringRef br_op("foxtrot");
assert_char('f', ==, br_op[0]);
assert_char('o', ==, br_op[1]);
assert_char('t', ==, br_op[6]);
assert_char('\0', ==, br_op[7]);
// operator<<
{
StringRef a("foo");
std::stringstream ss;
ss << a;
assert_stdstring_equal("foo", ss.str());
}
// operator +=(std::string &, const StringRef &)
{
std::string a = "alpha";
a += StringRef("bravo");
assert_stdstring_equal("alphabravo", a);
}
}
void test_template_as_uint8_span(void) {
uint32_t a[2];
memcpy(&a, "\xc0\xc1\xc2\xc3\xf0\xf1\xf2\xf3", sizeof(a));
// dynamic extent
auto s = as_uint8_span(std::span{a, 2});
assert_size(sizeof(a), ==, s.size());
assert_size(std::dynamic_extent, ==, s.extent);
assert_memory_equal(s.size(), &a, s.data());
// non-dynamic extent
auto t = as_uint8_span(std::span<uint32_t, 2>{a, 2});
assert_size(sizeof(a), ==, t.size());
assert_size(sizeof(a), ==, t.extent);
assert_memory_equal(t.size(), &a, t.data());
}
} // namespace nghttp2