1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-08 05:27:14 +09:00
ladybird/Tests/LibGfx/TestRect.cpp
Jelle Raaijmakers 7eb4f3da37 LibGfx: Add Rect::unite()
The existing `::unite_horizontally()` and `::unite_vertically()` tests
did not properly test the edge cases where left/top in the Rect were
updated, so they get re-arranged a bit.
2025-01-23 09:33:10 +01:00

97 lines
2.5 KiB
C++

/*
* Copyright (c) 2023, Jelle Raaijmakers <jelle@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibGfx/Rect.h>
#include <LibTest/TestCase.h>
TEST_CASE(int_rect_right_and_bottom)
{
Gfx::IntRect rect = { 2, 3, 4, 5 };
EXPECT_EQ(rect.right(), 6);
EXPECT_EQ(rect.bottom(), 8);
}
TEST_CASE(float_rect_right_and_bottom)
{
Gfx::FloatRect rect = { 1.f, 2.f, 3.5f, 4.5f };
EXPECT_APPROXIMATE(rect.right(), 4.5f);
EXPECT_APPROXIMATE(rect.bottom(), 6.5f);
}
TEST_CASE(rect_contains_vertically)
{
Gfx::FloatRect rect = { 0.f, 0.f, 100.f, 100.f };
EXPECT(rect.contains_vertically(99.f));
EXPECT(!rect.contains_vertically(100.f));
}
TEST_CASE(rect_shatter)
{
Gfx::IntRect glass_plate = { 0, 0, 100, 100 };
Gfx::IntRect hammer = { 30, 40, 40, 10 };
auto shards = glass_plate.shatter(hammer);
EXPECT(!shards.is_empty());
int total_shard_area = 0;
for (auto shard : shards) {
EXPECT(glass_plate.contains(shard));
EXPECT(!hammer.intersects(shard));
total_shard_area += shard.size().area();
}
EXPECT_EQ(glass_plate.size().area() - hammer.size().area(), total_shard_area);
}
TEST_CASE(rect_closest_to)
{
Gfx::IntRect const screen_rect = { 0, 0, 960, 540 };
Gfx::Point<int> p = { 460, 592 }; // point is below the rect
Gfx::Point<int> closest = screen_rect.closest_to(p);
EXPECT_EQ(screen_rect.side(closest), Gfx::IntRect::Side::Bottom);
p = { 960, 0 }; // point exactly on top right corner
closest = screen_rect.closest_to(p);
EXPECT_EQ(screen_rect.side(closest), Gfx::IntRect::Side::Top);
}
TEST_CASE(rect_unite)
{
Gfx::IntRect rect_a { 10, 10, 100, 100 };
Gfx::IntRect rect_b { 50, 50, 60, 70 };
rect_a.unite(rect_b);
EXPECT_EQ(rect_a.left(), 10);
EXPECT_EQ(rect_a.right(), 110);
EXPECT_EQ(rect_a.top(), 10);
EXPECT_EQ(rect_a.bottom(), 120);
}
TEST_CASE(rect_unite_horizontally)
{
Gfx::IntRect rect_a { 10, 10, 1000, 100 };
Gfx::IntRect rect_b { 0, 0, 100, 1000 };
rect_a.unite_horizontally(rect_b);
EXPECT_EQ(rect_a.left(), 0);
EXPECT_EQ(rect_a.right(), 1010);
EXPECT_EQ(rect_a.top(), 10);
EXPECT_EQ(rect_a.bottom(), 110);
}
TEST_CASE(rect_unite_vertically)
{
Gfx::IntRect rect_a { 10, 10, 1000, 1000 };
Gfx::IntRect rect_b { 0, 0, 100, 100 };
rect_a.unite_vertically(rect_b);
EXPECT_EQ(rect_a.top(), 0);
EXPECT_EQ(rect_a.bottom(), 1010);
EXPECT_EQ(rect_a.left(), 10);
EXPECT_EQ(rect_a.right(), 1010);
}