aboutsummaryrefslogtreecommitdiff
path: root/tests/test_wayland_platform.cc
blob: 728c1b15be1ed6784a09a529bc854cc92b40f7c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
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();
}