2022-07-25 14:36:05 +08:00
|
|
|
#include <SFML/Window/Cursor.hpp>
|
|
|
|
|
2023-01-18 12:51:08 +08:00
|
|
|
#include <catch2/catch_test_macros.hpp>
|
2023-02-12 09:58:49 +08:00
|
|
|
|
|
|
|
#include <WindowUtil.hpp>
|
|
|
|
#include <array>
|
2022-07-25 14:36:05 +08:00
|
|
|
#include <type_traits>
|
|
|
|
|
2023-09-05 09:21:42 +08:00
|
|
|
TEST_CASE("[Window] sf::Cursor", runDisplayTests())
|
2023-02-12 09:58:49 +08:00
|
|
|
{
|
2023-01-18 12:51:08 +08:00
|
|
|
SECTION("Type traits")
|
|
|
|
{
|
2024-05-21 09:04:40 +08:00
|
|
|
STATIC_CHECK(!std::is_default_constructible_v<sf::Cursor>);
|
2023-01-18 12:51:08 +08:00
|
|
|
STATIC_CHECK(!std::is_copy_constructible_v<sf::Cursor>);
|
|
|
|
STATIC_CHECK(!std::is_copy_assignable_v<sf::Cursor>);
|
|
|
|
STATIC_CHECK(std::is_nothrow_move_constructible_v<sf::Cursor>);
|
|
|
|
STATIC_CHECK(std::is_nothrow_move_assignable_v<sf::Cursor>);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("loadFromPixels()")
|
2023-02-12 09:58:49 +08:00
|
|
|
{
|
2024-05-21 09:04:40 +08:00
|
|
|
static constexpr std::array<std::uint8_t, 4> pixels{};
|
2023-02-12 09:58:49 +08:00
|
|
|
|
2024-05-21 09:04:40 +08:00
|
|
|
CHECK(!sf::Cursor::loadFromPixels(nullptr, {}, {}));
|
|
|
|
CHECK(!sf::Cursor::loadFromPixels(pixels.data(), {0, 1}, {}));
|
|
|
|
CHECK(!sf::Cursor::loadFromPixels(pixels.data(), {1, 0}, {}));
|
|
|
|
CHECK(sf::Cursor::loadFromPixels(pixels.data(), {1, 1}, {}));
|
2023-02-12 09:58:49 +08:00
|
|
|
}
|
|
|
|
|
2023-01-18 12:51:08 +08:00
|
|
|
SECTION("loadFromSystem()")
|
2023-02-12 09:58:49 +08:00
|
|
|
{
|
2024-05-21 09:04:40 +08:00
|
|
|
CHECK(sf::Cursor::loadFromSystem(sf::Cursor::Type::Hand));
|
|
|
|
CHECK(sf::Cursor::loadFromSystem(sf::Cursor::Type::SizeHorizontal));
|
|
|
|
CHECK(sf::Cursor::loadFromSystem(sf::Cursor::Type::SizeVertical));
|
|
|
|
CHECK(sf::Cursor::loadFromSystem(sf::Cursor::Type::SizeLeft));
|
|
|
|
CHECK(sf::Cursor::loadFromSystem(sf::Cursor::Type::SizeRight));
|
|
|
|
CHECK(sf::Cursor::loadFromSystem(sf::Cursor::Type::SizeTop));
|
|
|
|
CHECK(sf::Cursor::loadFromSystem(sf::Cursor::Type::SizeBottom));
|
|
|
|
CHECK(sf::Cursor::loadFromSystem(sf::Cursor::Type::SizeTopLeft));
|
|
|
|
CHECK(sf::Cursor::loadFromSystem(sf::Cursor::Type::SizeTopRight));
|
|
|
|
CHECK(sf::Cursor::loadFromSystem(sf::Cursor::Type::SizeBottomLeft));
|
|
|
|
CHECK(sf::Cursor::loadFromSystem(sf::Cursor::Type::SizeBottomRight));
|
|
|
|
CHECK(sf::Cursor::loadFromSystem(sf::Cursor::Type::Cross));
|
|
|
|
CHECK(sf::Cursor::loadFromSystem(sf::Cursor::Type::Help));
|
|
|
|
CHECK(sf::Cursor::loadFromSystem(sf::Cursor::Type::NotAllowed));
|
2023-02-12 09:58:49 +08:00
|
|
|
}
|
|
|
|
}
|