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 "SkString.h"
|
|
|
|
#include "SkTRegistry.h"
|
2013-04-22 16:43:07 +00:00
|
|
|
#include "SkTypes.h"
|
2009-02-27 16:24:51 +00:00
|
|
|
|
2016-04-05 19:59:06 +00:00
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
#include "GrContextFactory.h"
|
|
|
|
#else
|
2016-03-31 01:56:19 +00:00
|
|
|
namespace sk_gpu_test {
|
2013-02-04 16:13:32 +00:00
|
|
|
class GrContextFactory;
|
2016-04-05 19:59:06 +00:00
|
|
|
class ContextInfo;
|
2016-03-31 17:59:06 +00:00
|
|
|
class GLTestContext;
|
2016-03-31 01:56:19 +00:00
|
|
|
} // namespace sk_gpu_test
|
Generate list of GPU contexts outside SurfaceTest tests
Add support for feeding the tests with contexts directly to the unit
test framework.
This fixes the problem where tests are more complex than needed just in
order to run the test code with multiple backends.
Also makes it possible to change the logic how contexts are
created. Instead of direct numbering, the different testable contexts
may be generated from filtered cross-product of context options. For
example: currently NVPR is a type of context. However, it could be also
an on/off feature of any context. In order to test this kind of context,
the enumeration can not be just of context type. It's simpler
to move the enumeration out of the tests.
A test targeting both normal and GPU backends would look like:
static void test_obj_behavior(skiatest::Reporter* reporter,
SkObj* obj, [other params] ) {
... test with obj and param ..
}
DEF_TEST(ObjBehavior, reporter) {
for (auto& object : generate_object) {
for (auto& other_param : generate_other_variant) {
test_obj_behavior(reporter, object, other_param);
}
}
}
#if SK_SUPPORT_GPU
DEF_GPUTEST_FOR_ALL_CONTEXTS(ObjBehavior_Gpu, reporter, context) {
for (auto& object : generate_gpu_object) {
for (auto& other_param : generate_other_variant) {
test_obj_behavior(reporter, object, other_param);
}
}
}
#endif
Uses the feature in SurfaceTests as an example.
Moves SkSurface -related tests from ImageTest to SurfaceTest.
BUG=skia:2992
Review URL: https://codereview.chromium.org/1446453003
2015-11-20 21:32:24 +00:00
|
|
|
class GrContext;
|
2016-04-05 19:59:06 +00:00
|
|
|
#endif
|
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
|
|
|
|
2015-01-20 17:30:20 +00:00
|
|
|
SkString GetTmpDir();
|
|
|
|
|
|
|
|
struct Failure {
|
|
|
|
Failure(const char* f, int l, const char* c, const SkString& m)
|
|
|
|
: fileName(f), lineNo(l), condition(c), message(m) {}
|
|
|
|
const char* fileName;
|
|
|
|
int lineNo;
|
|
|
|
const char* condition;
|
|
|
|
SkString message;
|
|
|
|
SkString toString() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Reporter : SkNoncopyable {
|
|
|
|
public:
|
|
|
|
virtual ~Reporter() {}
|
|
|
|
virtual void bumpTestCount();
|
|
|
|
virtual void reportFailed(const skiatest::Failure&) = 0;
|
|
|
|
virtual bool allowExtendedTest() const;
|
|
|
|
virtual bool verbose() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define REPORT_FAILURE(reporter, cond, message) \
|
|
|
|
reporter->reportFailed(skiatest::Failure(__FILE__, __LINE__, cond, message))
|
|
|
|
|
2016-03-31 01:56:19 +00:00
|
|
|
typedef void (*TestProc)(skiatest::Reporter*, sk_gpu_test::GrContextFactory*);
|
2015-01-20 17:30:20 +00:00
|
|
|
|
|
|
|
struct Test {
|
|
|
|
Test(const char* n, bool g, TestProc p) : name(n), needsGpu(g), proc(p) {}
|
|
|
|
const char* name;
|
|
|
|
bool needsGpu;
|
|
|
|
TestProc proc;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef SkTRegistry<Test> TestRegistry;
|
2014-01-14 21:04:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Use the following macros to make use of the skiatest classes, e.g.
|
|
|
|
|
|
|
|
#include "Test.h"
|
|
|
|
|
|
|
|
DEF_TEST(TestName, reporter) {
|
|
|
|
...
|
|
|
|
REPORTER_ASSERT(reporter, x == 15);
|
|
|
|
...
|
|
|
|
REPORTER_ASSERT_MESSAGE(reporter, x == 15, "x should be 15");
|
|
|
|
...
|
|
|
|
if (x != 15) {
|
|
|
|
ERRORF(reporter, "x should be 15, but is %d", x);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
...
|
|
|
|
}
|
|
|
|
*/
|
2016-04-06 21:02:39 +00:00
|
|
|
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
using GrContextFactoryContextType = sk_gpu_test::GrContextFactory::ContextType;
|
|
|
|
#else
|
|
|
|
using GrContextFactoryContextType = int;
|
|
|
|
#endif
|
2016-04-05 19:59:06 +00:00
|
|
|
|
|
|
|
typedef void GrContextTestFn(Reporter*, const sk_gpu_test::ContextInfo&);
|
2016-04-06 21:02:39 +00:00
|
|
|
typedef bool GrContextTypeFilterFn(GrContextFactoryContextType);
|
|
|
|
|
|
|
|
extern bool IsGLContextType(GrContextFactoryContextType);
|
2016-04-11 21:21:33 +00:00
|
|
|
extern bool IsVulkanContextType(GrContextFactoryContextType);
|
2016-04-06 21:02:39 +00:00
|
|
|
extern bool IsRenderingGLContextType(GrContextFactoryContextType);
|
|
|
|
extern bool IsNullGLContextType(GrContextFactoryContextType);
|
2016-04-05 19:59:06 +00:00
|
|
|
|
2016-04-06 21:02:39 +00:00
|
|
|
void RunWithGPUTestContexts(GrContextTestFn*, GrContextTypeFilterFn*,
|
|
|
|
Reporter*, sk_gpu_test::GrContextFactory*);
|
Change SkTime::GetMSecs to double; ensure values stored in SkMSec do not overflow.
The following are currently unused in Android, Google3, Chromium, and Mozilla:
- SkEvent
- SkTime::GetMSecs
- SK_TIME_FACTOR (also unused in Skia)
- SkAutoTime
I left uses of SkMSec more-or-less intact for SkEvent, SkAnimator, and SkInterpolator. SkInterpolator is used in Chromium, so I did not want to change the API. The views/ and animator/ code is crufty, so it didn't seem worthwhile to refactor it. Instead, I added SkEvent::GetMSecsSinceStartup, which is likely to be adequate for use in SampleApp.
I also left SkMSec where it is used to measure a duration rather than a timestamp. With the exception of SkMovie, which is used in Android, all of the uses appear to measure the execution time of a piece of code, which I would hope does not exceed 2^31 milliseconds.
Added skiatest::Timer to support a common idiom in tests where we want to measure the wallclock time in integer milliseconds. (Not used in tests/PathOpsSkpClipTest.cpp because it redefines things in Test.h.)
Removed tabs in tests/StrokerTest.cpp.
BUG=skia:4632
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1811613004
Review URL: https://codereview.chromium.org/1811613004
2016-03-25 19:59:53 +00:00
|
|
|
|
|
|
|
/** Timer provides wall-clock duration since its creation. */
|
|
|
|
class Timer {
|
|
|
|
public:
|
|
|
|
/** Starts the timer. */
|
|
|
|
Timer();
|
|
|
|
|
|
|
|
/** Nanoseconds since creation. */
|
|
|
|
double elapsedNs() const;
|
|
|
|
|
|
|
|
/** Milliseconds since creation. */
|
|
|
|
double elapsedMs() const;
|
|
|
|
|
|
|
|
/** Milliseconds since creation as an integer.
|
|
|
|
Behavior is undefined for durations longer than SK_MSecMax.
|
|
|
|
*/
|
|
|
|
SkMSec elapsedMsInt() const;
|
|
|
|
private:
|
|
|
|
double fStartNanos;
|
|
|
|
};
|
|
|
|
|
2015-01-20 17:30:20 +00:00
|
|
|
} // namespace skiatest
|
2009-02-27 16:24:51 +00:00
|
|
|
|
2015-01-20 17:30:20 +00:00
|
|
|
#define REPORTER_ASSERT(r, cond) \
|
|
|
|
do { \
|
|
|
|
if (!(cond)) { \
|
|
|
|
REPORT_FAILURE(r, #cond, SkString()); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define REPORTER_ASSERT_MESSAGE(r, cond, message) \
|
|
|
|
do { \
|
|
|
|
if (!(cond)) { \
|
|
|
|
REPORT_FAILURE(r, #cond, SkString(message)); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define ERRORF(r, ...) \
|
|
|
|
do { \
|
|
|
|
REPORT_FAILURE(r, "", SkStringPrintf(__VA_ARGS__)); \
|
|
|
|
} while (0)
|
|
|
|
|
2016-02-25 01:59:16 +00:00
|
|
|
#define INFOF(REPORTER, ...) \
|
|
|
|
do { \
|
|
|
|
if ((REPORTER)->verbose()) { \
|
|
|
|
SkDebugf(__VA_ARGS__); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2016-03-31 01:56:19 +00:00
|
|
|
#define DEF_TEST(name, reporter) \
|
|
|
|
static void test_##name(skiatest::Reporter*, sk_gpu_test::GrContextFactory*); \
|
|
|
|
skiatest::TestRegistry name##TestRegistry( \
|
|
|
|
skiatest::Test(#name, false, test_##name)); \
|
|
|
|
void test_##name(skiatest::Reporter* reporter, sk_gpu_test::GrContextFactory*)
|
2015-01-20 17:30:20 +00:00
|
|
|
|
Generate list of GPU contexts outside SurfaceTest tests
Add support for feeding the tests with contexts directly to the unit
test framework.
This fixes the problem where tests are more complex than needed just in
order to run the test code with multiple backends.
Also makes it possible to change the logic how contexts are
created. Instead of direct numbering, the different testable contexts
may be generated from filtered cross-product of context options. For
example: currently NVPR is a type of context. However, it could be also
an on/off feature of any context. In order to test this kind of context,
the enumeration can not be just of context type. It's simpler
to move the enumeration out of the tests.
A test targeting both normal and GPU backends would look like:
static void test_obj_behavior(skiatest::Reporter* reporter,
SkObj* obj, [other params] ) {
... test with obj and param ..
}
DEF_TEST(ObjBehavior, reporter) {
for (auto& object : generate_object) {
for (auto& other_param : generate_other_variant) {
test_obj_behavior(reporter, object, other_param);
}
}
}
#if SK_SUPPORT_GPU
DEF_GPUTEST_FOR_ALL_CONTEXTS(ObjBehavior_Gpu, reporter, context) {
for (auto& object : generate_gpu_object) {
for (auto& other_param : generate_other_variant) {
test_obj_behavior(reporter, object, other_param);
}
}
}
#endif
Uses the feature in SurfaceTests as an example.
Moves SkSurface -related tests from ImageTest to SurfaceTest.
BUG=skia:2992
Review URL: https://codereview.chromium.org/1446453003
2015-11-20 21:32:24 +00:00
|
|
|
|
2016-04-05 19:59:06 +00:00
|
|
|
#define DEF_GPUTEST(name, reporter, factory) \
|
|
|
|
static void test_##name(skiatest::Reporter*, sk_gpu_test::GrContextFactory*); \
|
|
|
|
skiatest::TestRegistry name##TestRegistry( \
|
|
|
|
skiatest::Test(#name, true, test_##name)); \
|
2016-03-31 01:56:19 +00:00
|
|
|
void test_##name(skiatest::Reporter* reporter, sk_gpu_test::GrContextFactory* factory)
|
2014-01-14 21:04:37 +00:00
|
|
|
|
2016-04-11 21:40:50 +00:00
|
|
|
#define DEF_GPUTEST_FOR_CONTEXTS(name, context_filter, reporter, context_info) \
|
|
|
|
static void test_##name(skiatest::Reporter*, \
|
|
|
|
const sk_gpu_test::ContextInfo& context_info); \
|
|
|
|
static void test_gpu_contexts_##name(skiatest::Reporter* reporter, \
|
|
|
|
sk_gpu_test::GrContextFactory* factory) { \
|
|
|
|
skiatest::RunWithGPUTestContexts(test_##name, context_filter, reporter, factory); \
|
|
|
|
} \
|
|
|
|
skiatest::TestRegistry name##TestRegistry( \
|
|
|
|
skiatest::Test(#name, true, test_gpu_contexts_##name)); \
|
|
|
|
void test_##name(skiatest::Reporter* reporter, \
|
2016-04-05 19:59:06 +00:00
|
|
|
const sk_gpu_test::ContextInfo& context_info)
|
|
|
|
|
2016-04-11 21:40:50 +00:00
|
|
|
#define DEF_GPUTEST_FOR_ALL_CONTEXTS(name, reporter, context_info) \
|
|
|
|
DEF_GPUTEST_FOR_CONTEXTS(name, nullptr, reporter, context_info)
|
2016-04-12 16:59:58 +00:00
|
|
|
#define DEF_GPUTEST_FOR_RENDERING_CONTEXTS(name, reporter, context_info) \
|
|
|
|
DEF_GPUTEST_FOR_CONTEXTS(name, sk_gpu_test::GrContextFactory::IsRenderingContext, \
|
|
|
|
reporter, context_info)
|
2016-04-06 21:02:39 +00:00
|
|
|
#define DEF_GPUTEST_FOR_ALL_GL_CONTEXTS(name, reporter, context_info) \
|
|
|
|
DEF_GPUTEST_FOR_CONTEXTS(name, &skiatest::IsGLContextType, reporter, context_info)
|
|
|
|
#define DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(name, reporter, context_info) \
|
|
|
|
DEF_GPUTEST_FOR_CONTEXTS(name, &skiatest::IsRenderingGLContextType, reporter, context_info)
|
|
|
|
#define DEF_GPUTEST_FOR_NULLGL_CONTEXT(name, reporter, context_info) \
|
|
|
|
DEF_GPUTEST_FOR_CONTEXTS(name, &skiatest::IsNullGLContextType, reporter, context_info)
|
2016-04-11 21:21:33 +00:00
|
|
|
#define DEF_GPUTEST_FOR_VULKAN_CONTEXT(name, reporter, context_info) \
|
|
|
|
DEF_GPUTEST_FOR_CONTEXTS(name, &skiatest::IsVulkanContextType, reporter, context_info)
|
Generate list of GPU contexts outside SurfaceTest tests
Add support for feeding the tests with contexts directly to the unit
test framework.
This fixes the problem where tests are more complex than needed just in
order to run the test code with multiple backends.
Also makes it possible to change the logic how contexts are
created. Instead of direct numbering, the different testable contexts
may be generated from filtered cross-product of context options. For
example: currently NVPR is a type of context. However, it could be also
an on/off feature of any context. In order to test this kind of context,
the enumeration can not be just of context type. It's simpler
to move the enumeration out of the tests.
A test targeting both normal and GPU backends would look like:
static void test_obj_behavior(skiatest::Reporter* reporter,
SkObj* obj, [other params] ) {
... test with obj and param ..
}
DEF_TEST(ObjBehavior, reporter) {
for (auto& object : generate_object) {
for (auto& other_param : generate_other_variant) {
test_obj_behavior(reporter, object, other_param);
}
}
}
#if SK_SUPPORT_GPU
DEF_GPUTEST_FOR_ALL_CONTEXTS(ObjBehavior_Gpu, reporter, context) {
for (auto& object : generate_gpu_object) {
for (auto& other_param : generate_other_variant) {
test_obj_behavior(reporter, object, other_param);
}
}
}
#endif
Uses the feature in SurfaceTests as an example.
Moves SkSurface -related tests from ImageTest to SurfaceTest.
BUG=skia:2992
Review URL: https://codereview.chromium.org/1446453003
2015-11-20 21:32:24 +00:00
|
|
|
|
2016-04-27 14:45:18 +00:00
|
|
|
#define REQUIRE_PDF_DOCUMENT(TEST_NAME, REPORTER) \
|
|
|
|
do { \
|
|
|
|
SkDynamicMemoryWStream testStream; \
|
|
|
|
sk_sp<SkDocument> testDoc(SkDocument::MakePDF(&testStream)); \
|
|
|
|
if (!testDoc) { \
|
|
|
|
INFOF(REPORTER, "PDF disabled; %s test skipped.", #TEST_NAME); \
|
|
|
|
return; \
|
|
|
|
} \
|
2015-08-11 20:35:12 +00:00
|
|
|
} while (false)
|
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
#endif
|