2011-07-28 14:26:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2009-02-27 16:24:51 +00:00
|
|
|
#ifndef skiatest_Test_DEFINED
|
|
|
|
#define skiatest_Test_DEFINED
|
|
|
|
|
|
|
|
#include "SkRefCnt.h"
|
|
|
|
#include "SkString.h"
|
|
|
|
#include "SkTRegistry.h"
|
2013-04-11 12:33:23 +00:00
|
|
|
#include "SkThread.h"
|
2009-02-27 16:24:51 +00:00
|
|
|
|
2013-02-04 16:13:32 +00:00
|
|
|
class GrContextFactory;
|
2011-08-16 15:45:58 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
namespace skiatest {
|
2009-04-02 16:59:40 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
class Test;
|
|
|
|
|
|
|
|
class Reporter : public SkRefCnt {
|
|
|
|
public:
|
2012-08-16 14:58:06 +00:00
|
|
|
SK_DECLARE_INST_COUNT(Reporter)
|
2009-02-27 16:24:51 +00:00
|
|
|
Reporter();
|
|
|
|
|
|
|
|
enum Result {
|
|
|
|
kPassed, // must begin with 0
|
|
|
|
kFailed,
|
|
|
|
/////
|
|
|
|
kLastResult = kFailed
|
|
|
|
};
|
2009-04-02 16:59:40 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
void resetReporting();
|
2013-04-11 12:33:23 +00:00
|
|
|
void bumpTestCount() { sk_atomic_inc(&fTestCount); }
|
2009-02-27 16:24:51 +00:00
|
|
|
int countTests() const { return fTestCount; }
|
|
|
|
int countResults(Result r) {
|
|
|
|
SkASSERT((unsigned)r <= kLastResult);
|
|
|
|
return fResultCount[r];
|
|
|
|
}
|
|
|
|
|
|
|
|
void startTest(Test*);
|
|
|
|
void report(const char testDesc[], Result);
|
|
|
|
void endTest(Test*);
|
2013-04-10 15:57:31 +00:00
|
|
|
virtual bool allowExtendedTest() const { return false; }
|
2009-04-02 16:59:40 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
// helpers for tests
|
|
|
|
void assertTrue(bool cond, const char desc[]) {
|
|
|
|
if (!cond) {
|
|
|
|
this->report(desc, kFailed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void assertFalse(bool cond, const char desc[]) {
|
|
|
|
if (cond) {
|
|
|
|
this->report(desc, kFailed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void reportFailed(const char desc[]) {
|
|
|
|
this->report(desc, kFailed);
|
|
|
|
}
|
|
|
|
void reportFailed(const SkString& desc) {
|
|
|
|
this->report(desc.c_str(), kFailed);
|
|
|
|
}
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2009-04-09 04:06:54 +00:00
|
|
|
bool getCurrSuccess() const {
|
|
|
|
return fCurrTestSuccess;
|
|
|
|
}
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
protected:
|
|
|
|
virtual void onStart(Test*) {}
|
|
|
|
virtual void onReport(const char desc[], Result) {}
|
|
|
|
virtual void onEnd(Test*) {}
|
2009-04-02 16:59:40 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
private:
|
|
|
|
Test* fCurrTest;
|
|
|
|
int fTestCount;
|
|
|
|
int fResultCount[kLastResult+1];
|
2009-04-09 04:06:54 +00:00
|
|
|
bool fCurrTestSuccess;
|
2009-04-02 16:59:40 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
typedef SkRefCnt INHERITED;
|
|
|
|
};
|
2009-04-02 16:59:40 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
class Test {
|
2009-04-02 16:59:40 +00:00
|
|
|
public:
|
2009-02-27 16:24:51 +00:00
|
|
|
Test();
|
|
|
|
virtual ~Test();
|
|
|
|
|
|
|
|
Reporter* getReporter() const { return fReporter; }
|
|
|
|
void setReporter(Reporter*);
|
2009-04-02 16:59:40 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
const char* getName();
|
2009-04-09 04:06:54 +00:00
|
|
|
bool run(); // returns true on success
|
2009-04-02 16:59:40 +00:00
|
|
|
|
2013-03-20 13:48:20 +00:00
|
|
|
static const SkString& GetTmpDir();
|
|
|
|
|
|
|
|
static const SkString& GetResourcePath();
|
2013-02-25 20:24:24 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
protected:
|
|
|
|
virtual void onGetName(SkString*) = 0;
|
|
|
|
virtual void onRun(Reporter*) = 0;
|
2009-04-02 16:59:40 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
private:
|
|
|
|
Reporter* fReporter;
|
|
|
|
SkString fName;
|
|
|
|
};
|
|
|
|
|
2011-08-16 15:45:58 +00:00
|
|
|
class GpuTest : public Test{
|
|
|
|
public:
|
2013-02-04 16:13:32 +00:00
|
|
|
GpuTest() : Test() {}
|
|
|
|
static GrContextFactory* GetGrContextFactory();
|
|
|
|
static void DestroyContexts();
|
2011-08-16 15:45:58 +00:00
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
typedef SkTRegistry<Test*, void*> TestRegistry;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define REPORTER_ASSERT(r, cond) \
|
|
|
|
do { \
|
|
|
|
if (!(cond)) { \
|
|
|
|
SkString desc; \
|
2012-02-22 21:00:42 +00:00
|
|
|
desc.printf("%s:%d: %s", __FILE__, __LINE__, #cond); \
|
2009-02-27 16:24:51 +00:00
|
|
|
r->reportFailed(desc); \
|
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
|
2012-02-22 21:00:42 +00:00
|
|
|
#define REPORTER_ASSERT_MESSAGE(r, cond, message) \
|
|
|
|
do { \
|
|
|
|
if (!(cond)) { \
|
|
|
|
SkString desc; \
|
|
|
|
desc.printf("%s %s:%d: %s", message, __FILE__, __LINE__, #cond); \
|
|
|
|
r->reportFailed(desc); \
|
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
|
|
|
|
#endif
|