summaryrefslogtreecommitdiff
path: root/services/surfaceflinger/tests/RefreshRateOverlay_test.cpp
blob: 05858bf8394ed356682293b780900eb39989e12c (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
/*
 * Copyright 2020 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <thread>

#include <gtest/gtest.h>

#include <gui/SurfaceComposerClient.h>
#include <private/gui/ComposerService.h>

static constexpr int kRefreshRateOverlayCode = 1034;
static constexpr int kRefreshRateOverlayEnable = 1;
static constexpr int kRefreshRateOverlayDisable = 0;
static constexpr int kRefreshRateOverlayQuery = 2;

// These values must match the ones we used for developer options in
// com.android.settings.development.ShowRefreshRatePreferenceController
static_assert(kRefreshRateOverlayCode == 1034);
static_assert(kRefreshRateOverlayEnable == 1);
static_assert(kRefreshRateOverlayDisable == 0);
static_assert(kRefreshRateOverlayQuery == 2);

namespace android {

namespace {
void sendCommandToSf(int command, Parcel& reply) {
    sp<ISurfaceComposer> sf(ComposerService::getComposerService());
    Parcel request;
    request.writeInterfaceToken(String16("android.ui.ISurfaceComposer"));
    request.writeInt32(command);
    ASSERT_EQ(NO_ERROR,
              IInterface::asBinder(sf)->transact(kRefreshRateOverlayCode, request, &reply));
}

bool isOverlayEnabled() {
    Parcel reply;
    sendCommandToSf(kRefreshRateOverlayQuery, reply);
    return reply.readBool();
}

void waitForOverlay(bool enabled) {
    static constexpr auto kTimeout = std::chrono::nanoseconds(1s);
    static constexpr auto kIterations = 10;
    for (int i = 0; i < kIterations; i++) {
        if (enabled == isOverlayEnabled()) {
            return;
        }
        std::this_thread::sleep_for(kTimeout / kIterations);
    }
}

void toggleOverlay(bool enabled) {
    if (enabled == isOverlayEnabled()) {
        return;
    }

    Parcel reply;
    const auto command = enabled ? kRefreshRateOverlayEnable : kRefreshRateOverlayDisable;
    sendCommandToSf(command, reply);
    waitForOverlay(enabled);
    ASSERT_EQ(enabled, isOverlayEnabled());
}

} // namespace

TEST(RefreshRateOverlayTest, enableOverlay) {
    toggleOverlay(true);
}

TEST(RefreshRateOverlayTest, disableOverlay) {
    toggleOverlay(false);
}

TEST(RefreshRateOverlayTest, enableAndDisableOverlay) {
    toggleOverlay(true);
    toggleOverlay(false);

    toggleOverlay(true);
    toggleOverlay(false);
}

} // namespace android