1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package plan9font
import (
"image"
"io/ioutil"
"path"
"path/filepath"
"testing"
"golang.org/x/image/font"
)
func TestMetrics(t *testing.T) {
readFile := func(name string) ([]byte, error) {
return ioutil.ReadFile(filepath.FromSlash(path.Join("../testdata/fixed", name)))
}
data, err := readFile("unicode.7x13.font")
if err != nil {
t.Fatal(err)
}
face, err := ParseFont(data, readFile)
if err != nil {
t.Fatal(err)
}
want := font.Metrics{Height: 832, Ascent: 704, Descent: 128, XHeight: 704, CapHeight: 704,
CaretSlope: image.Point{X: 0, Y: 1}}
if got := face.Metrics(); got != want {
t.Errorf("unicode.7x13.font: Metrics: got %v, want %v", got, want)
}
subData, err := readFile("7x13.0000")
if err != nil {
t.Fatal(err)
}
subFace, err := ParseSubfont(subData, 0)
if err != nil {
t.Fatal(err)
}
if got := subFace.Metrics(); got != want {
t.Errorf("7x13.0000: Metrics: got %v, want %v", got, want)
}
}
func BenchmarkParseSubfont(b *testing.B) {
subfontData, err := ioutil.ReadFile(filepath.FromSlash("../testdata/fixed/7x13.0000"))
if err != nil {
b.Fatal(err)
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
if _, err := ParseSubfont(subfontData, 0); err != nil {
b.Fatal(err)
}
}
}
|