blob: 850ec26dee5f64ad9d7e2ae5f3ec0b95c2d2b177 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/blink/renderer/platform/graphics/paint/display_item_client.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/platform/testing/fake_display_item_client.h"
namespace blink {
namespace {
#if DCHECK_IS_ON() && !defined(UNDEFINED_SANITIZER)
TEST(DisplayItemClientTest, IsAliveAndSafeDebugName) {
const auto* invalid_client = reinterpret_cast<DisplayItemClient*>(0x12345678);
EXPECT_FALSE(invalid_client->IsAlive());
EXPECT_EQ("DEAD", invalid_client->SafeDebugName());
FakeDisplayItemClient* test_client = new FakeDisplayItemClient;
EXPECT_TRUE(test_client->IsAlive());
EXPECT_EQ("Just created:FakeDisplayItemClient", test_client->SafeDebugName());
test_client->Validate();
EXPECT_EQ("FakeDisplayItemClient", test_client->SafeDebugName());
delete test_client;
EXPECT_FALSE(test_client->IsAlive());
EXPECT_EQ("DEAD", test_client->SafeDebugName());
}
#endif
} // namespace
} // namespace blink