-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeany_test.go
More file actions
211 lines (149 loc) · 4.36 KB
/
geany_test.go
File metadata and controls
211 lines (149 loc) · 4.36 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
// SPDX-FileCopyrightText: 2026 The geany contributors.
// SPDX-License-Identifier: MPL-2.0
package geany_test
import (
"errors"
"os"
"runtime/debug"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/AlphaOne1/geany"
)
//nolint:paralleltest // manipulating os.Stdout cannot be run in parallel
func TestPrintLogo(t *testing.T) {
tempFile, fErr := os.CreateTemp(t.TempDir(), "testPrintLogo")
require.NoError(t, fErr)
defer func() { assert.NoError(t, os.Remove(tempFile.Name())) }()
save := os.Stdout
os.Stdout = tempFile
printErr := geany.PrintLogo(
"Logo {{ .Geany.GoVersion }}",
nil)
os.Stdout = save
require.NoError(t, printErr, "logo printing error")
buildInfo, ok := debug.ReadBuildInfo()
assert.True(t, ok, "build info not found in debug.ReadBuildInfo")
target, targetErr := os.ReadFile(tempFile.Name())
require.NoError(t, targetErr)
assert.Equal(t, string(target), "Logo "+buildInfo.GoVersion+"\n", "Logo does not contain go version")
}
//nolint:paralleltest // manipulating os.Stdout cannot be run in parallel
func TestPrintSimple(t *testing.T) {
tempFile, fErr := os.CreateTemp(t.TempDir(), "testPrintLogo")
require.NoError(t, fErr)
defer func() { assert.NoError(t, os.Remove(tempFile.Name())) }()
save := os.Stdout
os.Stdout = tempFile
printErr := geany.PrintSimple(nil)
os.Stdout = save
require.NoError(t, printErr, "simple writer printing error")
buildInfo, ok := debug.ReadBuildInfo()
assert.True(t, ok, "build info not found in debug.ReadBuildInfo")
target, targetErr := os.ReadFile(tempFile.Name())
require.NoError(t, targetErr)
assert.Contains(t, string(target), `"GoVersion": "`+buildInfo.GoVersion+`"`)
assert.Contains(t, string(target), `"VcsModified": ""`)
assert.Contains(t, string(target), `"VcsRevision": "unknown"`)
assert.Contains(t, string(target), `"VcsTime": "unknown"`)
}
type BrokenNIO struct {
cnt int
From int
To int
}
func (b *BrokenNIO) Read(input []byte) (n int, err error) {
if (b.cnt >= b.From || b.From == 0) &&
(b.cnt < b.To || b.To == 0) {
b.cnt++
return 0, errors.New("broken reader")
}
b.cnt++
return len(input), nil
}
func (b *BrokenNIO) Write(input []byte) (n int, err error) {
if (b.cnt >= b.From || b.From == 0) &&
(b.cnt < b.To || b.To == 0) {
b.cnt++
return 0, errors.New("broken writer")
}
b.cnt++
return len(input), nil
}
func TestBrokenLogoWriter(t *testing.T) {
t.Parallel()
target := BrokenNIO{}
err := geany.PrintLogoWriter(
&target,
"Logo {{ .Geany.GoVersion }}",
nil)
require.Error(t, err, "simple writer printing error")
require.Equal(t,
"broken writer\ncould not write program name: broken writer",
err.Error(),
"not two broken writer errors")
}
func TestBrokenLogoWriterFallback(t *testing.T) {
t.Parallel()
target := BrokenNIO{To: 1}
err := geany.PrintLogoWriter(
&target,
"Logo {{ .Geany.GoVersion }}",
nil)
require.Error(t, err, "simple writer printing error")
require.Equal(t, "broken writer", err.Error(), "just one broken writer error")
}
func TestBrokenLogoWriterAtEnd(t *testing.T) {
t.Parallel()
target := BrokenNIO{From: 2}
err := geany.PrintLogoWriter(
&target,
"Logo {{ .Geany.GoVersion }}",
nil)
require.Error(t, err, "simple writer printing error")
assert.Equal(t, "could not write final newline: broken writer", err.Error(), "just one broken writer error")
}
func TestBrokenSimpleWriter(t *testing.T) {
t.Parallel()
target := BrokenNIO{}
require.Error(t,
geany.PrintSimpleWriter(
&target,
nil),
"simple writer no printing error")
}
func TestBrokenSimpleWriterUserData(t *testing.T) {
t.Parallel()
target := BrokenNIO{From: 1}
require.Error(t,
geany.PrintSimpleWriter(
&target,
nil),
"simple writer no printing error")
}
func TestBrokenSimpleWriterFinal(t *testing.T) {
t.Parallel()
target := BrokenNIO{From: 2}
require.Error(t,
geany.PrintSimpleWriter(
&target,
nil),
"simple writer no printing error")
}
func TestBrokenLogo(t *testing.T) {
t.Parallel()
require.Error(t,
geany.PrintLogo("{{ .Geany }", nil),
"broken logo does produce error")
}
func TestLogoWriterNil(t *testing.T) {
t.Parallel()
require.ErrorIs(t,
geany.PrintLogoWriter(nil, "", nil),
geany.ErrWriterNil,
"nil writer does not produce error")
require.ErrorIs(t,
geany.PrintSimpleWriter(nil, nil),
geany.ErrWriterNil,
"nil writer does not produce error")
}