forked from jellyfin-archive/jellyfin-desktop-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_displaymanager.cpp
More file actions
229 lines (194 loc) · 6.53 KB
/
test_displaymanager.cpp
File metadata and controls
229 lines (194 loc) · 6.53 KB
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
226
227
228
229
#include <QtTest/QtTest>
#include "../src/display/DisplayManager.h"
#include "../src/settings/SettingsComponent.h"
#include "../src/settings/SettingsSection.h"
#include "../src/settings/SettingsValue.h"
// Implements the pure virtuals (and some helpers) to test DisplayManager logic.
class TestableDisplayManager : public DisplayManager
{
public:
explicit TestableDisplayManager() : DisplayManager(nullptr), m_currentMode(0) {}
bool setDisplayMode(int, int) override { return true; }
int getCurrentDisplayMode(int) override { return m_currentMode; }
int getMainDisplay() override { return 0; }
int getDisplayFromPoint(int, int) override { return 0; }
void setCurrentMode(int mode) { m_currentMode = mode; }
void addMode(int id, int w, int h, int bpp, float hz, bool interlaced)
{
auto mode = DMVideoModePtr::create();
mode->m_id = id;
mode->m_width = w;
mode->m_height = h;
mode->m_bitsPerPixel = bpp;
mode->m_refreshRate = hz;
mode->m_interlaced = interlaced;
mode->m_privId = id;
if (!m_displays.contains(0))
{
auto disp = DMDisplayPtr::create();
disp->m_id = 0;
disp->m_name = "TestDisplay";
disp->m_privId = 0;
m_displays[0] = disp;
}
m_displays[0]->m_videoModes[id] = mode;
}
private:
int m_currentMode;
};
class TestDisplayManager : public QObject
{
Q_OBJECT
private:
void setAvoid25_30(bool on)
{
auto* section = SettingsComponent::Get().getSection(SETTINGS_SECTION_VIDEO);
section->setValue("refreshrate.avoid_25hz_30hz", on);
}
private slots:
void initTestCase();
void testExactRefreshRateMatch();
void testPrefers60HzOver30HzForFilm();
void testCloseRefreshRateMatch();
void testNoMatchWithDifferentResolution();
void testInterlacedPreference();
void testCurrentModeBonusBreaksTie();
void testAvoid25And30Hz();
void testNoSuitableModeReturnsNegative();
void testFindBestMode();
void testMultipleRefreshRate();
};
// Helper function: Populates a DisplayManager with some typical display modes.
static void setupStandardModes(TestableDisplayManager& mgr)
{
// id, w, h, bpp, hz, interlaced
mgr.addMode(0, 1920, 1080, 32, 24.0f, false);
mgr.addMode(1, 1920, 1080, 32, 30.0f, false);
mgr.addMode(2, 1920, 1080, 32, 50.0f, false);
mgr.addMode(3, 1920, 1080, 32, 60.0f, false); // This will be set as currentMode (see below)
mgr.addMode(4, 1920, 1080, 32, 23.976f, false);
mgr.addMode(5, 1920, 1080, 32, 59.94f, false);
mgr.setCurrentMode(3);
}
void TestDisplayManager::initTestCase()
{
auto* section = new SettingsSection(SETTINGS_SECTION_VIDEO, PLATFORM_ANY, -1,
&SettingsComponent::Get());
auto* avoidSetting = new SettingsValue("refreshrate.avoid_25hz_30hz",
false, PLATFORM_ANY, section);
section->registerSetting(avoidSetting);
SettingsComponent::Get().registerSection(section);
}
void TestDisplayManager::testExactRefreshRateMatch()
{
TestableDisplayManager mgr;
setupStandardModes(mgr);
DMMatchMediaInfo match(24.0f, false);
int best = mgr.findBestMatch(0, match);
QCOMPARE(best, 0); // 24 hz mode
}
void TestDisplayManager::testPrefers60HzOver30HzForFilm()
{
// Prefer 60 hz for 30 fps content.
TestableDisplayManager mgr;
setupStandardModes(mgr);
DMMatchMediaInfo match(30.0f, false);
setAvoid25_30(true);
int best = mgr.findBestMatch(0, match);
QCOMPARE(best, 3);
setAvoid25_30(false);
}
void TestDisplayManager::testCloseRefreshRateMatch()
{
// Prefer 24hz for 23.976 fps content.
TestableDisplayManager mgr;
setupStandardModes(mgr);
DMMatchMediaInfo match(23.976f, false);
int best = mgr.findBestMatch(0, match);
QCOMPARE(best, 4);
}
void TestDisplayManager::testNoMatchWithDifferentResolution()
{
// Prefer 1080p over 720p, regardless of framerate.
TestableDisplayManager mgr;
mgr.addMode(0, 1920, 1080, 32, 60.0f, false);
mgr.addMode(1, 1280, 720, 32, 24.0f, false);
mgr.setCurrentMode(0);
DMMatchMediaInfo match(24.0f, false);
int best = mgr.findBestMatch(0, match);
QCOMPARE(best, 0);
}
void TestDisplayManager::testInterlacedPreference()
{
// Prefer interlaced mode for interlaced content.
TestableDisplayManager mgr;
mgr.addMode(0, 1920, 1080, 32, 50.0f, false);
mgr.addMode(1, 1920, 1080, 32, 50.0f, true);
mgr.setCurrentMode(0); // non-interlaced
DMMatchMediaInfo match(50.0f, true);
int best = mgr.findBestMatch(0, match);
QCOMPARE(best, 1);
}
void TestDisplayManager::testCurrentModeBonusBreaksTie()
{
// Prefer current mode when multiple identical modes available.
TestableDisplayManager mgr;
mgr.addMode(0, 1920, 1080, 32, 60.0f, false);
mgr.addMode(1, 1920, 1080, 32, 60.0f, false);
mgr.setCurrentMode(1);
DMMatchMediaInfo match(60.0f, false);
int best = mgr.findBestMatch(0, match);
QCOMPARE(best, 1);
}
void TestDisplayManager::testAvoid25And30Hz()
{
// Prefer 50 hz for 25 fps content when avoid25_30 is enabled.
TestableDisplayManager mgr;
mgr.addMode(0, 1920, 1080, 32, 25.0f, false);
mgr.addMode(1, 1920, 1080, 32, 50.0f, false);
mgr.setCurrentMode(1);
DMMatchMediaInfo match(25.0f, false);
setAvoid25_30(true);
int best = mgr.findBestMatch(0, match);
QCOMPARE(best, 1);
// Disabling avoid25_30 should produce the opposite result.
setAvoid25_30(false);
best = mgr.findBestMatch(0, match);
QCOMPARE(best, 0);
}
void TestDisplayManager::testNoSuitableModeReturnsNegative()
{
// No preference when resolution doesn't match content.
TestableDisplayManager mgr;
mgr.addMode(0, 1920, 1080, 32, 60.0f, false);
mgr.addMode(1, 1280, 720, 32, 24.0f, false);
mgr.setCurrentMode(0);
mgr.m_displays[0]->m_videoModes.remove(0);
DMMatchMediaInfo match(24.0f, false);
int best = mgr.findBestMatch(0, match);
QCOMPARE(best, -1);
}
void TestDisplayManager::testFindBestMode()
{
// Prefer greatest refresh rate, greatest resolution, and non-interlaced.
TestableDisplayManager mgr;
mgr.addMode(0, 1280, 720, 32, 60.0f, false);
mgr.addMode(1, 1920, 1080, 32, 60.0f, false);
mgr.addMode(2, 1920, 1080, 32, 30.0f, true);
mgr.addMode(3, 1920, 1080, 32, 60.0f, true);
int best = mgr.findBestMode(0);
QCOMPARE(best, 1);
}
void TestDisplayManager::testMultipleRefreshRate()
{
// Prefer exact multiple of fps rate.
TestableDisplayManager mgr;
mgr.addMode(0, 1920, 1080, 32, 47.952f, false);
mgr.addMode(1, 1920, 1080, 32, 60.0f, false);
mgr.setCurrentMode(1);
DMMatchMediaInfo match(23.976f, false);
int best = mgr.findBestMatch(0, match);
QCOMPARE(best, 0);
}
QTEST_APPLESS_MAIN(TestDisplayManager)
#include "test_displaymanager.moc"