mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
Add tests for sf::WindowBase
This commit is contained in:
parent
347b306d21
commit
2af65286b7
@ -67,6 +67,9 @@ set(WINDOW_SRC
|
|||||||
Window/WindowBase.test.cpp
|
Window/WindowBase.test.cpp
|
||||||
)
|
)
|
||||||
sfml_add_test(test-sfml-window "${WINDOW_SRC}" SFML::Window)
|
sfml_add_test(test-sfml-window "${WINDOW_SRC}" SFML::Window)
|
||||||
|
if(SFML_RUN_DISPLAY_TESTS)
|
||||||
|
target_compile_definitions(test-sfml-window PRIVATE SFML_RUN_DISPLAY_TESTS)
|
||||||
|
endif()
|
||||||
|
|
||||||
set(GRAPHICS_SRC
|
set(GRAPHICS_SRC
|
||||||
Graphics/BlendMode.test.cpp
|
Graphics/BlendMode.test.cpp
|
||||||
|
@ -11,12 +11,6 @@
|
|||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
#include <limits>
|
#include <limits>
|
||||||
|
|
||||||
#ifdef SFML_RUN_DISPLAY_TESTS
|
|
||||||
static constexpr bool skipDisplayTests = false;
|
|
||||||
#else
|
|
||||||
static constexpr bool skipDisplayTests = true;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace sf
|
namespace sf
|
||||||
{
|
{
|
||||||
struct BlendMode;
|
struct BlendMode;
|
||||||
|
@ -7,6 +7,12 @@
|
|||||||
|
|
||||||
#include <SystemUtil.hpp>
|
#include <SystemUtil.hpp>
|
||||||
|
|
||||||
|
#ifdef SFML_RUN_DISPLAY_TESTS
|
||||||
|
static constexpr bool skipDisplayTests = false;
|
||||||
|
#else
|
||||||
|
static constexpr bool skipDisplayTests = true;
|
||||||
|
#endif
|
||||||
|
|
||||||
// String conversions for doctest framework
|
// String conversions for doctest framework
|
||||||
namespace sf
|
namespace sf
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,114 @@
|
|||||||
#include <SFML/Window/WindowBase.hpp>
|
#include <SFML/Window/WindowBase.hpp>
|
||||||
|
|
||||||
|
// Other 1st party headers
|
||||||
|
#include <SFML/System/String.hpp>
|
||||||
|
#include <SFML/Window/Event.hpp>
|
||||||
|
#include <SFML/Window/VideoMode.hpp>
|
||||||
|
|
||||||
|
#include <doctest/doctest.h>
|
||||||
|
|
||||||
|
#include <WindowUtil.hpp>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
|
||||||
static_assert(!std::is_copy_constructible_v<sf::WindowBase>);
|
static_assert(!std::is_copy_constructible_v<sf::WindowBase>);
|
||||||
static_assert(!std::is_copy_assignable_v<sf::WindowBase>);
|
static_assert(!std::is_copy_assignable_v<sf::WindowBase>);
|
||||||
static_assert(!std::is_nothrow_move_constructible_v<sf::WindowBase>);
|
static_assert(!std::is_nothrow_move_constructible_v<sf::WindowBase>);
|
||||||
static_assert(!std::is_nothrow_move_assignable_v<sf::WindowBase>);
|
static_assert(!std::is_nothrow_move_assignable_v<sf::WindowBase>);
|
||||||
|
|
||||||
|
TEST_CASE("[Window] sf::WindowBase" * doctest::skip(skipDisplayTests))
|
||||||
|
{
|
||||||
|
SUBCASE("Construction")
|
||||||
|
{
|
||||||
|
SUBCASE("Default constructor")
|
||||||
|
{
|
||||||
|
const sf::WindowBase windowBase;
|
||||||
|
CHECK(!windowBase.isOpen());
|
||||||
|
CHECK(windowBase.getPosition() == sf::Vector2i());
|
||||||
|
CHECK(windowBase.getSize() == sf::Vector2u());
|
||||||
|
CHECK(!windowBase.hasFocus());
|
||||||
|
CHECK(windowBase.getSystemHandle() == sf::WindowHandle());
|
||||||
|
}
|
||||||
|
|
||||||
|
SUBCASE("Mode and title constructor")
|
||||||
|
{
|
||||||
|
const sf::WindowBase windowBase(sf::VideoMode({360, 240}), "WindowBase Tests");
|
||||||
|
CHECK(windowBase.isOpen());
|
||||||
|
CHECK(windowBase.getSize() == sf::Vector2u(360, 240));
|
||||||
|
CHECK(windowBase.getSystemHandle() != sf::WindowHandle());
|
||||||
|
}
|
||||||
|
|
||||||
|
SUBCASE("Mode, title, and style constructor")
|
||||||
|
{
|
||||||
|
const sf::WindowBase windowBase(sf::VideoMode({360, 240}), "WindowBase Tests", sf::Style::Resize);
|
||||||
|
CHECK(windowBase.isOpen());
|
||||||
|
CHECK(windowBase.getSize() == sf::Vector2u(360, 240));
|
||||||
|
CHECK(windowBase.getSystemHandle() != sf::WindowHandle());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
SUBCASE("create()")
|
||||||
|
{
|
||||||
|
sf::WindowBase windowBase;
|
||||||
|
|
||||||
|
SUBCASE("Mode and title")
|
||||||
|
{
|
||||||
|
windowBase.create(sf::VideoMode({240, 360}), "WindowBase Tests");
|
||||||
|
CHECK(windowBase.isOpen());
|
||||||
|
CHECK(windowBase.getSize() == sf::Vector2u(240, 360));
|
||||||
|
CHECK(windowBase.getSystemHandle() != sf::WindowHandle());
|
||||||
|
}
|
||||||
|
|
||||||
|
SUBCASE("Mode, title, and style")
|
||||||
|
{
|
||||||
|
windowBase.create(sf::VideoMode({240, 360}), "WindowBase Tests", sf::Style::Resize);
|
||||||
|
CHECK(windowBase.isOpen());
|
||||||
|
CHECK(windowBase.getSize() == sf::Vector2u(240, 360));
|
||||||
|
CHECK(windowBase.getSystemHandle() != sf::WindowHandle());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
SUBCASE("close()")
|
||||||
|
{
|
||||||
|
sf::WindowBase windowBase(sf::VideoMode({360, 240}), "WindowBase Tests");
|
||||||
|
windowBase.close();
|
||||||
|
CHECK(!windowBase.isOpen());
|
||||||
|
}
|
||||||
|
|
||||||
|
SUBCASE("pollEvent()")
|
||||||
|
{
|
||||||
|
sf::WindowBase windowBase;
|
||||||
|
sf::Event event;
|
||||||
|
CHECK(!windowBase.pollEvent(event));
|
||||||
|
}
|
||||||
|
|
||||||
|
SUBCASE("waitEvent()")
|
||||||
|
{
|
||||||
|
sf::WindowBase windowBase;
|
||||||
|
sf::Event event;
|
||||||
|
CHECK(!windowBase.waitEvent(event));
|
||||||
|
}
|
||||||
|
|
||||||
|
SUBCASE("Get/set position")
|
||||||
|
{
|
||||||
|
sf::WindowBase windowBase;
|
||||||
|
windowBase.setPosition({12, 34});
|
||||||
|
CHECK(windowBase.getPosition() == sf::Vector2i());
|
||||||
|
}
|
||||||
|
|
||||||
|
SUBCASE("Set/get size")
|
||||||
|
{
|
||||||
|
SUBCASE("Uninitialized window")
|
||||||
|
{
|
||||||
|
sf::WindowBase windowBase;
|
||||||
|
windowBase.setSize({128, 256});
|
||||||
|
CHECK(windowBase.getSize() == sf::Vector2u());
|
||||||
|
}
|
||||||
|
|
||||||
|
SUBCASE("Initialized window")
|
||||||
|
{
|
||||||
|
sf::WindowBase windowBase(sf::VideoMode({360, 240}), "WindowBase Tests");
|
||||||
|
windowBase.setSize({128, 256});
|
||||||
|
CHECK(windowBase.getSize() == sf::Vector2u(128, 256));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user