aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-19 12:08:40 +0000
committerGravatar djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-19 12:08:40 +0000
commit1f584ed3f43037e85bae3019d48e793ae28ebbd5 (patch)
treeaa0ddef34533481122aa6c6c027a1ae649afcae2 /tests
parentb39b5b100a6c1cc8ae282618c746f85e14eb6f3b (diff)
Update Android's FontHost to return NULL if familyName does not match
R=scroggo@google.com, wangxianzhu@chromium.org Review URL: https://codereview.chromium.org/23601041 git-svn-id: http://skia.googlecode.com/svn/trunk@11377 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests')
-rw-r--r--tests/Typeface.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/Typeface.cpp b/tests/Typeface.cpp
new file mode 100644
index 0000000000..76fde7a8b8
--- /dev/null
+++ b/tests/Typeface.cpp
@@ -0,0 +1,30 @@
+
+/*
+ * Copyright 2013 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "Test.h"
+#include "SkTypeface.h"
+
+static void TestDefaultTypeface(skiatest::Reporter* reporter) {
+
+ SkAutoTUnref<SkTypeface> t1(SkTypeface::CreateFromName(NULL, SkTypeface::kNormal));
+ SkAutoTUnref<SkTypeface> t2(SkTypeface::RefDefault(SkTypeface::kNormal));
+
+ REPORTER_ASSERT(reporter, SkTypeface::Equal(t1.get(), t2.get()));
+ REPORTER_ASSERT(reporter, SkTypeface::Equal(0, t1.get()));
+ REPORTER_ASSERT(reporter, SkTypeface::Equal(0, t2.get()));
+ REPORTER_ASSERT(reporter, SkTypeface::Equal(t1.get(), 0));
+ REPORTER_ASSERT(reporter, SkTypeface::Equal(t2.get(), 0));
+
+#ifdef SK_BUILD_FOR_ANDROID
+ SkAutoTUnref<SkTypeface> t3(SkTypeface::CreateFromName("non-existent-font", SkTypeface::kNormal));
+ REPORTER_ASSERT(reporter, NULL == t3.get());
+#endif
+}
+
+#include "TestClassDef.h"
+DEFINE_TESTCLASS("Typeface", TypefaceTestClass, TestDefaultTypeface)