-
Notifications
You must be signed in to change notification settings - Fork 16
/
root_on_docker_test.go
110 lines (101 loc) · 2.76 KB
/
root_on_docker_test.go
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
//go:build docker
//
// 日本語や絵文字が使えるDocker環境上で実行する想定のテスト。
// どうしてもDocker上でしかテストできないもののみこのファイルに記述する。
package main
import (
"os"
"testing"
"github.com/jiro4989/textimg/v3/config"
"github.com/stretchr/testify/assert"
)
func TestRunRootCommandOnDocker(t *testing.T) {
var (
outDockerDir = "testdata/out_docker"
fontFile = "/tmp/MyricaM.TTC"
emojiDir = "/usr/local/src/noto-emoji/png/128"
emojiFontFile = "/tmp/Symbola_hint.ttf"
)
// nolint
os.Mkdir(outDockerDir, os.ModePerm)
tests := []struct {
desc string
c config.Config
args []string
envs config.EnvVars
wantErr bool
existsFile string
}{
{
desc: "正常系: 日本語や絵文字を描画できる",
c: func() config.Config {
c := newDefaultConfig()
c.Outpath = outDockerDir + "/root_on_docker_test_japanese.png"
c.Writer = nil
c.FontFile = fontFile
// c.EmojiDir = emojiDir
c.EmojiFontFile = emojiFontFile
return c
}(),
args: []string{"\x1b[31mあいうえお\n\x1b[32;43mあ😃a👍!👀ん👄"},
envs: config.EnvVars{
EmojiDir: emojiDir,
},
wantErr: false,
existsFile: outDockerDir + "/root_on_docker_test_japanese.png",
},
{
desc: "正常系: 絵文字を連続して描画しても背景色が絵文字を上書きしない",
c: func() config.Config {
c := newDefaultConfig()
c.Outpath = outDockerDir + "/root_on_docker_test_emoji.png"
c.Writer = nil
c.FontFile = fontFile
// c.EmojiDir = emojiDir
c.EmojiFontFile = emojiFontFile
return c
}(),
args: []string{"😃👍👀👄"},
envs: config.EnvVars{
EmojiDir: emojiDir,
},
wantErr: false,
existsFile: outDockerDir + "/root_on_docker_test_emoji.png",
},
{
desc: "正常系: 特殊な絵文字を使う",
c: func() config.Config {
c := newDefaultConfig()
c.Outpath = outDockerDir + "/root_on_docker_test_shellgei_emoji.png"
c.Writer = nil
c.UseEmojiFont = true
c.FontFile = fontFile
// c.EmojiDir = emojiDir
c.EmojiFontFile = emojiFontFile
return c
}(),
args: []string{"\x1b[31mあいうえお\n\x1b[32;43mあ😃a👍!👀ん👄"},
envs: config.EnvVars{
EmojiDir: emojiDir,
},
wantErr: false,
existsFile: outDockerDir + "/root_on_docker_test_shellgei_emoji.png",
},
}
for _, tt := range tests {
t.Run(tt.desc, func(t *testing.T) {
assert := assert.New(t)
err := RunRootCommand(tt.c, tt.args, tt.envs)
if tt.wantErr {
assert.Error(err)
return
}
assert.NoError(err)
if tt.existsFile != "" {
_, err := os.Stat(tt.existsFile)
got := os.IsNotExist(err)
assert.False(got)
}
})
}
}