diff options
Diffstat (limited to 'tests/test_wayland_platform.cc')
| -rw-r--r-- | tests/test_wayland_platform.cc | 225 |
1 files changed, 225 insertions, 0 deletions
diff --git a/tests/test_wayland_platform.cc b/tests/test_wayland_platform.cc new file mode 100644 index 0000000..728c1b1 --- /dev/null +++ b/tests/test_wayland_platform.cc @@ -0,0 +1,225 @@ +#include <gtest/gtest.h> +#include "../src/platform/wayland_platform.h" +#include <memory> + +class WaylandPlatformTest : public ::testing::Test { +protected: + void SetUp() override { + platform = std::make_unique<WaylandPlatform>(); + } + + void TearDown() override { + if (platform) { + platform->shutdown(); + } + } + + std::unique_ptr<WaylandPlatform> platform; +}; + +TEST_F(WaylandPlatformTest, Initialization) { + // Note: This test may fail if no Wayland display is available + // In a real environment, this should work + bool initialized = platform->initialize(); + + if (initialized) { + EXPECT_TRUE(platform->get_platform_name() == "Wayland"); + EXPECT_TRUE(platform->is_wayland()); + EXPECT_FALSE(platform->is_x11()); + EXPECT_FALSE(platform->is_windows()); + EXPECT_FALSE(platform->is_macos()); + } +} + +TEST_F(WaylandPlatformTest, PlatformCapabilities) { + EXPECT_TRUE(platform->get_platform_name() == "Wayland"); + EXPECT_TRUE(platform->is_wayland()); + EXPECT_FALSE(platform->is_x11()); + EXPECT_FALSE(platform->is_windows()); + EXPECT_FALSE(platform->is_macos()); +} + +TEST_F(WaylandPlatformTest, MonitorDetection) { + if (platform->initialize()) { + auto monitors = platform->get_monitors(); + EXPECT_FALSE(monitors.empty()); + + for (const auto& monitor : monitors) { + EXPECT_GT(monitor.id, 0); + EXPECT_FALSE(monitor.name.empty()); + EXPECT_GT(monitor.width, 0); + EXPECT_GT(monitor.height, 0); + EXPECT_GT(monitor.refresh_rate, 0); + } + } +} + +TEST_F(WaylandPlatformTest, WindowCreation) { + if (platform->initialize()) { + auto window = platform->create_window("Wayland Test Window", 100, 100, 400, 300); + EXPECT_NE(window, nullptr); + + if (window) { + EXPECT_EQ(window->getTitle(), "Wayland Test Window"); + EXPECT_EQ(window->getX(), 100); + EXPECT_EQ(window->getY(), 100); + EXPECT_EQ(window->getWidth(), 400); + EXPECT_EQ(window->getHeight(), 300); + } + } +} + +TEST_F(WaylandPlatformTest, WindowManagement) { + if (platform->initialize()) { + auto window = platform->create_window("Wayland Test Window", 100, 100, 400, 300); + EXPECT_NE(window, nullptr); + + if (window) { + // Test window positioning + platform->set_window_position(window.get(), 200, 200); + EXPECT_EQ(window->getX(), 200); + EXPECT_EQ(window->getY(), 200); + + // Test window sizing + platform->set_window_size(window.get(), 500, 400); + EXPECT_EQ(window->getWidth(), 500); + EXPECT_EQ(window->getHeight(), 400); + + // Test window focusing + platform->focus_window(window.get()); + + // Test window destruction + platform->destroy_window(window.get()); + } + } +} + +TEST_F(WaylandPlatformTest, DecorationControls) { + if (platform->initialize()) { + auto window = platform->create_window("Wayland Test Window", 100, 100, 400, 300); + EXPECT_NE(window, nullptr); + + if (window) { + // Test decoration toggling + platform->set_window_decorations(window.get(), true); + EXPECT_TRUE(platform->get_window_decorations(window.get())); + + platform->set_window_decorations(window.get(), false); + EXPECT_FALSE(platform->get_window_decorations(window.get())); + + // Test border color + platform->set_window_border_color(window.get(), 255, 0, 0); + + // Test border width + platform->set_window_border_width(window.get(), 5); + + platform->destroy_window(window.get()); + } + } +} + +TEST_F(WaylandPlatformTest, EventPolling) { + if (platform->initialize()) { + std::vector<Event> events; + bool result = platform->poll_events(events); + + // Should not crash, even if no events are available + EXPECT_TRUE(result || events.empty()); + } +} + +TEST_F(WaylandPlatformTest, InputHandling) { + if (platform->initialize()) { + // Test keyboard grabbing + platform->grab_keyboard(); + platform->ungrab_keyboard(); + + // Test pointer grabbing + platform->grab_pointer(); + platform->ungrab_pointer(); + } +} + +TEST_F(WaylandPlatformTest, XWaylandIntegration) { + if (platform->initialize()) { + // Test XWayland surface handling + // This would involve creating XWayland surfaces and testing their management + // For now, we just test that the platform doesn't crash + EXPECT_TRUE(true); + } +} + +TEST_F(WaylandPlatformTest, LayerShellSupport) { + if (platform->initialize()) { + // Test layer shell surface creation and management + // This would involve creating layer shell surfaces for panels, notifications, etc. + // For now, we just test that the platform doesn't crash + EXPECT_TRUE(true); + } +} + +TEST_F(WaylandPlatformTest, DecorationProtocol) { + if (platform->initialize()) { + auto window = platform->create_window("Wayland Test Window", 100, 100, 400, 300); + EXPECT_NE(window, nullptr); + + if (window) { + // Test zxdg-decoration protocol + platform->set_window_decorations(window.get(), true); + + // Test decoration mode switching + platform->set_window_decorations(window.get(), false); + platform->set_window_decorations(window.get(), true); + + platform->destroy_window(window.get()); + } + } +} + +TEST_F(WaylandPlatformTest, MultipleWindows) { + if (platform->initialize()) { + std::vector<std::unique_ptr<Window>> windows; + + // Create multiple windows + for (int i = 0; i < 3; ++i) { + auto window = platform->create_window( + "Wayland Test Window " + std::to_string(i), + 100 + i * 50, 100 + i * 50, + 400, 300 + ); + EXPECT_NE(window, nullptr); + windows.push_back(std::move(window)); + } + + // Test that all windows exist + EXPECT_EQ(windows.size(), 3); + + // Clean up + for (auto& window : windows) { + platform->destroy_window(window.get()); + } + } +} + +TEST_F(WaylandPlatformTest, ErrorHandling) { + // Test with invalid window + Window* invalid_window = nullptr; + + // These should not crash + platform->set_window_decorations(invalid_window, true); + platform->set_window_border_color(invalid_window, 255, 0, 0); + platform->set_window_border_width(invalid_window, 5); + platform->get_window_decorations(invalid_window); +} + +TEST_F(WaylandPlatformTest, Shutdown) { + if (platform->initialize()) { + // Should not crash on shutdown + platform->shutdown(); + } +} + +int main(int argc, char **argv) { + ::testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} |
