blob: 2d1e2e9db2250397d8fda67f118906d1ca15a843 [file] [log] [blame]
Chris Craikb565df12015-10-05 13:00:52 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#ifndef TEST_UTILS_H
17#define TEST_UTILS_H
18
Chris Craik76caecf2015-11-02 19:17:45 -080019#include <DeviceInfo.h>
Chris Craik161f54b2015-11-05 11:08:52 -080020#include <DisplayList.h>
Chris Craikb565df12015-10-05 13:00:52 -070021#include <Matrix.h>
Chris Craik0a24b142015-10-19 17:10:19 -070022#include <Rect.h>
Chris Craikb565df12015-10-05 13:00:52 -070023#include <RenderNode.h>
Chris Craik0a24b142015-10-19 17:10:19 -070024#include <renderstate/RenderState.h>
25#include <renderthread/RenderThread.h>
26#include <Snapshot.h>
Chris Craikb565df12015-10-05 13:00:52 -070027
Chris Craik161f54b2015-11-05 11:08:52 -080028#if HWUI_NEW_OPS
29#include <RecordedOp.h>
John Reck16c9d6a2015-11-17 15:51:08 -080030#include <RecordingCanvas.h>
Chris Craik161f54b2015-11-05 11:08:52 -080031#else
32#include <DisplayListOp.h>
John Reck16c9d6a2015-11-17 15:51:08 -080033#include <DisplayListCanvas.h>
Chris Craik161f54b2015-11-05 11:08:52 -080034#endif
35
Chris Craikb565df12015-10-05 13:00:52 -070036#include <memory>
37
38namespace android {
39namespace uirenderer {
40
John Reck16c9d6a2015-11-17 15:51:08 -080041#if HWUI_NEW_OPS
42typedef RecordingCanvas TestCanvas;
43#else
44typedef DisplayListCanvas TestCanvas;
45#endif
46
Chris Craikb565df12015-10-05 13:00:52 -070047#define EXPECT_MATRIX_APPROX_EQ(a, b) \
48 EXPECT_TRUE(TestUtils::matricesAreApproxEqual(a, b))
49
Chris Craik6fe991e52015-10-20 09:39:42 -070050#define EXPECT_RECT_APPROX_EQ(a, b) \
51 EXPECT_TRUE(MathUtils::areEqual(a.left, b.left) \
52 && MathUtils::areEqual(a.top, b.top) \
53 && MathUtils::areEqual(a.right, b.right) \
54 && MathUtils::areEqual(a.bottom, b.bottom));
55
Chris Craik7435eb12016-01-07 17:41:40 -080056#define EXPECT_CLIP_RECT(expRect, clipStatePtr) \
57 EXPECT_NE(nullptr, (clipStatePtr)) << "Op is unclipped"; \
58 if ((clipStatePtr)->mode == ClipMode::Rectangle) { \
59 EXPECT_EQ((expRect), reinterpret_cast<const ClipRect*>(clipStatePtr)->rect); \
60 } else { \
61 ADD_FAILURE() << "ClipState not a rect"; \
62 }
Chris Craik98787e62015-11-13 10:55:30 -080063/**
64 * Like gtest's TEST, but runs on the RenderThread, and 'renderThread' is passed, in top level scope
65 * (for e.g. accessing its RenderState)
66 */
67#define RENDERTHREAD_TEST(test_case_name, test_name) \
68 class test_case_name##_##test_name##_RenderThreadTest { \
69 public: \
70 static void doTheThing(renderthread::RenderThread& renderThread); \
71 }; \
72 TEST(test_case_name, test_name) { \
73 TestUtils::runOnRenderThread(test_case_name##_##test_name##_RenderThreadTest::doTheThing); \
74 }; \
75 void test_case_name##_##test_name##_RenderThreadTest::doTheThing(renderthread::RenderThread& renderThread)
76
Chris Craikb565df12015-10-05 13:00:52 -070077class TestUtils {
78public:
Chris Craik76ace112015-10-29 12:46:19 -070079 class SignalingDtor {
80 public:
81 SignalingDtor()
82 : mSignal(nullptr) {}
83 SignalingDtor(int* signal)
84 : mSignal(signal) {}
85 void setSignal(int* signal) {
86 mSignal = signal;
87 }
88 ~SignalingDtor() {
89 if (mSignal) {
90 (*mSignal)++;
91 }
92 }
93 private:
94 int* mSignal;
95 };
96
Chris Craikb565df12015-10-05 13:00:52 -070097 static bool matricesAreApproxEqual(const Matrix4& a, const Matrix4& b) {
98 for (int i = 0; i < 16; i++) {
99 if (!MathUtils::areEqual(a[i], b[i])) {
100 return false;
101 }
102 }
103 return true;
104 }
105
106 static std::unique_ptr<Snapshot> makeSnapshot(const Matrix4& transform, const Rect& clip) {
107 std::unique_ptr<Snapshot> snapshot(new Snapshot());
Chris Craika2a70722015-12-17 12:58:24 -0800108 snapshot->clip(clip, SkRegion::kReplace_Op); // store clip first, so it isn't transformed
Chris Craikb565df12015-10-05 13:00:52 -0700109 *(snapshot->transform) = transform;
110 return snapshot;
111 }
112
Chris Craik15c3f192015-12-03 12:16:56 -0800113 static SkBitmap createSkBitmap(int width, int height,
114 SkColorType colorType = kN32_SkColorType) {
Chris Craikddf22152015-10-14 17:42:47 -0700115 SkBitmap bitmap;
John Reck16c9d6a2015-11-17 15:51:08 -0800116 SkImageInfo info = SkImageInfo::Make(width, height,
Chris Craik15c3f192015-12-03 12:16:56 -0800117 colorType, kPremul_SkAlphaType);
Chris Craik0a24b142015-10-19 17:10:19 -0700118 bitmap.setInfo(info);
119 bitmap.allocPixels(info);
Chris Craikddf22152015-10-14 17:42:47 -0700120 return bitmap;
121 }
122
Chris Craikd2dfd8f2015-12-16 14:27:20 -0800123 static sp<DeferredLayerUpdater> createTextureLayerUpdater(
124 renderthread::RenderThread& renderThread, uint32_t width, uint32_t height,
Chris Craik243e85b2016-03-25 15:26:11 -0700125 const SkMatrix& transform);
Chris Craikd2dfd8f2015-12-16 14:27:20 -0800126
Chris Craikb565df12015-10-05 13:00:52 -0700127 template<class CanvasType>
Chris Craik003cc3d2015-10-16 10:24:55 -0700128 static std::unique_ptr<DisplayList> createDisplayList(int width, int height,
Chris Craikb565df12015-10-05 13:00:52 -0700129 std::function<void(CanvasType& canvas)> canvasCallback) {
130 CanvasType canvas(width, height);
131 canvasCallback(canvas);
Chris Craik003cc3d2015-10-16 10:24:55 -0700132 return std::unique_ptr<DisplayList>(canvas.finishRecording());
Chris Craikb565df12015-10-05 13:00:52 -0700133 }
134
Chris Craikd3daa312015-11-06 10:59:56 -0800135 static sp<RenderNode> createNode(int left, int top, int right, int bottom,
Chris Craik8d1f2122015-11-24 16:40:09 -0800136 std::function<void(RenderProperties& props, TestCanvas& canvas)> setup) {
Chris Craik9fded232015-11-11 16:42:34 -0800137#if HWUI_NULL_GPU
Chris Craik76caecf2015-11-02 19:17:45 -0800138 // if RenderNodes are being sync'd/used, device info will be needed, since
139 // DeviceInfo::maxTextureSize() affects layer property
140 DeviceInfo::initialize();
Chris Craik9fded232015-11-11 16:42:34 -0800141#endif
Chris Craik76caecf2015-11-02 19:17:45 -0800142
Chris Craikb565df12015-10-05 13:00:52 -0700143 sp<RenderNode> node = new RenderNode();
John Reck16c9d6a2015-11-17 15:51:08 -0800144 RenderProperties& props = node->mutateStagingProperties();
145 props.setLeftTopRightBottom(left, top, right, bottom);
146 if (setup) {
147 TestCanvas canvas(props.getWidth(), props.getHeight());
148 setup(props, canvas);
149 node->setStagingDisplayList(canvas.finishRecording());
Chris Craik0b7e8242015-10-28 16:50:44 -0700150 }
John Reck16c9d6a2015-11-17 15:51:08 -0800151 node->setPropertyFieldsDirty(0xFFFFFFFF);
Chris Craik0b7e8242015-10-28 16:50:44 -0700152 return node;
153 }
Chris Craikb565df12015-10-05 13:00:52 -0700154
John Reck16c9d6a2015-11-17 15:51:08 -0800155 static void recordNode(RenderNode& node,
156 std::function<void(TestCanvas&)> contentCallback) {
157 TestCanvas canvas(node.stagingProperties().getWidth(),
158 node.stagingProperties().getHeight());
159 contentCallback(canvas);
160 node.setStagingDisplayList(canvas.finishRecording());
Chris Craikb565df12015-10-05 13:00:52 -0700161 }
162
Chris Craik8d1f2122015-11-24 16:40:09 -0800163 /**
164 * Forces a sync of a tree of RenderNode, such that every descendant will have its staging
165 * properties and DisplayList moved to the render copies.
166 *
167 * Note: does not check dirtiness bits, so any non-staging DisplayLists will be discarded.
168 * For this reason, this should generally only be called once on a tree.
169 */
Chris Craik161f54b2015-11-05 11:08:52 -0800170 static void syncHierarchyPropertiesAndDisplayList(sp<RenderNode>& node) {
171 syncHierarchyPropertiesAndDisplayListImpl(node.get());
Chris Craikb565df12015-10-05 13:00:52 -0700172 }
Chris Craik0a24b142015-10-19 17:10:19 -0700173
John Reck7db5ffb2016-01-15 13:17:09 -0800174 static std::vector<sp<RenderNode>> createSyncedNodeList(sp<RenderNode>& node) {
175 TestUtils::syncHierarchyPropertiesAndDisplayList(node);
176 std::vector<sp<RenderNode>> vec;
177 vec.emplace_back(node);
178 return vec;
179 }
180
Chris Craik0b7e8242015-10-28 16:50:44 -0700181 typedef std::function<void(renderthread::RenderThread& thread)> RtCallback;
Chris Craik0a24b142015-10-19 17:10:19 -0700182
183 class TestTask : public renderthread::RenderTask {
184 public:
185 TestTask(RtCallback rtCallback)
186 : rtCallback(rtCallback) {}
187 virtual ~TestTask() {}
John Recke5da4ef2016-01-14 12:34:46 -0800188 virtual void run() override;
Chris Craik0a24b142015-10-19 17:10:19 -0700189 RtCallback rtCallback;
190 };
191
192 /**
193 * NOTE: requires surfaceflinger to run, otherwise this method will wait indefinitely.
194 */
195 static void runOnRenderThread(RtCallback rtCallback) {
196 TestTask task(rtCallback);
197 renderthread::RenderThread::getInstance().queueAndWait(&task);
198 }
John Reck16c9d6a2015-11-17 15:51:08 -0800199
John Reck38e0c322015-11-10 12:19:17 -0800200 static bool isRenderThreadRunning() {
201 return renderthread::RenderThread::hasInstance();
202 }
203
John Reck16c9d6a2015-11-17 15:51:08 -0800204 static SkColor interpolateColor(float fraction, SkColor start, SkColor end);
205
Chris Craike8c3c812016-02-05 20:10:50 -0800206 static void layoutTextUnscaled(const SkPaint& paint, const char* text,
207 std::vector<glyph_t>* outGlyphs, std::vector<float>* outPositions,
208 float* outTotalAdvance, Rect* outBounds);
209
Derek Sollenberger79abbf22016-03-24 11:07:19 -0400210 static void drawUtf8ToCanvas(Canvas* canvas, const char* text,
Chris Craik42a54072015-11-24 11:41:54 -0800211 const SkPaint& paint, float x, float y);
Chris Craika1717272015-11-19 13:02:43 -0800212
Derek Sollenberger79abbf22016-03-24 11:07:19 -0400213 static void drawUtf8ToCanvas(Canvas* canvas, const char* text,
Chris Craikd7448e62015-12-15 10:34:36 -0800214 const SkPaint& paint, const SkPath& path);
215
Derek Sollenberger79abbf22016-03-24 11:07:19 -0400216 static std::unique_ptr<uint16_t[]> asciiToUtf16(const char* str);
sergeyvdccca442016-03-21 15:38:21 -0700217
Chris Craik161f54b2015-11-05 11:08:52 -0800218private:
219 static void syncHierarchyPropertiesAndDisplayListImpl(RenderNode* node) {
220 node->syncProperties();
221 node->syncDisplayList();
222 auto displayList = node->getDisplayList();
223 if (displayList) {
224 for (auto&& childOp : displayList->getChildren()) {
225 syncHierarchyPropertiesAndDisplayListImpl(childOp->renderNode);
226 }
227 }
228 }
229
Chris Craikb565df12015-10-05 13:00:52 -0700230}; // class TestUtils
231
232} /* namespace uirenderer */
233} /* namespace android */
234
235#endif /* TEST_UTILS_H */