blob: d0147e1e4a0ed4bb947cf6ef4bb5b2e76ace51f2 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2011 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 */
tfarina880914c2014-06-09 12:05:34 -07007
reed@android.comed673312009-02-27 16:24:51 +00008#include "Test.h"
9
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +000010#include "SkCommandLineFlags.h"
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +000011#include "SkError.h"
commit-bot@chromium.org197845a2013-04-19 13:24:28 +000012#include "SkString.h"
13#include "SkTArray.h"
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +000014#include "SkTime.h"
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000015
16#if SK_SUPPORT_GPU
bsalomon@google.coma8e686e2011-08-16 15:45:58 +000017#include "GrContext.h"
tomhudson@google.com6bf38b52012-02-14 15:11:59 +000018#include "gl/SkNativeGLContext.h"
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000019#else
20class GrContext;
21#endif
bsalomon@google.coma8e686e2011-08-16 15:45:58 +000022
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +000023DEFINE_string2(tmpDir, t, NULL, "tmp directory for tests to use.");
24
reed@android.comed673312009-02-27 16:24:51 +000025using namespace skiatest;
26
commit-bot@chromium.org197845a2013-04-19 13:24:28 +000027Reporter::Reporter() : fTestCount(0) {
reed@android.comed673312009-02-27 16:24:51 +000028}
29
30void Reporter::startTest(Test* test) {
reed@android.comed673312009-02-27 16:24:51 +000031 this->onStart(test);
reed@android.comed673312009-02-27 16:24:51 +000032}
33
commit-bot@chromium.org1f792862013-06-18 20:50:34 +000034void Reporter::reportFailed(const SkString& desc) {
35 this->onReportFailed(desc);
reed@android.comed673312009-02-27 16:24:51 +000036}
37
38void Reporter::endTest(Test* test) {
reed@android.comed673312009-02-27 16:24:51 +000039 this->onEnd(test);
reed@android.comed673312009-02-27 16:24:51 +000040}
41
42///////////////////////////////////////////////////////////////////////////////
43
commit-bot@chromium.org197845a2013-04-19 13:24:28 +000044Test::Test() : fReporter(NULL), fPassed(true) {}
reed@android.comed673312009-02-27 16:24:51 +000045
46Test::~Test() {
reed@google.com82065d62011-02-07 15:30:46 +000047 SkSafeUnref(fReporter);
reed@android.comed673312009-02-27 16:24:51 +000048}
49
50void Test::setReporter(Reporter* r) {
51 SkRefCnt_SafeAssign(fReporter, r);
52}
53
54const char* Test::getName() {
55 if (fName.size() == 0) {
56 this->onGetName(&fName);
57 }
58 return fName.c_str();
59}
60
tfarina@chromium.org58674812014-01-21 23:39:22 +000061class LocalReporter : public Reporter {
62public:
63 explicit LocalReporter(Reporter* reporterToMimic) : fReporter(reporterToMimic) {}
commit-bot@chromium.org197845a2013-04-19 13:24:28 +000064
tfarina@chromium.org58674812014-01-21 23:39:22 +000065 int numFailures() const { return fFailures.count(); }
66 const SkString& failure(int i) const { return fFailures[i]; }
commit-bot@chromium.org197845a2013-04-19 13:24:28 +000067
tfarina@chromium.org58674812014-01-21 23:39:22 +000068protected:
69 virtual void onReportFailed(const SkString& desc) SK_OVERRIDE {
70 fFailures.push_back(desc);
71 }
commit-bot@chromium.org197845a2013-04-19 13:24:28 +000072
tfarina@chromium.org58674812014-01-21 23:39:22 +000073 // Proxy down to fReporter. We assume these calls are threadsafe.
74 virtual bool allowExtendedTest() const SK_OVERRIDE {
75 return fReporter->allowExtendedTest();
76 }
commit-bot@chromium.orge1c54292013-04-22 17:35:55 +000077
tfarina@chromium.org58674812014-01-21 23:39:22 +000078 virtual void bumpTestCount() SK_OVERRIDE {
79 fReporter->bumpTestCount();
80 }
commit-bot@chromium.orge1c54292013-04-22 17:35:55 +000081
tfarina@chromium.org58674812014-01-21 23:39:22 +000082 virtual bool verbose() const SK_OVERRIDE {
83 return fReporter->verbose();
84 }
caryclark@google.com8d0a5242013-07-16 16:11:16 +000085
tfarina@chromium.org58674812014-01-21 23:39:22 +000086private:
87 Reporter* fReporter; // Unowned.
88 SkTArray<SkString> fFailures;
89};
commit-bot@chromium.org197845a2013-04-19 13:24:28 +000090
91void Test::run() {
humper@google.com8dd94f02013-04-25 18:33:49 +000092 // Clear the Skia error callback before running any test, to ensure that tests
93 // don't have unintended side effects when running more than one.
94 SkSetErrorCallback( NULL, NULL );
95
commit-bot@chromium.org197845a2013-04-19 13:24:28 +000096 // Tell (likely shared) fReporter that this test has started.
reed@android.comed673312009-02-27 16:24:51 +000097 fReporter->startTest(this);
commit-bot@chromium.org197845a2013-04-19 13:24:28 +000098
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +000099 const SkMSec start = SkTime::GetMSecs();
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000100 // Run the test into a LocalReporter so we know if it's passed or failed without interference
101 // from other tests that might share fReporter.
commit-bot@chromium.orgc7e08bd2013-04-23 11:16:32 +0000102 LocalReporter local(fReporter);
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000103 this->onRun(&local);
tfarina@chromium.org58674812014-01-21 23:39:22 +0000104 fPassed = local.numFailures() == 0;
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000105 fElapsed = SkTime::GetMSecs() - start;
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000106
107 // Now tell fReporter about any failures and wrap up.
tfarina@chromium.org58674812014-01-21 23:39:22 +0000108 for (int i = 0; i < local.numFailures(); i++) {
commit-bot@chromium.org1f792862013-06-18 20:50:34 +0000109 fReporter->reportFailed(local.failure(i));
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000110 }
reed@android.comed673312009-02-27 16:24:51 +0000111 fReporter->endTest(this);
humper@google.com8dd94f02013-04-25 18:33:49 +0000112
reed@android.comed673312009-02-27 16:24:51 +0000113}
114
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +0000115SkString Test::GetTmpDir() {
116 const char* tmpDir = FLAGS_tmpDir.isEmpty() ? NULL : FLAGS_tmpDir[0];
117 return SkString(tmpDir);
djsollen@google.com0945bde2012-11-29 15:28:45 +0000118}