blob: c6a2693b17338830869685dc033a6a883a91f9ab [file] [log] [blame]
epoger@google.com37269602013-01-19 04:21:27 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7#ifndef gm_expectations_DEFINED
8#define gm_expectations_DEFINED
9
10#include "gm.h"
epoger@google.com84a18022013-02-01 20:39:15 +000011#include "SkBitmap.h"
epoger@google.com908f5832013-04-12 02:23:55 +000012#include "SkBitmapHasher.h"
epoger@google.comd271d242013-02-13 18:14:48 +000013#include "SkData.h"
commit-bot@chromium.orge3bb3bc2013-12-03 18:16:48 +000014#include "SkJSONCPP.h"
epoger@google.com37269602013-01-19 04:21:27 +000015#include "SkOSFile.h"
16#include "SkRefCnt.h"
epoger@google.comd271d242013-02-13 18:14:48 +000017#include "SkStream.h"
epoger@google.com37269602013-01-19 04:21:27 +000018#include "SkTArray.h"
19
epoger@google.com37269602013-01-19 04:21:27 +000020
21namespace skiagm {
22
scroggo@google.com6843bdb2013-05-08 19:14:23 +000023 void gm_fprintf(FILE *stream, const char format[], ...);
epoger@google.com5efdd0c2013-03-13 14:18:40 +000024
epoger@google.com76c913d2013-04-26 15:06:44 +000025 Json::Value CreateJsonTree(Json::Value expectedResults,
26 Json::Value actualResultsFailed,
27 Json::Value actualResultsFailureIgnored,
28 Json::Value actualResultsNoComparison,
29 Json::Value actualResultsSucceeded);
30
epoger@google.com37269602013-01-19 04:21:27 +000031 /**
epoger@google.comd4993ff2013-05-24 14:33:28 +000032 * The digest of a GM test result.
33 *
34 * Currently, this is always a uint64_t hash digest of an SkBitmap...
35 * but we will add other flavors soon.
36 */
37 class GmResultDigest {
38 public:
39 /**
40 * Create a ResultDigest representing an actual image result.
41 */
commit-bot@chromium.org1d5bbb22013-10-14 14:15:28 +000042 explicit GmResultDigest(const SkBitmap &bitmap);
epoger@google.comd4993ff2013-05-24 14:33:28 +000043
44 /**
45 * Create a ResultDigest representing an allowed result
46 * checksum within JSON expectations file, in the form
47 * ["bitmap-64bitMD5", 12345].
48 */
commit-bot@chromium.org1d5bbb22013-10-14 14:15:28 +000049 explicit GmResultDigest(const Json::Value &jsonTypeValuePair);
epoger@google.comd4993ff2013-05-24 14:33:28 +000050
51 /**
52 * Returns true if this GmResultDigest was fully and successfully
53 * created.
54 */
55 bool isValid() const;
56
57 /**
58 * Returns true if this and other GmResultDigest could
59 * represent identical results.
60 */
61 bool equals(const GmResultDigest &other) const;
62
63 /**
64 * Returns a JSON type/value pair representing this result,
65 * such as ["bitmap-64bitMD5", 12345].
66 */
67 Json::Value asJsonTypeValuePair() const;
68
epoger@google.com6f7f14d2013-06-19 18:28:31 +000069 /**
70 * Returns the hashtype, such as "bitmap-64bitMD5", as an SkString.
71 */
72 SkString getHashType() const;
73
74 /**
75 * Returns the hash digest value, such as "12345", as an SkString.
76 */
77 SkString getDigestValue() const;
78
epoger@google.comd4993ff2013-05-24 14:33:28 +000079 private:
80 bool fIsValid; // always check this first--if it's false, other fields are meaningless
81 uint64_t fHashDigest;
82 };
83
84 /**
epoger@google.com6f7f14d2013-06-19 18:28:31 +000085 * Encapsulates an SkBitmap and its GmResultDigest, guaranteed to keep them in sync.
86 */
87 class BitmapAndDigest {
88 public:
commit-bot@chromium.org1d5bbb22013-10-14 14:15:28 +000089 explicit BitmapAndDigest(const SkBitmap &bitmap) : fBitmap(bitmap), fDigest(bitmap) {}
epoger@google.com6f7f14d2013-06-19 18:28:31 +000090
91 const SkBitmap fBitmap;
92 const GmResultDigest fDigest;
93 };
94
95 /**
epoger@google.comd4993ff2013-05-24 14:33:28 +000096 * Test expectations (allowed image results, etc.)
epoger@google.com37269602013-01-19 04:21:27 +000097 */
98 class Expectations {
99 public:
100 /**
101 * No expectations at all.
epoger@google.com37269602013-01-19 04:21:27 +0000102 */
commit-bot@chromium.org1d5bbb22013-10-14 14:15:28 +0000103 explicit Expectations(bool ignoreFailure=kDefaultIgnoreFailure);
epoger@google.com37269602013-01-19 04:21:27 +0000104
105 /**
epoger@google.com84a18022013-02-01 20:39:15 +0000106 * Expect exactly one image (appropriate for the case when we
epoger@google.com37269602013-01-19 04:21:27 +0000107 * are comparing against a single PNG file).
epoger@google.com37269602013-01-19 04:21:27 +0000108 */
scroggo@google.com5187c432013-10-22 00:42:46 +0000109 explicit Expectations(const SkBitmap& bitmap, bool ignoreFailure=kDefaultIgnoreFailure);
110
111 /**
112 * Expect exactly one image, whose digest has already been computed.
113 */
114 explicit Expectations(const BitmapAndDigest& bitmapAndDigest);
epoger@google.com37269602013-01-19 04:21:27 +0000115
116 /**
epoger@google.comd271d242013-02-13 18:14:48 +0000117 * Create Expectations from a JSON element as found within the
118 * kJsonKey_ExpectedResults section.
119 *
120 * It's fine if the jsonElement is null or empty; in that case, we just
121 * don't have any expectations.
122 */
commit-bot@chromium.org1d5bbb22013-10-14 14:15:28 +0000123 explicit Expectations(Json::Value jsonElement);
epoger@google.comd271d242013-02-13 18:14:48 +0000124
125 /**
epoger@google.com37269602013-01-19 04:21:27 +0000126 * Returns true iff we want to ignore failed expectations.
127 */
128 bool ignoreFailure() const { return this->fIgnoreFailure; }
129
130 /**
epoger@google.comdefc4872013-09-19 06:18:27 +0000131 * Override default setting of fIgnoreFailure.
132 */
133 void setIgnoreFailure(bool val) { this->fIgnoreFailure = val; }
134
135 /**
epoger@google.comd4993ff2013-05-24 14:33:28 +0000136 * Returns true iff there are no allowed results.
epoger@google.com37269602013-01-19 04:21:27 +0000137 */
epoger@google.comd4993ff2013-05-24 14:33:28 +0000138 bool empty() const { return this->fAllowedResultDigests.empty(); }
epoger@google.com37269602013-01-19 04:21:27 +0000139
140 /**
epoger@google.comd4993ff2013-05-24 14:33:28 +0000141 * Returns true iff resultDigest matches any allowed result,
epoger@google.com37269602013-01-19 04:21:27 +0000142 * regardless of fIgnoreFailure. (The caller can check
143 * that separately.)
144 */
epoger@google.comd4993ff2013-05-24 14:33:28 +0000145 bool match(GmResultDigest resultDigest) const;
epoger@google.com37269602013-01-19 04:21:27 +0000146
147 /**
epoger@google.com84a18022013-02-01 20:39:15 +0000148 * If this Expectation is based on a single SkBitmap, return a
149 * pointer to that SkBitmap. Otherwise (if the Expectation is
150 * empty, or if it was based on a list of checksums rather
151 * than a single bitmap), returns NULL.
152 */
153 const SkBitmap *asBitmap() const {
154 return (SkBitmap::kNo_Config == fBitmap.config()) ? NULL : &fBitmap;
155 }
156
157 /**
epoger@google.com76c913d2013-04-26 15:06:44 +0000158 * Return a JSON representation of the expectations.
epoger@google.com37269602013-01-19 04:21:27 +0000159 */
epoger@google.com76c913d2013-04-26 15:06:44 +0000160 Json::Value asJsonValue() const;
epoger@google.com37269602013-01-19 04:21:27 +0000161
162 private:
epoger@google.comd271d242013-02-13 18:14:48 +0000163 const static bool kDefaultIgnoreFailure = false;
164
epoger@google.comd4993ff2013-05-24 14:33:28 +0000165 SkTArray<GmResultDigest> fAllowedResultDigests;
epoger@google.com37269602013-01-19 04:21:27 +0000166 bool fIgnoreFailure;
epoger@google.com84a18022013-02-01 20:39:15 +0000167 SkBitmap fBitmap;
epoger@google.com37269602013-01-19 04:21:27 +0000168 };
169
170 /**
171 * Abstract source of Expectations objects for individual tests.
172 */
173 class ExpectationsSource : public SkRefCnt {
174 public:
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +0000175 SK_DECLARE_INST_COUNT(ExpectationsSource)
176
commit-bot@chromium.org1d5bbb22013-10-14 14:15:28 +0000177 virtual Expectations get(const char *testName) const = 0;
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +0000178
179 private:
180 typedef SkRefCnt INHERITED;
epoger@google.com37269602013-01-19 04:21:27 +0000181 };
182
183 /**
184 * Return Expectations based on individual image files on disk.
185 */
186 class IndividualImageExpectationsSource : public ExpectationsSource {
187 public:
188 /**
189 * Create an ExpectationsSource that will return Expectations based on
190 * image files found within rootDir.
191 *
192 * rootDir: directory under which to look for image files
193 * (this string will be copied to storage within this object)
epoger@google.com37269602013-01-19 04:21:27 +0000194 */
commit-bot@chromium.org1d5bbb22013-10-14 14:15:28 +0000195 explicit IndividualImageExpectationsSource(const char *rootDir) : fRootDir(rootDir) {}
epoger@google.com37269602013-01-19 04:21:27 +0000196
commit-bot@chromium.org1d5bbb22013-10-14 14:15:28 +0000197 Expectations get(const char *testName) const SK_OVERRIDE ;
epoger@google.com37269602013-01-19 04:21:27 +0000198
199 private:
200 const SkString fRootDir;
epoger@google.com37269602013-01-19 04:21:27 +0000201 };
202
epoger@google.comd271d242013-02-13 18:14:48 +0000203 /**
204 * Return Expectations based on JSON summary file.
205 */
206 class JsonExpectationsSource : public ExpectationsSource {
207 public:
208 /**
209 * Create an ExpectationsSource that will return Expectations based on
210 * a JSON file.
211 *
212 * jsonPath: path to JSON file to read
213 */
commit-bot@chromium.org1d5bbb22013-10-14 14:15:28 +0000214 explicit JsonExpectationsSource(const char *jsonPath);
epoger@google.comd271d242013-02-13 18:14:48 +0000215
commit-bot@chromium.org1d5bbb22013-10-14 14:15:28 +0000216 Expectations get(const char *testName) const SK_OVERRIDE;
epoger@google.comd271d242013-02-13 18:14:48 +0000217
218 private:
219
220 /**
221 * Read as many bytes as possible (up to maxBytes) from the stream into
222 * an SkData object.
223 *
224 * If the returned SkData contains fewer than maxBytes, then EOF has been
225 * reached and no more data would be available from subsequent calls.
226 * (If EOF has already been reached, then this call will return an empty
227 * SkData object immediately.)
228 *
229 * If there are fewer than maxBytes bytes available to read from the
230 * stream, but the stream has not been closed yet, this call will block
231 * until there are enough bytes to read or the stream has been closed.
232 *
233 * It is up to the caller to call unref() on the returned SkData object
234 * once the data is no longer needed, so that the underlying buffer will
235 * be freed. For example:
236 *
237 * {
238 * size_t maxBytes = 256;
239 * SkAutoDataUnref dataRef(readIntoSkData(stream, maxBytes));
240 * if (NULL != dataRef.get()) {
241 * size_t bytesActuallyRead = dataRef.get()->size();
242 * // use the data...
243 * }
244 * }
245 * // underlying buffer has been freed, thanks to auto unref
246 *
247 */
248 // TODO(epoger): Move this, into SkStream.[cpp|h] as attempted in
249 // https://codereview.appspot.com/7300071 ?
scroggo@google.com6843bdb2013-05-08 19:14:23 +0000250 // And maybe ReadFileIntoSkData() also?
251 static SkData* ReadIntoSkData(SkStream &stream, size_t maxBytes);
epoger@google.comd271d242013-02-13 18:14:48 +0000252
253 /**
scroggo@google.com6843bdb2013-05-08 19:14:23 +0000254 * Wrapper around ReadIntoSkData for files: reads the entire file into
epoger@google.comd271d242013-02-13 18:14:48 +0000255 * an SkData object.
256 */
scroggo@google.com6843bdb2013-05-08 19:14:23 +0000257 static SkData* ReadFileIntoSkData(SkFILEStream &stream) {
258 return ReadIntoSkData(stream, stream.getLength());
epoger@google.comd271d242013-02-13 18:14:48 +0000259 }
260
261 /**
262 * Read the file contents from jsonPath and parse them into jsonRoot.
263 *
264 * Returns true if successful.
265 */
scroggo@google.com6843bdb2013-05-08 19:14:23 +0000266 static bool Parse(const char *jsonPath, Json::Value *jsonRoot);
epoger@google.comd271d242013-02-13 18:14:48 +0000267
268 Json::Value fJsonRoot;
269 Json::Value fJsonExpectedResults;
270 };
271
epoger@google.com37269602013-01-19 04:21:27 +0000272}
273#endif