| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 1 | /* |
| 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.com | 84a1802 | 2013-02-01 20:39:15 +0000 | [diff] [blame] | 11 | #include "SkBitmap.h" |
| epoger@google.com | 908f583 | 2013-04-12 02:23:55 +0000 | [diff] [blame] | 12 | #include "SkBitmapHasher.h" |
| epoger@google.com | d271d24 | 2013-02-13 18:14:48 +0000 | [diff] [blame] | 13 | #include "SkData.h" |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 14 | #include "SkOSFile.h" |
| 15 | #include "SkRefCnt.h" |
| epoger@google.com | d271d24 | 2013-02-13 18:14:48 +0000 | [diff] [blame] | 16 | #include "SkStream.h" |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 17 | #include "SkTArray.h" |
| 18 | |
| 19 | #ifdef SK_BUILD_FOR_WIN |
| 20 | // json includes xlocale which generates warning 4530 because we're compiling without |
| 21 | // exceptions; see https://code.google.com/p/skia/issues/detail?id=1067 |
| 22 | #pragma warning(push) |
| 23 | #pragma warning(disable : 4530) |
| 24 | #endif |
| epoger@google.com | d271d24 | 2013-02-13 18:14:48 +0000 | [diff] [blame] | 25 | #include "json/reader.h" |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 26 | #include "json/value.h" |
| 27 | #ifdef SK_BUILD_FOR_WIN |
| 28 | #pragma warning(pop) |
| 29 | #endif |
| 30 | |
| 31 | namespace skiagm { |
| 32 | |
| 33 | // The actual type we use to represent a checksum is hidden in here. |
| 34 | typedef Json::UInt64 Checksum; |
| 35 | static inline Json::Value asJsonValue(Checksum checksum) { |
| 36 | return checksum; |
| 37 | } |
| epoger@google.com | d271d24 | 2013-02-13 18:14:48 +0000 | [diff] [blame] | 38 | static inline Checksum asChecksum(Json::Value jsonValue) { |
| 39 | return jsonValue.asUInt64(); |
| 40 | } |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 41 | |
| scroggo@google.com | 6843bdb | 2013-05-08 19:14:23 +0000 | [diff] [blame^] | 42 | void gm_fprintf(FILE *stream, const char format[], ...); |
| epoger@google.com | 5efdd0c | 2013-03-13 14:18:40 +0000 | [diff] [blame] | 43 | |
| scroggo@google.com | 6843bdb | 2013-05-08 19:14:23 +0000 | [diff] [blame^] | 44 | SkString make_filename(const char path[], |
| 45 | const char renderModeDescriptor[], |
| 46 | const char *name, |
| 47 | const char suffix[]); |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 48 | |
| epoger@google.com | 76c913d | 2013-04-26 15:06:44 +0000 | [diff] [blame] | 49 | Json::Value ActualResultAsJsonValue(const SkHashDigest& result); |
| 50 | |
| 51 | Json::Value CreateJsonTree(Json::Value expectedResults, |
| 52 | Json::Value actualResultsFailed, |
| 53 | Json::Value actualResultsFailureIgnored, |
| 54 | Json::Value actualResultsNoComparison, |
| 55 | Json::Value actualResultsSucceeded); |
| 56 | |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 57 | /** |
| 58 | * Test expectations (allowed image checksums, etc.) |
| 59 | */ |
| 60 | class Expectations { |
| 61 | public: |
| 62 | /** |
| 63 | * No expectations at all. |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 64 | */ |
| epoger@google.com | 76c913d | 2013-04-26 15:06:44 +0000 | [diff] [blame] | 65 | Expectations(bool ignoreFailure=kDefaultIgnoreFailure); |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 66 | |
| 67 | /** |
| epoger@google.com | 84a1802 | 2013-02-01 20:39:15 +0000 | [diff] [blame] | 68 | * Expect exactly one image (appropriate for the case when we |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 69 | * are comparing against a single PNG file). |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 70 | */ |
| epoger@google.com | 76c913d | 2013-04-26 15:06:44 +0000 | [diff] [blame] | 71 | Expectations(const SkBitmap& bitmap, bool ignoreFailure=kDefaultIgnoreFailure); |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 72 | |
| 73 | /** |
| epoger@google.com | d271d24 | 2013-02-13 18:14:48 +0000 | [diff] [blame] | 74 | * Create Expectations from a JSON element as found within the |
| 75 | * kJsonKey_ExpectedResults section. |
| 76 | * |
| 77 | * It's fine if the jsonElement is null or empty; in that case, we just |
| 78 | * don't have any expectations. |
| 79 | */ |
| epoger@google.com | 76c913d | 2013-04-26 15:06:44 +0000 | [diff] [blame] | 80 | Expectations(Json::Value jsonElement); |
| epoger@google.com | d271d24 | 2013-02-13 18:14:48 +0000 | [diff] [blame] | 81 | |
| 82 | /** |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 83 | * Returns true iff we want to ignore failed expectations. |
| 84 | */ |
| 85 | bool ignoreFailure() const { return this->fIgnoreFailure; } |
| 86 | |
| 87 | /** |
| 88 | * Returns true iff there are no allowed checksums. |
| 89 | */ |
| epoger@google.com | 366a770 | 2013-05-07 15:51:54 +0000 | [diff] [blame] | 90 | bool empty() const { return this->fAllowedBitmapChecksums.empty(); } |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 91 | |
| 92 | /** |
| 93 | * Returns true iff actualChecksum matches any allowedChecksum, |
| 94 | * regardless of fIgnoreFailure. (The caller can check |
| 95 | * that separately.) |
| 96 | */ |
| epoger@google.com | 76c913d | 2013-04-26 15:06:44 +0000 | [diff] [blame] | 97 | bool match(Checksum actualChecksum) const; |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 98 | |
| 99 | /** |
| epoger@google.com | 84a1802 | 2013-02-01 20:39:15 +0000 | [diff] [blame] | 100 | * If this Expectation is based on a single SkBitmap, return a |
| 101 | * pointer to that SkBitmap. Otherwise (if the Expectation is |
| 102 | * empty, or if it was based on a list of checksums rather |
| 103 | * than a single bitmap), returns NULL. |
| 104 | */ |
| 105 | const SkBitmap *asBitmap() const { |
| 106 | return (SkBitmap::kNo_Config == fBitmap.config()) ? NULL : &fBitmap; |
| 107 | } |
| 108 | |
| 109 | /** |
| epoger@google.com | 76c913d | 2013-04-26 15:06:44 +0000 | [diff] [blame] | 110 | * Return a JSON representation of the expectations. |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 111 | */ |
| epoger@google.com | 76c913d | 2013-04-26 15:06:44 +0000 | [diff] [blame] | 112 | Json::Value asJsonValue() const; |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 113 | |
| 114 | private: |
| epoger@google.com | d271d24 | 2013-02-13 18:14:48 +0000 | [diff] [blame] | 115 | const static bool kDefaultIgnoreFailure = false; |
| 116 | |
| epoger@google.com | 366a770 | 2013-05-07 15:51:54 +0000 | [diff] [blame] | 117 | SkTArray<Checksum> fAllowedBitmapChecksums; |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 118 | bool fIgnoreFailure; |
| epoger@google.com | 84a1802 | 2013-02-01 20:39:15 +0000 | [diff] [blame] | 119 | SkBitmap fBitmap; |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 120 | }; |
| 121 | |
| 122 | /** |
| 123 | * Abstract source of Expectations objects for individual tests. |
| 124 | */ |
| 125 | class ExpectationsSource : public SkRefCnt { |
| 126 | public: |
| 127 | virtual Expectations get(const char *testName) = 0; |
| 128 | }; |
| 129 | |
| 130 | /** |
| 131 | * Return Expectations based on individual image files on disk. |
| 132 | */ |
| 133 | class IndividualImageExpectationsSource : public ExpectationsSource { |
| 134 | public: |
| 135 | /** |
| 136 | * Create an ExpectationsSource that will return Expectations based on |
| 137 | * image files found within rootDir. |
| 138 | * |
| 139 | * rootDir: directory under which to look for image files |
| 140 | * (this string will be copied to storage within this object) |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 141 | */ |
| epoger@google.com | b0f8b43 | 2013-04-10 18:46:25 +0000 | [diff] [blame] | 142 | IndividualImageExpectationsSource(const char *rootDir) : fRootDir(rootDir) {} |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 143 | |
| epoger@google.com | 76c913d | 2013-04-26 15:06:44 +0000 | [diff] [blame] | 144 | Expectations get(const char *testName) SK_OVERRIDE ; |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 145 | |
| 146 | private: |
| 147 | const SkString fRootDir; |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 148 | }; |
| 149 | |
| epoger@google.com | d271d24 | 2013-02-13 18:14:48 +0000 | [diff] [blame] | 150 | /** |
| 151 | * Return Expectations based on JSON summary file. |
| 152 | */ |
| 153 | class JsonExpectationsSource : public ExpectationsSource { |
| 154 | public: |
| 155 | /** |
| 156 | * Create an ExpectationsSource that will return Expectations based on |
| 157 | * a JSON file. |
| 158 | * |
| 159 | * jsonPath: path to JSON file to read |
| 160 | */ |
| epoger@google.com | 76c913d | 2013-04-26 15:06:44 +0000 | [diff] [blame] | 161 | JsonExpectationsSource(const char *jsonPath); |
| epoger@google.com | d271d24 | 2013-02-13 18:14:48 +0000 | [diff] [blame] | 162 | |
| epoger@google.com | 76c913d | 2013-04-26 15:06:44 +0000 | [diff] [blame] | 163 | Expectations get(const char *testName) SK_OVERRIDE; |
| epoger@google.com | d271d24 | 2013-02-13 18:14:48 +0000 | [diff] [blame] | 164 | |
| 165 | private: |
| 166 | |
| 167 | /** |
| 168 | * Read as many bytes as possible (up to maxBytes) from the stream into |
| 169 | * an SkData object. |
| 170 | * |
| 171 | * If the returned SkData contains fewer than maxBytes, then EOF has been |
| 172 | * reached and no more data would be available from subsequent calls. |
| 173 | * (If EOF has already been reached, then this call will return an empty |
| 174 | * SkData object immediately.) |
| 175 | * |
| 176 | * If there are fewer than maxBytes bytes available to read from the |
| 177 | * stream, but the stream has not been closed yet, this call will block |
| 178 | * until there are enough bytes to read or the stream has been closed. |
| 179 | * |
| 180 | * It is up to the caller to call unref() on the returned SkData object |
| 181 | * once the data is no longer needed, so that the underlying buffer will |
| 182 | * be freed. For example: |
| 183 | * |
| 184 | * { |
| 185 | * size_t maxBytes = 256; |
| 186 | * SkAutoDataUnref dataRef(readIntoSkData(stream, maxBytes)); |
| 187 | * if (NULL != dataRef.get()) { |
| 188 | * size_t bytesActuallyRead = dataRef.get()->size(); |
| 189 | * // use the data... |
| 190 | * } |
| 191 | * } |
| 192 | * // underlying buffer has been freed, thanks to auto unref |
| 193 | * |
| 194 | */ |
| 195 | // TODO(epoger): Move this, into SkStream.[cpp|h] as attempted in |
| 196 | // https://codereview.appspot.com/7300071 ? |
| scroggo@google.com | 6843bdb | 2013-05-08 19:14:23 +0000 | [diff] [blame^] | 197 | // And maybe ReadFileIntoSkData() also? |
| 198 | static SkData* ReadIntoSkData(SkStream &stream, size_t maxBytes); |
| epoger@google.com | d271d24 | 2013-02-13 18:14:48 +0000 | [diff] [blame] | 199 | |
| 200 | /** |
| scroggo@google.com | 6843bdb | 2013-05-08 19:14:23 +0000 | [diff] [blame^] | 201 | * Wrapper around ReadIntoSkData for files: reads the entire file into |
| epoger@google.com | d271d24 | 2013-02-13 18:14:48 +0000 | [diff] [blame] | 202 | * an SkData object. |
| 203 | */ |
| scroggo@google.com | 6843bdb | 2013-05-08 19:14:23 +0000 | [diff] [blame^] | 204 | static SkData* ReadFileIntoSkData(SkFILEStream &stream) { |
| 205 | return ReadIntoSkData(stream, stream.getLength()); |
| epoger@google.com | d271d24 | 2013-02-13 18:14:48 +0000 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | /** |
| 209 | * Read the file contents from jsonPath and parse them into jsonRoot. |
| 210 | * |
| 211 | * Returns true if successful. |
| 212 | */ |
| scroggo@google.com | 6843bdb | 2013-05-08 19:14:23 +0000 | [diff] [blame^] | 213 | static bool Parse(const char *jsonPath, Json::Value *jsonRoot); |
| epoger@google.com | d271d24 | 2013-02-13 18:14:48 +0000 | [diff] [blame] | 214 | |
| 215 | Json::Value fJsonRoot; |
| 216 | Json::Value fJsonExpectedResults; |
| 217 | }; |
| 218 | |
| epoger@google.com | 3726960 | 2013-01-19 04:21:27 +0000 | [diff] [blame] | 219 | } |
| 220 | #endif |