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.
|
|
|
|
*/
|
2011-06-01 12:42:36 +00:00
|
|
|
utils#include "SampleCode.h"
|
2008-12-17 15:59:43 +00:00
|
|
|
#include "SkView.h"
|
|
|
|
#include "SkCanvas.h"
|
|
|
|
|
|
|
|
#include "test.h"
|
|
|
|
|
2011-05-15 04:08:24 +00:00
|
|
|
namespace skiatest {
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2011-05-15 04:08:24 +00:00
|
|
|
class MyReporter : public Reporter {
|
|
|
|
protected:
|
|
|
|
virtual void onStart(Test* test) {}
|
|
|
|
virtual void onReport(const char desc[], Reporter::Result result) {
|
|
|
|
SkASSERT(Reporter::kPassed == result);
|
|
|
|
}
|
|
|
|
virtual void onEnd(Test* test) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
class Iter {
|
2008-12-17 15:59:43 +00:00
|
|
|
public:
|
2011-05-15 04:08:24 +00:00
|
|
|
Iter(Reporter* r) : fReporter(r) {
|
|
|
|
r->ref();
|
|
|
|
fReg = TestRegistry::Head();
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2011-05-15 04:08:24 +00:00
|
|
|
~Iter() {
|
|
|
|
fReporter->unref();
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2011-05-15 04:08:24 +00:00
|
|
|
Test* next() {
|
|
|
|
if (fReg) {
|
|
|
|
TestRegistry::Factory fact = fReg->factory();
|
|
|
|
fReg = fReg->next();
|
|
|
|
Test* test = fact(NULL);
|
|
|
|
test->setReporter(fReporter);
|
|
|
|
return test;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2011-05-15 04:08:24 +00:00
|
|
|
static int Count() {
|
|
|
|
const TestRegistry* reg = TestRegistry::Head();
|
|
|
|
int count = 0;
|
|
|
|
while (reg) {
|
|
|
|
count += 1;
|
|
|
|
reg = reg->next();
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2011-05-15 04:08:24 +00:00
|
|
|
private:
|
|
|
|
Reporter* fReporter;
|
|
|
|
const TestRegistry* fReg;
|
|
|
|
};
|
|
|
|
}
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2011-05-15 04:08:24 +00:00
|
|
|
class TestsView : public SkView {
|
|
|
|
public:
|
2012-08-23 18:19:56 +00:00
|
|
|
TestsView() {}
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// overrides from SkEventSink
|
|
|
|
virtual bool onQuery(SkEvent* evt) {
|
|
|
|
if (SampleCode::TitleQ(*evt)) {
|
|
|
|
SampleCode::TitleR(evt, "Tests");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return this->INHERITED::onQuery(evt);
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
void drawBG(SkCanvas* canvas) {
|
|
|
|
canvas->drawColor(SK_ColorWHITE);
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual void onDraw(SkCanvas* canvas) {
|
|
|
|
this->drawBG(canvas);
|
2011-05-15 04:08:24 +00:00
|
|
|
|
|
|
|
skiatest::MyReporter reporter;
|
|
|
|
skiatest::Iter iter(&reporter);
|
|
|
|
skiatest::Test* test;
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2011-05-15 04:08:24 +00:00
|
|
|
while ((test = iter.next()) != NULL) {
|
|
|
|
test->run();
|
|
|
|
SkDELETE(test);
|
2008-12-17 15:59:43 +00:00
|
|
|
}
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual SkView::Click* onFindClickHandler(SkScalar x, SkScalar y) {
|
|
|
|
this->inval(NULL);
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
return this->INHERITED::onFindClickHandler(x, y);
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual bool onClick(Click* click) {
|
|
|
|
this->inval(NULL);
|
|
|
|
return this->INHERITED::onClick(click);
|
|
|
|
}
|
|
|
|
|
2012-08-23 18:19:56 +00:00
|
|
|
virtual bool handleKey(SkKey key) {
|
2008-12-17 15:59:43 +00:00
|
|
|
this->inval(NULL);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef SkView INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static SkView* MyFactory() { return new TestsView; }
|
|
|
|
static SkViewRegister reg(MyFactory);
|
|
|
|
|