/* * 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 #include #include #include "munitxx.h" #include "template.h" namespace nghttp2 { namespace { const MunitTest tests[]{ munit_void_test(test_template_immutable_string), munit_void_test(test_template_string_ref), 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_stdstring_equal("", empty.str()); 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 = StringRef::from_lit("alpha"); assert_stdstring_equal("alpha", from_lit.str()); assert_size(5, ==, from_lit.size()); // from ImmutableString auto im = ImmutableString::from_lit("bravo"); StringRef imref(im); assert_stdstring_equal("bravo", imref.str()); assert_size(5, ==, imref.size()); // from C-string StringRef cstrref("charlie"); assert_stdstring_equal("charlie", cstrref.str()); assert_size(7, ==, cstrref.size()); // from C-string and its length StringRef cstrnref("delta", 5); assert_stdstring_equal("delta", cstrnref.str()); 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); } } } // namespace nghttp2