epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2011 Google Inc. |
| 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
| 7 | */ |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 8 | #ifndef skiatest_Test_DEFINED |
| 9 | #define skiatest_Test_DEFINED |
| 10 | |
| 11 | #include "SkRefCnt.h" |
| 12 | #include "SkString.h" |
| 13 | #include "SkTRegistry.h" |
caryclark@google.com | db60de7 | 2013-04-11 12:33:23 +0000 | [diff] [blame] | 14 | #include "SkThread.h" |
commit-bot@chromium.org | 0506b9d | 2013-04-22 16:43:07 +0000 | [diff] [blame] | 15 | #include "SkTypes.h" |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 16 | |
bsalomon@google.com | 67b915d | 2013-02-04 16:13:32 +0000 | [diff] [blame] | 17 | class GrContextFactory; |
bsalomon@google.com | a8e686e | 2011-08-16 15:45:58 +0000 | [diff] [blame] | 18 | |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 19 | namespace skiatest { |
reed@android.com | 80e39a7 | 2009-04-02 16:59:40 +0000 | [diff] [blame] | 20 | |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 21 | class Test; |
| 22 | |
| 23 | class Reporter : public SkRefCnt { |
| 24 | public: |
robertphillips@google.com | a22e211 | 2012-08-16 14:58:06 +0000 | [diff] [blame] | 25 | SK_DECLARE_INST_COUNT(Reporter) |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 26 | Reporter(); |
| 27 | |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 28 | int countTests() const { return fTestCount; } |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 29 | |
| 30 | void startTest(Test*); |
commit-bot@chromium.org | 1f79286 | 2013-06-18 20:50:34 +0000 | [diff] [blame] | 31 | void reportFailed(const SkString& desc); |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 32 | void endTest(Test*); |
commit-bot@chromium.org | c7e08bd | 2013-04-23 11:16:32 +0000 | [diff] [blame] | 33 | |
caryclark@google.com | d54e1e9 | 2013-04-10 15:57:31 +0000 | [diff] [blame] | 34 | virtual bool allowExtendedTest() const { return false; } |
caryclark@google.com | 07e97fc | 2013-07-08 17:17:02 +0000 | [diff] [blame] | 35 | virtual bool verbose() const { return false; } |
commit-bot@chromium.org | c7e08bd | 2013-04-23 11:16:32 +0000 | [diff] [blame] | 36 | virtual void bumpTestCount() { sk_atomic_inc(&fTestCount); } |
| 37 | |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 38 | protected: |
| 39 | virtual void onStart(Test*) {} |
commit-bot@chromium.org | 1f79286 | 2013-06-18 20:50:34 +0000 | [diff] [blame] | 40 | virtual void onReportFailed(const SkString& desc) {} |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 41 | virtual void onEnd(Test*) {} |
reed@android.com | 80e39a7 | 2009-04-02 16:59:40 +0000 | [diff] [blame] | 42 | |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 43 | private: |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 44 | int32_t fTestCount; |
reed@android.com | 80e39a7 | 2009-04-02 16:59:40 +0000 | [diff] [blame] | 45 | |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 46 | typedef SkRefCnt INHERITED; |
| 47 | }; |
reed@android.com | 80e39a7 | 2009-04-02 16:59:40 +0000 | [diff] [blame] | 48 | |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 49 | class Test { |
reed@android.com | 80e39a7 | 2009-04-02 16:59:40 +0000 | [diff] [blame] | 50 | public: |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 51 | Test(); |
| 52 | virtual ~Test(); |
| 53 | |
| 54 | Reporter* getReporter() const { return fReporter; } |
| 55 | void setReporter(Reporter*); |
reed@android.com | 80e39a7 | 2009-04-02 16:59:40 +0000 | [diff] [blame] | 56 | |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 57 | const char* getName(); |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 58 | void run(); |
| 59 | bool passed() const { return fPassed; } |
commit-bot@chromium.org | 0506b9d | 2013-04-22 16:43:07 +0000 | [diff] [blame] | 60 | SkMSec elapsedMs() const { return fElapsed; } |
reed@android.com | 80e39a7 | 2009-04-02 16:59:40 +0000 | [diff] [blame] | 61 | |
scroggo@google.com | c76218d | 2013-06-06 14:59:56 +0000 | [diff] [blame] | 62 | static SkString GetTmpDir(); |
djsollen@google.com | cb62650 | 2013-03-20 13:48:20 +0000 | [diff] [blame] | 63 | |
commit-bot@chromium.org | 5a47b09 | 2014-01-30 15:30:50 +0000 | [diff] [blame] | 64 | virtual bool isGPUTest() const { return false; } |
commit-bot@chromium.org | 0dc5bd1 | 2014-02-26 16:31:22 +0000 | [diff] [blame] | 65 | virtual void setGrContextFactory(GrContextFactory* factory) {} |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 66 | |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 67 | protected: |
| 68 | virtual void onGetName(SkString*) = 0; |
| 69 | virtual void onRun(Reporter*) = 0; |
reed@android.com | 80e39a7 | 2009-04-02 16:59:40 +0000 | [diff] [blame] | 70 | |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 71 | private: |
| 72 | Reporter* fReporter; |
| 73 | SkString fName; |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 74 | bool fPassed; |
commit-bot@chromium.org | 0506b9d | 2013-04-22 16:43:07 +0000 | [diff] [blame] | 75 | SkMSec fElapsed; |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 76 | }; |
| 77 | |
bsalomon@google.com | a8e686e | 2011-08-16 15:45:58 +0000 | [diff] [blame] | 78 | class GpuTest : public Test{ |
| 79 | public: |
commit-bot@chromium.org | 0dc5bd1 | 2014-02-26 16:31:22 +0000 | [diff] [blame] | 80 | GpuTest() : Test(), fGrContextFactory(NULL) {} |
| 81 | |
commit-bot@chromium.org | 5a47b09 | 2014-01-30 15:30:50 +0000 | [diff] [blame] | 82 | virtual bool isGPUTest() const { return true; } |
commit-bot@chromium.org | 0dc5bd1 | 2014-02-26 16:31:22 +0000 | [diff] [blame] | 83 | virtual void setGrContextFactory(GrContextFactory* factory) { |
| 84 | fGrContextFactory = factory; |
| 85 | } |
| 86 | |
| 87 | protected: |
| 88 | GrContextFactory* fGrContextFactory; // Unowned. |
bsalomon@google.com | a8e686e | 2011-08-16 15:45:58 +0000 | [diff] [blame] | 89 | }; |
| 90 | |
mtklein@google.com | bd6343b | 2013-09-04 17:20:18 +0000 | [diff] [blame] | 91 | typedef SkTRegistry<Test*(*)(void*)> TestRegistry; |
commit-bot@chromium.org | e2eac8b | 2014-01-14 21:04:37 +0000 | [diff] [blame] | 92 | } // namespace skiatest |
| 93 | |
| 94 | /* |
| 95 | Use the following macros to make use of the skiatest classes, e.g. |
| 96 | |
| 97 | #include "Test.h" |
| 98 | |
| 99 | DEF_TEST(TestName, reporter) { |
| 100 | ... |
| 101 | REPORTER_ASSERT(reporter, x == 15); |
| 102 | ... |
| 103 | REPORTER_ASSERT_MESSAGE(reporter, x == 15, "x should be 15"); |
| 104 | ... |
| 105 | if (x != 15) { |
| 106 | ERRORF(reporter, "x should be 15, but is %d", x); |
| 107 | return; |
| 108 | } |
| 109 | ... |
| 110 | } |
| 111 | */ |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 112 | |
halcanary@google.com | a9325fa | 2014-01-10 14:58:10 +0000 | [diff] [blame] | 113 | #define REPORTER_ASSERT(r, cond) \ |
| 114 | do { \ |
| 115 | if (!(cond)) { \ |
| 116 | SkString desc; \ |
| 117 | desc.printf("%s:%d\t%s", __FILE__, __LINE__, #cond); \ |
| 118 | r->reportFailed(desc); \ |
| 119 | } \ |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 120 | } while(0) |
| 121 | |
halcanary@google.com | a9325fa | 2014-01-10 14:58:10 +0000 | [diff] [blame] | 122 | #define REPORTER_ASSERT_MESSAGE(r, cond, message) \ |
| 123 | do { \ |
| 124 | if (!(cond)) { \ |
| 125 | SkString desc; \ |
| 126 | desc.printf("%s:%d\t%s: %s", __FILE__, __LINE__, \ |
| 127 | message, #cond); \ |
| 128 | r->reportFailed(desc); \ |
| 129 | } \ |
junov@chromium.org | 1cc8f6f | 2012-02-22 21:00:42 +0000 | [diff] [blame] | 130 | } while(0) |
| 131 | |
halcanary@google.com | a9325fa | 2014-01-10 14:58:10 +0000 | [diff] [blame] | 132 | #define ERRORF(reporter, ...) \ |
| 133 | do { \ |
| 134 | SkString desc; \ |
| 135 | desc.printf("%s:%d\t", __FILE__, __LINE__); \ |
| 136 | desc.appendf(__VA_ARGS__) ; \ |
| 137 | (reporter)->reportFailed(desc); \ |
| 138 | } while(0) |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 139 | |
tfarina | 9ea53f9 | 2014-06-24 06:50:39 -0700 | [diff] [blame] | 140 | #define DEF_TEST(name, reporter) \ |
| 141 | static void test_##name(skiatest::Reporter*); \ |
| 142 | namespace skiatest { \ |
| 143 | class name##Class : public Test { \ |
| 144 | public: \ |
| 145 | static Test* Factory(void*) { return SkNEW(name##Class); } \ |
| 146 | protected: \ |
| 147 | virtual void onGetName(SkString* name) SK_OVERRIDE { \ |
| 148 | name->set(#name); \ |
| 149 | } \ |
| 150 | virtual void onRun(Reporter* r) SK_OVERRIDE { test_##name(r); } \ |
| 151 | }; \ |
| 152 | static TestRegistry gReg_##name##Class(name##Class::Factory); \ |
| 153 | } \ |
| 154 | static void test_##name(skiatest::Reporter* reporter) |
commit-bot@chromium.org | e2eac8b | 2014-01-14 21:04:37 +0000 | [diff] [blame] | 155 | |
tfarina | 9ea53f9 | 2014-06-24 06:50:39 -0700 | [diff] [blame] | 156 | #define DEF_GPUTEST(name, reporter, factory) \ |
| 157 | static void test_##name(skiatest::Reporter*, GrContextFactory*); \ |
| 158 | namespace skiatest { \ |
| 159 | class name##Class : public GpuTest { \ |
| 160 | public: \ |
| 161 | static Test* Factory(void*) { return SkNEW(name##Class); } \ |
| 162 | protected: \ |
| 163 | virtual void onGetName(SkString* name) SK_OVERRIDE { \ |
| 164 | name->set(#name); \ |
| 165 | } \ |
| 166 | virtual void onRun(Reporter* r) SK_OVERRIDE { \ |
| 167 | test_##name(r, fGrContextFactory); \ |
| 168 | } \ |
| 169 | }; \ |
| 170 | static TestRegistry gReg_##name##Class(name##Class::Factory); \ |
| 171 | } \ |
| 172 | static void test_##name(skiatest::Reporter* reporter, GrContextFactory* factory) |
commit-bot@chromium.org | e2eac8b | 2014-01-14 21:04:37 +0000 | [diff] [blame] | 173 | |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 174 | #endif |