mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:37:46 +00:00
Tests: Move AK tests to Tests/AK
This commit is contained in:
parent
fd0dbd1ebf
commit
67322b0702
64 changed files with 1 additions and 2 deletions
61
Tests/AK/TestNonnullRefPtr.cpp
Normal file
61
Tests/AK/TestNonnullRefPtr.cpp
Normal file
|
@ -0,0 +1,61 @@
|
|||
/*
|
||||
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibTest/TestCase.h>
|
||||
|
||||
#include <AK/NonnullRefPtr.h>
|
||||
#include <AK/String.h>
|
||||
|
||||
struct Object : public RefCounted<Object> {
|
||||
int x;
|
||||
};
|
||||
|
||||
TEST_CASE(basics)
|
||||
{
|
||||
auto object = adopt_ref(*new Object);
|
||||
EXPECT(object.ptr() != nullptr);
|
||||
EXPECT_EQ(object->ref_count(), 1u);
|
||||
object->ref();
|
||||
EXPECT_EQ(object->ref_count(), 2u);
|
||||
object->unref();
|
||||
EXPECT_EQ(object->ref_count(), 1u);
|
||||
|
||||
{
|
||||
NonnullRefPtr another = object;
|
||||
EXPECT_EQ(object->ref_count(), 2u);
|
||||
}
|
||||
|
||||
EXPECT_EQ(object->ref_count(), 1u);
|
||||
}
|
||||
|
||||
TEST_CASE(assign_reference)
|
||||
{
|
||||
auto object = adopt_ref(*new Object);
|
||||
EXPECT_EQ(object->ref_count(), 1u);
|
||||
object = *object;
|
||||
EXPECT_EQ(object->ref_count(), 1u);
|
||||
}
|
||||
|
||||
TEST_CASE(assign_owner_of_self)
|
||||
{
|
||||
struct Object : public RefCounted<Object> {
|
||||
RefPtr<Object> parent;
|
||||
};
|
||||
|
||||
auto parent = adopt_ref(*new Object);
|
||||
auto child = adopt_ref(*new Object);
|
||||
child->parent = move(parent);
|
||||
|
||||
child = *child->parent;
|
||||
EXPECT_EQ(child->ref_count(), 1u);
|
||||
}
|
||||
|
||||
TEST_CASE(swap_with_self)
|
||||
{
|
||||
auto object = adopt_ref(*new Object);
|
||||
swap(object, object);
|
||||
EXPECT_EQ(object->ref_count(), 1u);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue