File: icons_test.go

package info (click to toggle)
golang-golang-x-exp 0.0~git20231006.7918f67-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 6,492 kB
  • sloc: ansic: 1,900; objc: 276; sh: 272; asm: 48; makefile: 27
file content (64 lines) | stat: -rw-r--r-- 1,410 bytes parent folder | download | duplicates (5)
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
59
60
61
62
63
64
// 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 icons

import (
	"image"
	"image/draw"
	"image/png"
	"os"
	"path/filepath"
	"testing"

	"golang.org/x/exp/shiny/iconvg"
)

func encodePNG(dstFilename string, src image.Image) error {
	f, err := os.Create(dstFilename)
	if err != nil {
		return err
	}
	encErr := png.Encode(f, src)
	closeErr := f.Close()
	if encErr != nil {
		return encErr
	}
	return closeErr
}

func TestManualInspection(t *testing.T) {
	// Set this to a non-empty string such as "/tmp/mdicons" to manually
	// inspect the icons.
	const tmpDir = ""

	if tmpDir == "" {
		t.Skip("no tmpDir specified")
	}
	t.Errorf("tmpDir %q is a non-empty string; do not commit code changes", tmpDir)

	dst := image.NewAlpha(image.Rect(0, 0, 256, 256))
	z := &iconvg.Rasterizer{}
	z.SetDstImage(dst, dst.Bounds(), draw.Src)
	for _, v := range list {
		if err := iconvg.Decode(z, v.data, nil); err != nil {
			t.Errorf("%q: %v", v.name, err)
			continue
		}
		filename := filepath.Join(tmpDir, v.name+".png")
		if err := encodePNG(filename, dst); err != nil {
			t.Error(err)
		}
		t.Logf("wrote %s", filename)
	}
}

func TestDecodeAll(t *testing.T) {
	for _, v := range list {
		if err := iconvg.Decode(nil, v.data, nil); err != nil {
			t.Errorf("%q: %v", v.name, err)
			continue
		}
	}
}