blob: a56331e87f3d6005d9e10900e7d8ffbb5660bd99 [file] [log] [blame]
tomhudsonf79673b2014-08-05 06:36:11 -07001/*
2 * Copyright 2014 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 */
7
8#include "Resources.h"
bungemaneb2be7f2015-02-10 07:51:12 -08009#include "SkCommandLineFlags.h"
bungemanc5308542015-06-23 13:25:46 -070010#include "SkFontMgr_android_parser.h"
tomhudsonf79673b2014-08-05 06:36:11 -070011#include "Test.h"
12
bungeman41868fe2015-05-20 09:21:04 -070013#include <cmath>
14#include <cstdio>
15
bungemaneb2be7f2015-02-10 07:51:12 -080016DECLARE_bool(verboseFontMgr);
17
tomhudson2ed49a42014-08-13 07:53:48 -070018int CountFallbacks(SkTDArray<FontFamily*> fontFamilies) {
19 int countOfFallbackFonts = 0;
20 for (int i = 0; i < fontFamilies.count(); i++) {
21 if (fontFamilies[i]->fIsFallbackFont) {
22 countOfFallbackFonts++;
23 }
24 }
25 return countOfFallbackFonts;
26}
27
bungemanc3c69432015-02-11 07:18:51 -080028//https://tools.ietf.org/html/rfc5234#appendix-B.1
29static bool isALPHA(int c) {
30 return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z');
31}
32
33//https://tools.ietf.org/html/rfc5234#appendix-B.1
34static bool isDIGIT(int c) {
35 return ('0' <= c && c <= '9');
36}
37
bungeman4b86bac2014-11-04 10:54:31 -080038void ValidateLoadedFonts(SkTDArray<FontFamily*> fontFamilies, const char* firstExpectedFile,
tomhudsonf79673b2014-08-05 06:36:11 -070039 skiatest::Reporter* reporter) {
40 REPORTER_ASSERT(reporter, fontFamilies[0]->fNames.count() == 5);
41 REPORTER_ASSERT(reporter, !strcmp(fontFamilies[0]->fNames[0].c_str(), "sans-serif"));
42 REPORTER_ASSERT(reporter,
bungeman4b86bac2014-11-04 10:54:31 -080043 !strcmp(fontFamilies[0]->fFonts[0].fFileName.c_str(), firstExpectedFile));
tomhudsonf79673b2014-08-05 06:36:11 -070044 REPORTER_ASSERT(reporter, !fontFamilies[0]->fIsFallbackFont);
bungemanc3c69432015-02-11 07:18:51 -080045
46 // Check that the languages are all sane.
47 for (int i = 0; i < fontFamilies.count(); ++i) {
48 const SkString& lang = fontFamilies[i]->fLanguage.getTag();
49 for (size_t j = 0; j < lang.size(); ++j) {
50 int c = lang[j];
51 REPORTER_ASSERT(reporter, isALPHA(c) || isDIGIT(c) || '-' == c);
52 }
53 }
bungeman9a0808f2015-02-13 08:55:16 -080054
55 // All file names in the test configuration files start with a capital letter.
56 // This is not a general requirement, but it is true of all the test configuration data.
57 // Verifying ensures the filenames have been read sanely and have not been 'sliced'.
58 for (int i = 0; i < fontFamilies.count(); ++i) {
59 FontFamily& family = *fontFamilies[i];
60 for (int j = 0; j < family.fFonts.count(); ++j) {
61 FontFileInfo& file = family.fFonts[j];
62 REPORTER_ASSERT(reporter, !file.fFileName.isEmpty() &&
63 file.fFileName[0] >= 'A' &&
64 file.fFileName[0] <= 'Z');
65 }
66 }
tomhudsonf79673b2014-08-05 06:36:11 -070067}
68
bungeman3d47e212015-02-13 18:30:11 -080069void DumpLoadedFonts(SkTDArray<FontFamily*> fontFamilies, const char* label) {
bungemaneb2be7f2015-02-10 07:51:12 -080070 if (!FLAGS_verboseFontMgr) {
71 return;
72 }
73
bungeman3d47e212015-02-13 18:30:11 -080074 SkDebugf("\n--- Dumping %s\n", label);
tomhudsonf79673b2014-08-05 06:36:11 -070075 for (int i = 0; i < fontFamilies.count(); ++i) {
76 SkDebugf("Family %d:\n", i);
tomhudson07544752014-08-05 13:35:00 -070077 switch(fontFamilies[i]->fVariant) {
bungemana44e9b92015-01-30 19:58:19 -080078 case kElegant_FontVariant: SkDebugf(" elegant\n"); break;
79 case kCompact_FontVariant: SkDebugf(" compact\n"); break;
tomhudson07544752014-08-05 13:35:00 -070080 default: break;
81 }
bungemaneb2be7f2015-02-10 07:51:12 -080082 SkDebugf(" basePath %s\n", fontFamilies[i]->fBasePath.c_str());
tomhudson07544752014-08-05 13:35:00 -070083 if (!fontFamilies[i]->fLanguage.getTag().isEmpty()) {
bungemana44e9b92015-01-30 19:58:19 -080084 SkDebugf(" language %s\n", fontFamilies[i]->fLanguage.getTag().c_str());
tomhudson07544752014-08-05 13:35:00 -070085 }
tomhudsonf79673b2014-08-05 06:36:11 -070086 for (int j = 0; j < fontFamilies[i]->fNames.count(); ++j) {
87 SkDebugf(" name %s\n", fontFamilies[i]->fNames[j].c_str());
88 }
tomhudsond3ddea22014-08-11 11:28:00 -070089 for (int j = 0; j < fontFamilies[i]->fFonts.count(); ++j) {
90 const FontFileInfo& ffi = fontFamilies[i]->fFonts[j];
bungeman47a1e962016-02-25 11:20:01 -080091 SkDebugf(" file (%d) %s#%d", ffi.fWeight, ffi.fFileName.c_str(), ffi.fIndex);
92 for (const auto& axis : ffi.fAxes) {
93 SkDebugf(" @'%c%c%c%c'=%f",
94 (axis.fTag >> 24) & 0xFF,
95 (axis.fTag >> 16) & 0xFF,
96 (axis.fTag >> 8) & 0xFF,
97 (axis.fTag ) & 0xFF,
98 axis.fStyleValue);
99 }
100 SkDebugf("\n");
tomhudson07544752014-08-05 13:35:00 -0700101 }
tomhudsonf79673b2014-08-05 06:36:11 -0700102 }
bungemanc3c69432015-02-11 07:18:51 -0800103 SkDebugf("\n\n");
tomhudsonf79673b2014-08-05 06:36:11 -0700104}
105
bungeman41868fe2015-05-20 09:21:04 -0700106template <int N, typename T> static double test_parse_fixed_r(skiatest::Reporter* reporter,
107 double low, double high, double inc)
108{
109 double SK_FixedMax_double = nextafter(1 << (sizeof(T) * CHAR_BIT - N - 1), 0.0);
110 double SK_FixedEpsilon_double = (1.0 / (1 << N));
111 double maxError = 0;
112 char buffer[64];
113 for (double f = low; f < high; f += inc) {
114 SkString s;
115 // 'sprintf' formatting as expected depends on the current locale being "C".
116 // We currently expect tests and tools to run in the "C" locale.
117 sprintf(buffer, "%.20f", f);
118 T fix;
119 bool b = parse_fixed<N>(buffer, &fix);
120 if (b) {
121 double f2 = fix * SK_FixedEpsilon_double;
122 double error = fabs(f - f2);
123 REPORTER_ASSERT(reporter, error <= SK_FixedEpsilon_double);
124 maxError = SkTMax(maxError, error);
125 } else {
126 REPORTER_ASSERT(reporter, f < -SK_FixedMax_double || SK_FixedMax_double < f);
127 }
128 }
129
130 //SkDebugf("maxError: %.20f\n", maxError);
131 return maxError;
132}
133
134static void test_parse_fixed(skiatest::Reporter* reporter) {
135 test_parse_fixed_r<27, int32_t>(reporter, -8.1, -7.9, 0.000001);
136 test_parse_fixed_r<27, int32_t>(reporter, -0.1, 0.1, 0.000001);
137 test_parse_fixed_r<27, int32_t>(reporter, 7.9, 8.1, 0.000001);
138 test_parse_fixed_r<16, int32_t>(reporter, -0.125, 0.125, 1.0 / (1 << 19));
139 test_parse_fixed_r<16, int32_t>(reporter, -32768.125, -32766.875, 1.0 / (1 << 17));
140 test_parse_fixed_r<16, int32_t>(reporter, 32766.875, 32768.125, 1.0 / (1 << 17));
141 test_parse_fixed_r<16, int32_t>(reporter, -1.1, 1.1, 0.0001);
142
143 SkFixed fix;
144 REPORTER_ASSERT(reporter, !parse_fixed<27>("-17.1", &fix));
145 REPORTER_ASSERT(reporter, !parse_fixed<16>("32768", &fix));
146 REPORTER_ASSERT(reporter, !parse_fixed<16>("", &fix));
147 REPORTER_ASSERT(reporter, !parse_fixed<16>(".", &fix));
148 REPORTER_ASSERT(reporter, !parse_fixed<16>("123.", &fix));
149 REPORTER_ASSERT(reporter, !parse_fixed<16>("a", &fix));
150 REPORTER_ASSERT(reporter, !parse_fixed<16>(".123a", &fix));
151}
152
bungemanc5308542015-06-23 13:25:46 -0700153DEF_TEST(FontMgrAndroidParser, reporter) {
bungeman41868fe2015-05-20 09:21:04 -0700154 test_parse_fixed(reporter);
tomhudsonf79673b2014-08-05 06:36:11 -0700155
tomhudson8aed3c12014-08-07 10:20:51 -0700156 bool resourcesMissing = false;
157
tomhudsonf79673b2014-08-05 06:36:11 -0700158 SkTDArray<FontFamily*> preV17FontFamilies;
bungemanc5308542015-06-23 13:25:46 -0700159 SkFontMgr_Android_Parser::GetCustomFontFamilies(preV17FontFamilies,
bungeman7fa87cd2015-02-06 07:59:19 -0800160 SkString("/custom/font/path/"),
tomhudsonf79673b2014-08-05 06:36:11 -0700161 GetResourcePath("android_fonts/pre_v17/system_fonts.xml").c_str(),
162 GetResourcePath("android_fonts/pre_v17/fallback_fonts.xml").c_str());
163
tomhudson8aed3c12014-08-07 10:20:51 -0700164 if (preV17FontFamilies.count() > 0) {
165 REPORTER_ASSERT(reporter, preV17FontFamilies.count() == 14);
tomhudson2ed49a42014-08-13 07:53:48 -0700166 REPORTER_ASSERT(reporter, CountFallbacks(preV17FontFamilies) == 10);
tomhudsonf79673b2014-08-05 06:36:11 -0700167
bungeman3d47e212015-02-13 18:30:11 -0800168 DumpLoadedFonts(preV17FontFamilies, "pre version 17");
bungeman4b86bac2014-11-04 10:54:31 -0800169 ValidateLoadedFonts(preV17FontFamilies, "Roboto-Regular.ttf", reporter);
tomhudson8aed3c12014-08-07 10:20:51 -0700170 } else {
171 resourcesMissing = true;
172 }
bungeman91e51cb2015-07-15 14:29:25 -0400173 preV17FontFamilies.deleteAll();
tomhudsonf79673b2014-08-05 06:36:11 -0700174
tomhudson07544752014-08-05 13:35:00 -0700175
tomhudsonf79673b2014-08-05 06:36:11 -0700176 SkTDArray<FontFamily*> v17FontFamilies;
bungemanc5308542015-06-23 13:25:46 -0700177 SkFontMgr_Android_Parser::GetCustomFontFamilies(v17FontFamilies,
bungeman7fa87cd2015-02-06 07:59:19 -0800178 SkString("/custom/font/path/"),
tomhudsonf79673b2014-08-05 06:36:11 -0700179 GetResourcePath("android_fonts/v17/system_fonts.xml").c_str(),
bungemanc3c69432015-02-11 07:18:51 -0800180 GetResourcePath("android_fonts/v17/fallback_fonts.xml").c_str(),
181 GetResourcePath("android_fonts/v17").c_str());
tomhudsonf79673b2014-08-05 06:36:11 -0700182
tomhudson8aed3c12014-08-07 10:20:51 -0700183 if (v17FontFamilies.count() > 0) {
bungemanc3c69432015-02-11 07:18:51 -0800184 REPORTER_ASSERT(reporter, v17FontFamilies.count() == 56);
185 REPORTER_ASSERT(reporter, CountFallbacks(v17FontFamilies) == 46);
tomhudsonf79673b2014-08-05 06:36:11 -0700186
bungeman3d47e212015-02-13 18:30:11 -0800187 DumpLoadedFonts(v17FontFamilies, "version 17");
bungeman4b86bac2014-11-04 10:54:31 -0800188 ValidateLoadedFonts(v17FontFamilies, "Roboto-Regular.ttf", reporter);
tomhudson8aed3c12014-08-07 10:20:51 -0700189 } else {
190 resourcesMissing = true;
191 }
bungeman91e51cb2015-07-15 14:29:25 -0400192 v17FontFamilies.deleteAll();
tomhudsonf79673b2014-08-05 06:36:11 -0700193
tomhudson07544752014-08-05 13:35:00 -0700194
tomhudsonf79673b2014-08-05 06:36:11 -0700195 SkTDArray<FontFamily*> v22FontFamilies;
bungemanc5308542015-06-23 13:25:46 -0700196 SkFontMgr_Android_Parser::GetCustomFontFamilies(v22FontFamilies,
bungeman7fa87cd2015-02-06 07:59:19 -0800197 SkString("/custom/font/path/"),
tomhudsonf79673b2014-08-05 06:36:11 -0700198 GetResourcePath("android_fonts/v22/fonts.xml").c_str(),
halcanary96fcdcc2015-08-27 07:41:13 -0700199 nullptr);
tomhudsonf79673b2014-08-05 06:36:11 -0700200
tomhudson8aed3c12014-08-07 10:20:51 -0700201 if (v22FontFamilies.count() > 0) {
bungeman41868fe2015-05-20 09:21:04 -0700202 REPORTER_ASSERT(reporter, v22FontFamilies.count() == 54);
tomhudson2ed49a42014-08-13 07:53:48 -0700203 REPORTER_ASSERT(reporter, CountFallbacks(v22FontFamilies) == 42);
tomhudsonf79673b2014-08-05 06:36:11 -0700204
bungeman3d47e212015-02-13 18:30:11 -0800205 DumpLoadedFonts(v22FontFamilies, "version 22");
bungeman4b86bac2014-11-04 10:54:31 -0800206 ValidateLoadedFonts(v22FontFamilies, "Roboto-Thin.ttf", reporter);
tomhudson8aed3c12014-08-07 10:20:51 -0700207 } else {
208 resourcesMissing = true;
209 }
bungeman91e51cb2015-07-15 14:29:25 -0400210 v22FontFamilies.deleteAll();
tomhudson8aed3c12014-08-07 10:20:51 -0700211
212 if (resourcesMissing) {
213 SkDebugf("---- Resource files missing for FontConfigParser test\n");
214 }
tomhudsonf79673b2014-08-05 06:36:11 -0700215}
216