blob: 89e920a88586d068624e7294dd4bff7e7cc87760 [file] [log] [blame]
humper@google.com75e3ca12013-04-08 21:44:11 +00001/*
2 * Copyright 2013 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 */
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +00007
humper@google.com75e3ca12013-04-08 21:44:11 +00008#include "SkError.h"
9#include "SkPath.h"
10#include "SkRect.h"
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +000011#include "Test.h"
humper@google.com75e3ca12013-04-08 21:44:11 +000012
commit-bot@chromium.orgc5e57bd2013-09-19 22:11:38 +000013typedef struct {
14 skiatest::Reporter *fReporter;
15 unsigned int *fIntPointer;
16} ErrorContext;
17
humper@google.com75e3ca12013-04-08 21:44:11 +000018#define CHECK(errcode) \
19 REPORTER_ASSERT( reporter, (err = SkGetLastError()) == errcode); \
20 if (err != kNoError_SkError) \
21 { \
humper@google.com75e3ca12013-04-08 21:44:11 +000022 SkClearLastError(); \
23 }
skia.committer@gmail.com32840172013-04-09 07:01:27 +000024
humper@google.com8e029e62013-04-08 21:54:58 +000025static void cb(SkError err, void *context) {
commit-bot@chromium.orgc5e57bd2013-09-19 22:11:38 +000026 ErrorContext *context_ptr = static_cast<ErrorContext *>(context);
27 REPORTER_ASSERT( context_ptr->fReporter, (*(context_ptr->fIntPointer) == 0xdeadbeef) );
humper@google.com75e3ca12013-04-08 21:44:11 +000028}
29
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +000030DEF_TEST(Error, reporter) {
humper@google.com75e3ca12013-04-08 21:44:11 +000031 SkError err;
skia.committer@gmail.comf91e3d42013-09-20 07:01:33 +000032
commit-bot@chromium.orgc5e57bd2013-09-19 22:11:38 +000033 unsigned int test_value = 0xdeadbeef;
34 ErrorContext context;
35 context.fReporter = reporter;
36 context.fIntPointer = &test_value;
skia.committer@gmail.comf91e3d42013-09-20 07:01:33 +000037
commit-bot@chromium.orgc5e57bd2013-09-19 22:11:38 +000038 SkSetErrorCallback(cb, &context);
skia.committer@gmail.com32840172013-04-09 07:01:27 +000039
humper@google.com75e3ca12013-04-08 21:44:11 +000040 CHECK(kNoError_SkError);
skia.committer@gmail.com32840172013-04-09 07:01:27 +000041
humper@google.com75e3ca12013-04-08 21:44:11 +000042 SkRect r = SkRect::MakeWH(50, 100);
43 CHECK(kNoError_SkError);
44
45 SkPath path;
46 path.addRect(r);
47 CHECK(kNoError_SkError);
skia.committer@gmail.com32840172013-04-09 07:01:27 +000048
humper@google.com75e3ca12013-04-08 21:44:11 +000049 path.addRoundRect(r, 10, 10);
50 CHECK(kNoError_SkError);
51
52 // should trigger the default error callback, which just prints to the screen.
53 path.addRoundRect(r, -10, -10);
54 CHECK(kInvalidArgument_SkError);
55 CHECK(kNoError_SkError);
56
humper@google.com75e3ca12013-04-08 21:44:11 +000057 // should trigger *our* callback.
58 path.addRoundRect(r, -10, -10);
59 CHECK(kInvalidArgument_SkError);
60 CHECK(kNoError_SkError);
humper@google.com75e3ca12013-04-08 21:44:11 +000061}