blob: b5346ef5b686acf8c544805e9b9c69e13fa170cd [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"
benjaminwagner6c71e0a2016-04-07 08:49:31 -070010#include "SkFixed.h"
bungemanc5308542015-06-23 13:25:46 -070011#include "SkFontMgr_android_parser.h"
tomhudsonf79673b2014-08-05 06:36:11 -070012#include "Test.h"
13
bungeman41868fe2015-05-20 09:21:04 -070014#include <cmath>
15#include <cstdio>
16
bungemaneb2be7f2015-02-10 07:51:12 -080017DECLARE_bool(verboseFontMgr);
18
tomhudson2ed49a42014-08-13 07:53:48 -070019int CountFallbacks(SkTDArray<FontFamily*> fontFamilies) {
20 int countOfFallbackFonts = 0;
21 for (int i = 0; i < fontFamilies.count(); i++) {
22 if (fontFamilies[i]->fIsFallbackFont) {
23 countOfFallbackFonts++;
24 }
25 }
26 return countOfFallbackFonts;
27}
28
bungemanc3c69432015-02-11 07:18:51 -080029//https://tools.ietf.org/html/rfc5234#appendix-B.1
30static bool isALPHA(int c) {
31 return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z');
32}
33
34//https://tools.ietf.org/html/rfc5234#appendix-B.1
35static bool isDIGIT(int c) {
36 return ('0' <= c && c <= '9');
37}
38
bungeman4b86bac2014-11-04 10:54:31 -080039void ValidateLoadedFonts(SkTDArray<FontFamily*> fontFamilies, const char* firstExpectedFile,
tomhudsonf79673b2014-08-05 06:36:11 -070040 skiatest::Reporter* reporter) {
41 REPORTER_ASSERT(reporter, fontFamilies[0]->fNames.count() == 5);
42 REPORTER_ASSERT(reporter, !strcmp(fontFamilies[0]->fNames[0].c_str(), "sans-serif"));
43 REPORTER_ASSERT(reporter,
bungeman4b86bac2014-11-04 10:54:31 -080044 !strcmp(fontFamilies[0]->fFonts[0].fFileName.c_str(), firstExpectedFile));
tomhudsonf79673b2014-08-05 06:36:11 -070045 REPORTER_ASSERT(reporter, !fontFamilies[0]->fIsFallbackFont);
bungemanc3c69432015-02-11 07:18:51 -080046
47 // Check that the languages are all sane.
Ben Wagneraee878d2017-08-10 13:49:41 -040048 for (const auto& fontFamily : fontFamilies) {
49 for (const auto& lang : fontFamily->fLanguages) {
50 const SkString& langString = lang.getTag();
51 for (size_t i = 0; i < langString.size(); ++i) {
52 int c = langString[i];
53 REPORTER_ASSERT(reporter, isALPHA(c) || isDIGIT(c) || '-' == c);
54 }
bungemanc3c69432015-02-11 07:18:51 -080055 }
56 }
bungeman9a0808f2015-02-13 08:55:16 -080057
58 // All file names in the test configuration files start with a capital letter.
59 // This is not a general requirement, but it is true of all the test configuration data.
60 // Verifying ensures the filenames have been read sanely and have not been 'sliced'.
61 for (int i = 0; i < fontFamilies.count(); ++i) {
62 FontFamily& family = *fontFamilies[i];
63 for (int j = 0; j < family.fFonts.count(); ++j) {
64 FontFileInfo& file = family.fFonts[j];
65 REPORTER_ASSERT(reporter, !file.fFileName.isEmpty() &&
66 file.fFileName[0] >= 'A' &&
67 file.fFileName[0] <= 'Z');
68 }
69 }
tomhudsonf79673b2014-08-05 06:36:11 -070070}
71
bungeman3d47e212015-02-13 18:30:11 -080072void DumpLoadedFonts(SkTDArray<FontFamily*> fontFamilies, const char* label) {
bungemaneb2be7f2015-02-10 07:51:12 -080073 if (!FLAGS_verboseFontMgr) {
74 return;
75 }
76
bungeman3d47e212015-02-13 18:30:11 -080077 SkDebugf("\n--- Dumping %s\n", label);
tomhudsonf79673b2014-08-05 06:36:11 -070078 for (int i = 0; i < fontFamilies.count(); ++i) {
79 SkDebugf("Family %d:\n", i);
tomhudson07544752014-08-05 13:35:00 -070080 switch(fontFamilies[i]->fVariant) {
bungemana44e9b92015-01-30 19:58:19 -080081 case kElegant_FontVariant: SkDebugf(" elegant\n"); break;
82 case kCompact_FontVariant: SkDebugf(" compact\n"); break;
tomhudson07544752014-08-05 13:35:00 -070083 default: break;
84 }
bungemaneb2be7f2015-02-10 07:51:12 -080085 SkDebugf(" basePath %s\n", fontFamilies[i]->fBasePath.c_str());
Ben Wagneraee878d2017-08-10 13:49:41 -040086 if (!fontFamilies[i]->fLanguages.empty()) {
87 SkDebugf(" language");
88 for (const auto& lang : fontFamilies[i]->fLanguages) {
89 SkDebugf(" %s", lang.getTag().c_str());
90 }
91 SkDebugf("\n");
tomhudson07544752014-08-05 13:35:00 -070092 }
tomhudsonf79673b2014-08-05 06:36:11 -070093 for (int j = 0; j < fontFamilies[i]->fNames.count(); ++j) {
94 SkDebugf(" name %s\n", fontFamilies[i]->fNames[j].c_str());
95 }
tomhudsond3ddea22014-08-11 11:28:00 -070096 for (int j = 0; j < fontFamilies[i]->fFonts.count(); ++j) {
97 const FontFileInfo& ffi = fontFamilies[i]->fFonts[j];
bungeman47a1e962016-02-25 11:20:01 -080098 SkDebugf(" file (%d) %s#%d", ffi.fWeight, ffi.fFileName.c_str(), ffi.fIndex);
Ben Wagnerfc497342017-02-24 11:15:26 -050099 for (const auto& coordinate : ffi.fVariationDesignPosition) {
bungeman47a1e962016-02-25 11:20:01 -0800100 SkDebugf(" @'%c%c%c%c'=%f",
Ben Wagnerfc497342017-02-24 11:15:26 -0500101 (coordinate.axis >> 24) & 0xFF,
102 (coordinate.axis >> 16) & 0xFF,
103 (coordinate.axis >> 8) & 0xFF,
104 (coordinate.axis ) & 0xFF,
105 coordinate.value);
bungeman47a1e962016-02-25 11:20:01 -0800106 }
107 SkDebugf("\n");
tomhudson07544752014-08-05 13:35:00 -0700108 }
tomhudsonf79673b2014-08-05 06:36:11 -0700109 }
bungemanc3c69432015-02-11 07:18:51 -0800110 SkDebugf("\n\n");
tomhudsonf79673b2014-08-05 06:36:11 -0700111}
112
bungeman41868fe2015-05-20 09:21:04 -0700113template <int N, typename T> static double test_parse_fixed_r(skiatest::Reporter* reporter,
114 double low, double high, double inc)
115{
116 double SK_FixedMax_double = nextafter(1 << (sizeof(T) * CHAR_BIT - N - 1), 0.0);
117 double SK_FixedEpsilon_double = (1.0 / (1 << N));
118 double maxError = 0;
119 char buffer[64];
120 for (double f = low; f < high; f += inc) {
121 SkString s;
122 // 'sprintf' formatting as expected depends on the current locale being "C".
123 // We currently expect tests and tools to run in the "C" locale.
124 sprintf(buffer, "%.20f", f);
125 T fix;
126 bool b = parse_fixed<N>(buffer, &fix);
127 if (b) {
128 double f2 = fix * SK_FixedEpsilon_double;
129 double error = fabs(f - f2);
130 REPORTER_ASSERT(reporter, error <= SK_FixedEpsilon_double);
131 maxError = SkTMax(maxError, error);
132 } else {
133 REPORTER_ASSERT(reporter, f < -SK_FixedMax_double || SK_FixedMax_double < f);
134 }
135 }
136
137 //SkDebugf("maxError: %.20f\n", maxError);
138 return maxError;
139}
140
141static void test_parse_fixed(skiatest::Reporter* reporter) {
142 test_parse_fixed_r<27, int32_t>(reporter, -8.1, -7.9, 0.000001);
143 test_parse_fixed_r<27, int32_t>(reporter, -0.1, 0.1, 0.000001);
144 test_parse_fixed_r<27, int32_t>(reporter, 7.9, 8.1, 0.000001);
145 test_parse_fixed_r<16, int32_t>(reporter, -0.125, 0.125, 1.0 / (1 << 19));
146 test_parse_fixed_r<16, int32_t>(reporter, -32768.125, -32766.875, 1.0 / (1 << 17));
147 test_parse_fixed_r<16, int32_t>(reporter, 32766.875, 32768.125, 1.0 / (1 << 17));
148 test_parse_fixed_r<16, int32_t>(reporter, -1.1, 1.1, 0.0001);
149
150 SkFixed fix;
151 REPORTER_ASSERT(reporter, !parse_fixed<27>("-17.1", &fix));
152 REPORTER_ASSERT(reporter, !parse_fixed<16>("32768", &fix));
153 REPORTER_ASSERT(reporter, !parse_fixed<16>("", &fix));
154 REPORTER_ASSERT(reporter, !parse_fixed<16>(".", &fix));
155 REPORTER_ASSERT(reporter, !parse_fixed<16>("123.", &fix));
156 REPORTER_ASSERT(reporter, !parse_fixed<16>("a", &fix));
157 REPORTER_ASSERT(reporter, !parse_fixed<16>(".123a", &fix));
158}
159
bungemanc5308542015-06-23 13:25:46 -0700160DEF_TEST(FontMgrAndroidParser, reporter) {
bungeman41868fe2015-05-20 09:21:04 -0700161 test_parse_fixed(reporter);
tomhudsonf79673b2014-08-05 06:36:11 -0700162
tomhudson8aed3c12014-08-07 10:20:51 -0700163 bool resourcesMissing = false;
164
tomhudsonf79673b2014-08-05 06:36:11 -0700165 SkTDArray<FontFamily*> preV17FontFamilies;
bungemanc5308542015-06-23 13:25:46 -0700166 SkFontMgr_Android_Parser::GetCustomFontFamilies(preV17FontFamilies,
bungeman7fa87cd2015-02-06 07:59:19 -0800167 SkString("/custom/font/path/"),
tomhudsonf79673b2014-08-05 06:36:11 -0700168 GetResourcePath("android_fonts/pre_v17/system_fonts.xml").c_str(),
169 GetResourcePath("android_fonts/pre_v17/fallback_fonts.xml").c_str());
170
tomhudson8aed3c12014-08-07 10:20:51 -0700171 if (preV17FontFamilies.count() > 0) {
172 REPORTER_ASSERT(reporter, preV17FontFamilies.count() == 14);
tomhudson2ed49a42014-08-13 07:53:48 -0700173 REPORTER_ASSERT(reporter, CountFallbacks(preV17FontFamilies) == 10);
tomhudsonf79673b2014-08-05 06:36:11 -0700174
bungeman3d47e212015-02-13 18:30:11 -0800175 DumpLoadedFonts(preV17FontFamilies, "pre version 17");
bungeman4b86bac2014-11-04 10:54:31 -0800176 ValidateLoadedFonts(preV17FontFamilies, "Roboto-Regular.ttf", reporter);
tomhudson8aed3c12014-08-07 10:20:51 -0700177 } else {
178 resourcesMissing = true;
179 }
bungeman91e51cb2015-07-15 14:29:25 -0400180 preV17FontFamilies.deleteAll();
tomhudsonf79673b2014-08-05 06:36:11 -0700181
tomhudson07544752014-08-05 13:35:00 -0700182
tomhudsonf79673b2014-08-05 06:36:11 -0700183 SkTDArray<FontFamily*> v17FontFamilies;
bungemanc5308542015-06-23 13:25:46 -0700184 SkFontMgr_Android_Parser::GetCustomFontFamilies(v17FontFamilies,
bungeman7fa87cd2015-02-06 07:59:19 -0800185 SkString("/custom/font/path/"),
tomhudsonf79673b2014-08-05 06:36:11 -0700186 GetResourcePath("android_fonts/v17/system_fonts.xml").c_str(),
bungemanc3c69432015-02-11 07:18:51 -0800187 GetResourcePath("android_fonts/v17/fallback_fonts.xml").c_str(),
188 GetResourcePath("android_fonts/v17").c_str());
tomhudsonf79673b2014-08-05 06:36:11 -0700189
tomhudson8aed3c12014-08-07 10:20:51 -0700190 if (v17FontFamilies.count() > 0) {
bungemanc3c69432015-02-11 07:18:51 -0800191 REPORTER_ASSERT(reporter, v17FontFamilies.count() == 56);
192 REPORTER_ASSERT(reporter, CountFallbacks(v17FontFamilies) == 46);
tomhudsonf79673b2014-08-05 06:36:11 -0700193
bungeman3d47e212015-02-13 18:30:11 -0800194 DumpLoadedFonts(v17FontFamilies, "version 17");
bungeman4b86bac2014-11-04 10:54:31 -0800195 ValidateLoadedFonts(v17FontFamilies, "Roboto-Regular.ttf", reporter);
tomhudson8aed3c12014-08-07 10:20:51 -0700196 } else {
197 resourcesMissing = true;
198 }
bungeman91e51cb2015-07-15 14:29:25 -0400199 v17FontFamilies.deleteAll();
tomhudsonf79673b2014-08-05 06:36:11 -0700200
tomhudson07544752014-08-05 13:35:00 -0700201
tomhudsonf79673b2014-08-05 06:36:11 -0700202 SkTDArray<FontFamily*> v22FontFamilies;
bungemanc5308542015-06-23 13:25:46 -0700203 SkFontMgr_Android_Parser::GetCustomFontFamilies(v22FontFamilies,
bungeman7fa87cd2015-02-06 07:59:19 -0800204 SkString("/custom/font/path/"),
tomhudsonf79673b2014-08-05 06:36:11 -0700205 GetResourcePath("android_fonts/v22/fonts.xml").c_str(),
halcanary96fcdcc2015-08-27 07:41:13 -0700206 nullptr);
tomhudsonf79673b2014-08-05 06:36:11 -0700207
tomhudson8aed3c12014-08-07 10:20:51 -0700208 if (v22FontFamilies.count() > 0) {
bungeman41868fe2015-05-20 09:21:04 -0700209 REPORTER_ASSERT(reporter, v22FontFamilies.count() == 54);
tomhudson2ed49a42014-08-13 07:53:48 -0700210 REPORTER_ASSERT(reporter, CountFallbacks(v22FontFamilies) == 42);
tomhudsonf79673b2014-08-05 06:36:11 -0700211
bungeman3d47e212015-02-13 18:30:11 -0800212 DumpLoadedFonts(v22FontFamilies, "version 22");
bungeman4b86bac2014-11-04 10:54:31 -0800213 ValidateLoadedFonts(v22FontFamilies, "Roboto-Thin.ttf", reporter);
tomhudson8aed3c12014-08-07 10:20:51 -0700214 } else {
215 resourcesMissing = true;
216 }
bungeman91e51cb2015-07-15 14:29:25 -0400217 v22FontFamilies.deleteAll();
tomhudson8aed3c12014-08-07 10:20:51 -0700218
219 if (resourcesMissing) {
220 SkDebugf("---- Resource files missing for FontConfigParser test\n");
221 }
tomhudsonf79673b2014-08-05 06:36:11 -0700222}