truetype_test.go 9.7 KB
Newer Older
1 2 3 4 5 6 7 8
// Copyright 2012 The Freetype-Go Authors. All rights reserved.
// Use of this source code is governed by your choice of either the
// FreeType License or the GNU General Public License version 2 (or
// any later version), both of which can be found in the LICENSE file.

package truetype

import (
9
	"bufio"
10
	"fmt"
11
	"io"
12
	"io/ioutil"
13
	"os"
14
	"strconv"
15
	"strings"
16
	"testing"
17

18
	"golang.org/x/image/font"
19
	"golang.org/x/image/math/fixed"
20 21
)

22
func parseTestdataFont(name string) (f *Font, testdataIsOptional bool, err error) {
23
	b, err := ioutil.ReadFile(fmt.Sprintf("../testdata/%s.ttf", name))
24 25 26 27 28
	if err != nil {
		// The "x-foo" fonts are optional tests, as they are not checked
		// in for copyright or file size reasons.
		return nil, strings.HasPrefix(name, "x-"), fmt.Errorf("%s: ReadFile: %v", name, err)
	}
29
	f, err = Parse(b)
30 31 32
	if err != nil {
		return nil, true, fmt.Errorf("%s: Parse: %v", name, err)
	}
33
	return f, false, nil
34 35
}

36 37 38 39 40 41 42 43 44 45 46 47 48
func mkBounds(minX, minY, maxX, maxY fixed.Int26_6) fixed.Rectangle26_6 {
	return fixed.Rectangle26_6{
		Min: fixed.Point26_6{
			X: minX,
			Y: minY,
		},
		Max: fixed.Point26_6{
			X: maxX,
			Y: maxY,
		},
	}
}

49 50 51
// TestParse tests that the luxisr.ttf metrics and glyphs are parsed correctly.
// The numerical values can be manually verified by examining luxisr.ttx.
func TestParse(t *testing.T) {
52
	f, _, err := parseTestdataFont("luxisr")
53 54 55
	if err != nil {
		t.Fatal(err)
	}
56
	if got, want := f.FUnitsPerEm(), int32(2048); got != want {
57
		t.Errorf("FUnitsPerEm: got %v, want %v", got, want)
58
	}
59
	fupe := fixed.Int26_6(f.FUnitsPerEm())
60
	if got, want := f.Bounds(fupe), mkBounds(-441, -432, 2024, 2033); got != want {
61
		t.Errorf("Bounds: got %v, want %v", got, want)
62 63
	}

64 65
	i0 := f.Index('A')
	i1 := f.Index('V')
66 67 68
	if i0 != 36 || i1 != 57 {
		t.Fatalf("Index: i0, i1 = %d, %d, want 36, 57", i0, i1)
	}
69
	if got, want := f.HMetric(fupe, i0), (HMetric{1366, 19}); got != want {
70 71
		t.Errorf("HMetric: got %v, want %v", got, want)
	}
72
	if got, want := f.VMetric(fupe, i0), (VMetric{2465, 553}); got != want {
73 74
		t.Errorf("VMetric: got %v, want %v", got, want)
	}
N
Nigel Tao 已提交
75 76
	if got, want := f.Kern(fupe, i0, i1), fixed.Int26_6(-144); got != want {
		t.Errorf("Kern: got %v, want %v", got, want)
77 78
	}

79
	g := &GlyphBuf{}
80
	err = g.Load(f, fupe, i0, font.HintingNone)
81 82 83
	if err != nil {
		t.Fatalf("Load: %v", err)
	}
84
	g0 := &GlyphBuf{
85
		Bounds: g.Bounds,
86 87
		Points: g.Points,
		Ends:   g.Ends,
88
	}
89
	g1 := &GlyphBuf{
90
		Bounds: mkBounds(19, 0, 1342, 1480),
91
		Points: []Point{
92 93 94 95 96 97 98 99 100 101 102 103
			{19, 0, 51},
			{581, 1480, 1},
			{789, 1480, 51},
			{1342, 0, 1},
			{1116, 0, 35},
			{962, 410, 3},
			{368, 410, 33},
			{214, 0, 3},
			{428, 566, 19},
			{904, 566, 33},
			{667, 1200, 3},
		},
104
		Ends: []int{8, 11},
105 106 107 108 109
	}
	if got, want := fmt.Sprint(g0), fmt.Sprint(g1); got != want {
		t.Errorf("GlyphBuf:\ngot  %v\nwant %v", got, want)
	}
}
110

111 112 113 114 115 116 117 118 119 120 121 122
func TestIndex(t *testing.T) {
	testCases := map[string]map[rune]Index{
		"luxisr": {
			' ':      3,
			'!':      4,
			'A':      36,
			'V':      57,
			'É':      101,
			'fl':      193,
			'\u22c5': 385,
			'中':      0,
		},
123 124 125 126

		// The x-etc test cases use those versions of the .ttf files provided
		// by Ubuntu 14.04. See testdata/make-other-hinting-txts.sh for details.

127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
		"x-arial-bold": {
			' ':      3,
			'+':      14,
			'0':      19,
			'_':      66,
			'w':      90,
			'~':      97,
			'Ä':      98,
			'fl':      192,
			'½':      242,
			'σ':      305,
			'λ':      540,
			'ỹ':      1275,
			'\u04e9': 1319,
			'中':      0,
		},
		"x-deja-vu-sans-oblique": {
			' ':      3,
			'*':      13,
			'Œ':      276,
			'ω':      861,
			'‡':      2571,
149 150 151 152
			'⊕':      3110,
			'fl':      4728,
			'\ufb03': 4729,
			'\ufffd': 4813,
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
			// TODO: '\U0001f640': ???,
			'中': 0,
		},
		"x-droid-sans-japanese": {
			' ':      0,
			'\u3000': 3,
			'\u3041': 25,
			'\u30fe': 201,
			'\uff61': 202,
			'\uff67': 208,
			'\uff9e': 263,
			'\uff9f': 264,
			'\u4e00': 265,
			'\u557e': 1000,
			'\u61b6': 2024,
			'\u6ede': 3177,
			'\u7505': 3555,
			'\u81e3': 4602,
			'\u81e5': 4603,
			'\u81e7': 4604,
			'\u81e8': 4605,
			'\u81ea': 4606,
			'\u81ed': 4607,
			'\u81f3': 4608,
			'\u81f4': 4609,
			'\u91c7': 5796,
			'\u9fa0': 6620,
			'\u203e': 12584,
		},
		"x-times-new-roman": {
			' ':      3,
			':':      29,
			'fl':      192,
			'Ŀ':      273,
			'♠':      388,
			'Ŗ':      451,
			'Σ':      520,
			'\u200D': 745,
			'Ẽ':      1216,
			'\u04e9': 1319,
			'中':      0,
		},
	}
	for name, wants := range testCases {
197
		f, testdataIsOptional, err := parseTestdataFont(name)
198 199 200 201 202 203 204 205 206
		if err != nil {
			if testdataIsOptional {
				t.Log(err)
			} else {
				t.Fatal(err)
			}
			continue
		}
		for r, want := range wants {
207
			if got := f.Index(r); got != want {
208
				t.Errorf("%s: Index of %q, aka %U: got %d, want %d", name, r, r, got, want)
209 210 211 212 213
			}
		}
	}
}

S
Stephen Edwards 已提交
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
func TestName(t *testing.T) {
	testCases := map[string]string{
		"luximr": "Luxi Mono",
		"luxirr": "Luxi Serif",
		"luxisr": "Luxi Sans",
	}

	for name, want := range testCases {
		f, testdataIsOptional, err := parseTestdataFont(name)
		if err != nil {
			if testdataIsOptional {
				t.Log(err)
			} else {
				t.Fatal(err)
			}
			continue
		}
		if got := f.Name(NameIDFontFamily); got != want {
			t.Errorf("%s: got %q, want %q", name, got, want)
		}
	}
}

237
type scalingTestData struct {
238
	advanceWidth fixed.Int26_6
239
	bounds       fixed.Rectangle26_6
240 241 242
	points       []Point
}

243
// scalingTestParse parses a line of points like
244
// 213 -22 -111 236 555;-22 -111 1, 178 555 1, 236 555 1, 36 -111 1
245
// The line will not have a trailing "\n".
246
func scalingTestParse(line string) (ret scalingTestData) {
247
	next := func(s string) (string, fixed.Int26_6) {
248 249 250 251 252
		t, i := "", strings.Index(s, " ")
		if i != -1 {
			s, t = s[:i], s[i+1:]
		}
		x, _ := strconv.Atoi(s)
253
		return t, fixed.Int26_6(x)
254
	}
255 256 257 258 259

	i := strings.Index(line, ";")
	prefix, line := line[:i], line[i+1:]

	prefix, ret.advanceWidth = next(prefix)
260 261 262 263
	prefix, ret.bounds.Min.X = next(prefix)
	prefix, ret.bounds.Min.Y = next(prefix)
	prefix, ret.bounds.Max.X = next(prefix)
	prefix, ret.bounds.Max.Y = next(prefix)
264 265

	ret.points = make([]Point, 0, 1+strings.Count(line, ","))
266 267 268 269 270 271 272 273 274 275
	for len(line) > 0 {
		s := line
		if i := strings.Index(line, ","); i != -1 {
			s, line = line[:i], line[i+1:]
			for len(line) > 0 && line[0] == ' ' {
				line = line[1:]
			}
		} else {
			line = ""
		}
276 277 278 279
		s, x := next(s)
		s, y := next(s)
		s, f := next(s)
		ret.points = append(ret.points, Point{X: x, Y: y, Flags: uint32(f)})
280
	}
281
	return ret
282 283 284
}

// scalingTestEquals is equivalent to, but faster than, calling
N
Nigel Tao 已提交
285
// reflect.DeepEqual(a, b), and also returns the index of the first non-equal
N
Nigel Tao 已提交
286 287 288
// element. It also treats a nil []Point and an empty non-nil []Point as equal.
// a and b must have equal length.
func scalingTestEquals(a, b []Point) (index int, equals bool) {
289 290
	for i, p := range a {
		if p != b[i] {
N
Nigel Tao 已提交
291
			return i, false
292 293
		}
	}
N
Nigel Tao 已提交
294
	return 0, true
295 296
}

297 298
var scalingTestCases = []struct {
	name string
299
	size int
300
}{
301 302 303 304 305
	{"luxisr", 12},
	{"x-arial-bold", 11},
	{"x-deja-vu-sans-oblique", 17},
	{"x-droid-sans-japanese", 9},
	{"x-times-new-roman", 13},
306
}
307

308
func testScaling(t *testing.T, h font.Hinting) {
309
	for _, tc := range scalingTestCases {
310
		f, testdataIsOptional, err := parseTestdataFont(tc.name)
311
		if err != nil {
312 313
			if testdataIsOptional {
				t.Log(err)
314
			} else {
315
				t.Error(err)
316
			}
317
			continue
318
		}
319
		hintingStr := "sans"
320
		if h != font.HintingNone {
321
			hintingStr = "with"
322
		}
323
		testFile, err := os.Open(fmt.Sprintf(
324
			"../testdata/%s-%dpt-%s-hinting.txt", tc.name, tc.size, hintingStr))
325 326
		if err != nil {
			t.Errorf("%s: Open: %v", tc.name, err)
327
			continue
328
		}
329
		defer testFile.Close()
330

331
		wants := []scalingTestData{}
332
		scanner := bufio.NewScanner(testFile)
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
		if scanner.Scan() {
			major, minor, patch := 0, 0, 0
			_, err := fmt.Sscanf(scanner.Text(), "freetype version %d.%d.%d", &major, &minor, &patch)
			if err != nil {
				t.Errorf("%s: version information: %v", tc.name, err)
			}
			if (major < 2) || (major == 2 && minor < 5) || (major == 2 && minor == 5 && patch < 1) {
				t.Errorf("%s: need freetype version >= 2.5.1.\n"+
					"Try setting LD_LIBRARY_PATH=/path/to/freetype_built_from_src/objs/.libs/\n"+
					"and re-running testdata/make-other-hinting-txts.sh",
					tc.name)
				continue
			}
		} else {
			t.Errorf("%s: no version information", tc.name)
			continue
		}
350
		for scanner.Scan() {
351
			wants = append(wants, scalingTestParse(scanner.Text()))
352
		}
353 354
		if err := scanner.Err(); err != nil && err != io.EOF {
			t.Errorf("%s: Scanner: %v", tc.name, err)
355
			continue
356
		}
357

358
		glyphBuf := &GlyphBuf{}
359
		for i, want := range wants {
360
			if err = glyphBuf.Load(f, fixed.I(tc.size), Index(i), h); err != nil {
361
				t.Errorf("%s: glyph #%d: Load: %v", tc.name, i, err)
362
				continue
363
			}
364
			got := scalingTestData{
365
				advanceWidth: glyphBuf.AdvanceWidth,
366
				bounds:       glyphBuf.Bounds,
367
				points:       glyphBuf.Points,
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
			}

			if got.advanceWidth != want.advanceWidth {
				t.Errorf("%s: glyph #%d advance width:\ngot  %v\nwant %v",
					tc.name, i, got.advanceWidth, want.advanceWidth)
				continue
			}

			if got.bounds != want.bounds {
				t.Errorf("%s: glyph #%d bounds:\ngot  %v\nwant %v",
					tc.name, i, got.bounds, want.bounds)
				continue
			}

			for i := range got.points {
				got.points[i].Flags &= 0x01
384
			}
385
			if len(got.points) != len(want.points) {
N
Nigel Tao 已提交
386
				t.Errorf("%s: glyph #%d:\ngot  %v\nwant %v\ndifferent slice lengths: %d versus %d",
387
					tc.name, i, got.points, want.points, len(got.points), len(want.points))
N
Nigel Tao 已提交
388 389
				continue
			}
390
			if j, equals := scalingTestEquals(got.points, want.points); !equals {
N
Nigel Tao 已提交
391
				t.Errorf("%s: glyph #%d:\ngot  %v\nwant %v\nat index %d: %v versus %v",
392
					tc.name, i, got.points, want.points, j, got.points[j], want.points[j])
N
Nigel Tao 已提交
393
				continue
394
			}
395 396 397 398
		}
	}
}

399 400
func TestScalingHintingNone(t *testing.T) { testScaling(t, font.HintingNone) }
func TestScalingHintingFull(t *testing.T) { testScaling(t, font.HintingFull) }