File: string_view_test.cpp

package info (click to toggle)
opentracing-cpp 1.6.0-4.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,572 kB
  • sloc: cpp: 14,234; ansic: 68; sh: 16; makefile: 5
file content (49 lines) | stat: -rw-r--r-- 1,217 bytes parent folder | download | duplicates (3)
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
#include <opentracing/string_view.h>  // test include guard
#include <opentracing/string_view.h>

#define CATCH_CONFIG_MAIN
#include <opentracing/catch2/catch.hpp>

using namespace opentracing;

TEST_CASE("string_view") {
  SECTION("A default-constructed string_view is empty.") {
    string_view ref;
    CHECK(nullptr == ref.data());
    CHECK(0 == ref.length());
  }

  SECTION("string_view can be initialized from a c-string.") {
    const char* val = "hello world";

    string_view ref(val);

    CHECK(val == ref.data());
    CHECK(std::strlen(val) == ref.length());
  }

  SECTION("string_view can be initialized from an std::string.") {
    const std::string val = "hello world";

    string_view ref(val);

    CHECK(val == ref.data());
    CHECK(val.length() == ref.length());
  }

  SECTION("A copied string_view points to the same data as its source.") {
    const std::string val = "hello world";

    string_view ref(val);
    string_view cpy(ref);

    CHECK(val == cpy.data());
    CHECK(val.length() == cpy.length());
  }

  SECTION("operator[] can be used to access characters in a string_view") {
    string_view s = "abc123";
    CHECK(&s[0] == s.data());
    CHECK(&s[1] == s.data() + 1);
  }
}