aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/RecordTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/RecordTest.cpp')
-rw-r--r--tests/RecordTest.cpp48
1 files changed, 48 insertions, 0 deletions
diff --git a/tests/RecordTest.cpp b/tests/RecordTest.cpp
new file mode 100644
index 0000000000..1214b1a5de
--- /dev/null
+++ b/tests/RecordTest.cpp
@@ -0,0 +1,48 @@
+#include "Test.h"
+
+#include "SkRecord.h"
+#include "SkRecords.h"
+
+// Adds the area of any DrawRect command it sees into area.
+class AreaSummer {
+public:
+ explicit AreaSummer(int* area) : fArea(area) {}
+
+ template <typename T> void operator()(const T&) { }
+
+private:
+ int* fArea;
+};
+template <> void AreaSummer::operator()(const SkRecords::DrawRect& record) {
+ *fArea += (int) (record.rect.width() * record.rect.height());
+}
+
+// Scales out the bottom-right corner of any DrawRect command it sees by 2x.
+struct Stretch {
+ template <typename T> void operator()(T*) {}
+};
+template <> void Stretch::operator()(SkRecords::DrawRect* record) {
+ record->rect.fRight *= 2;
+ record->rect.fBottom *= 2;
+}
+
+// Basic tests for the low-level SkRecord code.
+DEF_TEST(Record, r) {
+ SkRecord record;
+
+ // Add a simple DrawRect command.
+ SkRect rect = SkRect::MakeWH(10, 10);
+ SkPaint paint;
+ SkNEW_PLACEMENT_ARGS(record.append<SkRecords::DrawRect>(), SkRecords::DrawRect, (rect, paint));
+
+ // Its area should be 100.
+ int area = 0;
+ record.visit(AreaSummer(&area));
+ REPORTER_ASSERT(r, area == 100);
+
+ // Scale 2x. Now it's area should be 400.
+ record.mutate(Stretch());
+ area = 0;
+ record.visit(AreaSummer(&area));
+ REPORTER_ASSERT(r, area == 400);
+}