aboutsummaryrefslogtreecommitdiff
path: root/lldb/unittests/Utility/StructuredDataTest.cpp
blob: e536039f365a4babcd82ddc6e88dd5faa990def6 (plain)
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
112
113
114
//===-- StructuredDataTest.cpp --------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "gtest/gtest.h"

#include "TestingSupport/TestUtilities.h"
#include "lldb/Utility/Status.h"
#include "lldb/Utility/StreamString.h"
#include "lldb/Utility/StructuredData.h"
#include "llvm/Support/Path.h"

using namespace lldb;
using namespace lldb_private;

TEST(StructuredDataTest, StringDump) {
  std::pair<llvm::StringRef, llvm::StringRef> TestCases[] = {
      {R"(asdfg)", R"("asdfg")"},
      {R"(as"df)", R"("as\"df")"},
      {R"(as\df)", R"("as\\df")"},
  };
  for (auto P : TestCases) {
    StreamString S;
    const bool pretty_print = false;
    StructuredData::String(P.first).Dump(S, pretty_print);
    EXPECT_EQ(P.second, S.GetString());
  }
}

TEST(StructuredDataTest, GetDescriptionEmpty) {
  Status status;
  auto object_sp = StructuredData::ParseJSON("{}");
  ASSERT_NE(nullptr, object_sp);

  StreamString S;
  object_sp->GetDescription(S);
  EXPECT_EQ(0u, S.GetSize());
}

TEST(StructuredDataTest, GetDescriptionBasic) {
  Status status;
  std::string input = GetInputFilePath("StructuredData-basic.json");
  auto object_sp = StructuredData::ParseJSONFromFile(FileSpec(input), status);
  ASSERT_NE(nullptr, object_sp);

  const std::string expected = "[0]: 1\n"
                               "[1]: 2\n"
                               "[2]: 3";

  StreamString S;
  object_sp->GetDescription(S);
  EXPECT_EQ(expected, S.GetString());
}

TEST(StructuredDataTest, GetDescriptionNested) {
  Status status;
  std::string input = GetInputFilePath("StructuredData-nested.json");
  auto object_sp = StructuredData::ParseJSONFromFile(FileSpec(input), status);
  ASSERT_NE(nullptr, object_sp);

  const std::string expected = "my_dict:\n"
                               "  [0]:\n"
                               "    three: 3\n"
                               "    two: 2\n"
                               "  [1]:\n"
                               "    four:\n"
                               "      val: 4\n"
                               "  [2]: 1";

  StreamString S;
  object_sp->GetDescription(S);
  EXPECT_EQ(expected, S.GetString());
}

TEST(StructuredDataTest, GetDescriptionFull) {
  Status status;
  std::string input = GetInputFilePath("StructuredData-full.json");
  auto object_sp = StructuredData::ParseJSONFromFile(FileSpec(input), status);
  ASSERT_NE(nullptr, object_sp);

  const std::string expected = "Array:\n"
                               "  [0]: 3.140000\n"
                               "  [1]:\n"
                               "    key: val\n"
                               "Dictionary:\n"
                               "  FalseBool: False\n"
                               "Integer: 1\n"
                               "Null: NULL\n"
                               "String: value\n"
                               "TrueBool: True";

  StreamString S;
  object_sp->GetDescription(S);
  EXPECT_EQ(expected, S.GetString());
}

TEST(StructuredDataTest, ParseJSONFromFile) {
  Status status;
  auto object_sp = StructuredData::ParseJSONFromFile(
      FileSpec("non-existing-file.json"), status);
  EXPECT_EQ(nullptr, object_sp);

  std::string input = GetInputFilePath("StructuredData-basic.json");
  object_sp = StructuredData::ParseJSONFromFile(FileSpec(input), status);
  ASSERT_NE(nullptr, object_sp);

  StreamString S;
  object_sp->Dump(S, false);
  EXPECT_EQ("[1,2,3]", S.GetString());
}