llvm-project/lldb/unittests/API/SBStructuredDataTest.cpp
Dave Lee c5cf4b8f11 [lldb] Handle missing SBStructuredData copy assignment cases
Fix cases that can crash `SBStructuredData::operator=`.

This happened in a case where `rhs` had a null `SBStructuredDataImpl`.

Differential Revision: https://reviews.llvm.org/D101585
2021-05-05 15:12:03 -07:00

36 lines
1.2 KiB
C++

//===-- SBStructuredDataTest.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 "lldb/API/SBStringList.h"
#include "lldb/API/SBStructuredData.h"
#include <cstring>
#include <string>
using namespace lldb;
class SBStructuredDataTest : public testing::Test {};
TEST_F(SBStructuredDataTest, NullImpl) {
SBStructuredData data(nullptr);
EXPECT_EQ(data.GetType(), eStructuredDataTypeInvalid);
EXPECT_EQ(data.GetSize(), 0ul);
SBStringList keys;
EXPECT_FALSE(data.GetKeys(keys));
EXPECT_EQ(data.GetValueForKey("key").GetType(), eStructuredDataTypeInvalid);
EXPECT_EQ(data.GetItemAtIndex(0).GetType(), eStructuredDataTypeInvalid);
EXPECT_EQ(data.GetIntegerValue(UINT64_MAX), UINT64_MAX);
EXPECT_EQ(data.GetFloatValue(DBL_MAX), DBL_MAX);
EXPECT_TRUE(data.GetBooleanValue(true));
EXPECT_FALSE(data.GetBooleanValue(false));
char dst[1];
EXPECT_EQ(data.GetStringValue(dst, sizeof(dst)), 0ul);
}