@@ -18,11 +18,25 @@ package compression
18
18
19
19
import (
20
20
"bytes"
21
+ "compress/gzip"
22
+ "context"
23
+ "io"
21
24
"io/ioutil"
22
25
"math/rand"
26
+ "os"
27
+ "os/exec"
28
+ "path/filepath"
29
+ "runtime"
30
+ "strings"
23
31
"testing"
24
32
)
25
33
34
+ func TestMain (m * testing.M ) {
35
+ // Force initPigz to be called, so tests start with the same initial state
36
+ gzipDecompress (context .Background (), strings .NewReader ("" ))
37
+ os .Exit (m .Run ())
38
+ }
39
+
26
40
// generateData generates data that composed of 2 random parts
27
41
// and single zero-filled part within them.
28
42
// Typically, the compression ratio would be about 67%.
@@ -42,7 +56,7 @@ func generateData(t *testing.T, size int) []byte {
42
56
return append (part0Data , append (part1Data , part2Data ... )... )
43
57
}
44
58
45
- func testCompressDecompress (t * testing.T , size int , compression Compression ) {
59
+ func testCompressDecompress (t * testing.T , size int , compression Compression ) DecompressReadCloser {
46
60
orig := generateData (t , size )
47
61
var b bytes.Buffer
48
62
compressor , err := CompressStream (& b , compression )
@@ -72,12 +86,105 @@ func testCompressDecompress(t *testing.T, size int, compression Compression) {
72
86
if ! bytes .Equal (orig , decompressed ) {
73
87
t .Fatal ("strange decompressed data" )
74
88
}
89
+
90
+ return decompressor
75
91
}
76
92
77
93
func TestCompressDecompressGzip (t * testing.T ) {
78
- testCompressDecompress (t , 1024 * 1024 , Gzip )
94
+ oldUnpigzPath := unpigzPath
95
+ unpigzPath = ""
96
+ defer func () { unpigzPath = oldUnpigzPath }()
97
+
98
+ decompressor := testCompressDecompress (t , 1024 * 1024 , Gzip )
99
+ wrapper := decompressor .(* readCloserWrapper )
100
+ _ , ok := wrapper .Reader .(* gzip.Reader )
101
+ if ! ok {
102
+ t .Fatalf ("unexpected compressor type: %T" , wrapper .Reader )
103
+ }
104
+ }
105
+
106
+ func TestCompressDecompressPigz (t * testing.T ) {
107
+ if _ , err := exec .LookPath ("unpigz" ); err != nil {
108
+ t .Skip ("pigz not installed" )
109
+ }
110
+
111
+ decompressor := testCompressDecompress (t , 1024 * 1024 , Gzip )
112
+ wrapper := decompressor .(* readCloserWrapper )
113
+ _ , ok := wrapper .Reader .(* io.PipeReader )
114
+ if ! ok {
115
+ t .Fatalf ("unexpected compressor type: %T" , wrapper .Reader )
116
+ }
79
117
}
80
118
81
119
func TestCompressDecompressUncompressed (t * testing.T ) {
82
120
testCompressDecompress (t , 1024 * 1024 , Uncompressed )
83
121
}
122
+
123
+ func TestDetectPigz (t * testing.T ) {
124
+ // Create fake PATH with unpigz executable, make sure detectPigz can find it
125
+ tempPath , err := ioutil .TempDir ("" , "containerd_temp_" )
126
+ if err != nil {
127
+ t .Fatal (err )
128
+ }
129
+
130
+ filename := "unpigz"
131
+ if runtime .GOOS == "windows" {
132
+ filename = "unpigz.exe"
133
+ }
134
+
135
+ fullPath := filepath .Join (tempPath , filename )
136
+
137
+ if err := ioutil .WriteFile (fullPath , []byte ("" ), 0111 ); err != nil {
138
+ t .Fatal (err )
139
+ }
140
+
141
+ defer os .RemoveAll (tempPath )
142
+
143
+ oldPath := os .Getenv ("PATH" )
144
+ os .Setenv ("PATH" , tempPath )
145
+ defer os .Setenv ("PATH" , oldPath )
146
+
147
+ if pigzPath := detectPigz (); pigzPath == "" {
148
+ t .Fatal ("failed to detect pigz path" )
149
+ } else if pigzPath != fullPath {
150
+ t .Fatalf ("wrong pigz found: %s != %s" , pigzPath , fullPath )
151
+ }
152
+
153
+ os .Setenv (disablePigzEnv , "1" )
154
+ defer os .Unsetenv (disablePigzEnv )
155
+
156
+ if pigzPath := detectPigz (); pigzPath != "" {
157
+ t .Fatalf ("disable via %s doesn't work" , disablePigzEnv )
158
+ }
159
+ }
160
+
161
+ func TestCmdStream (t * testing.T ) {
162
+ out , err := cmdStream (exec .Command ("sh" , "-c" , "echo hello; exit 0" ), nil )
163
+ if err != nil {
164
+ t .Fatal (err )
165
+ }
166
+
167
+ buf , err := ioutil .ReadAll (out )
168
+ if err != nil {
169
+ t .Fatalf ("failed to read from stdout: %s" , err )
170
+ }
171
+
172
+ if string (buf ) != "hello\n " {
173
+ t .Fatalf ("unexpected command output ('%s' != '%s')" , string (buf ), "hello\n " )
174
+ }
175
+ }
176
+
177
+ func TestCmdStreamBad (t * testing.T ) {
178
+ out , err := cmdStream (exec .Command ("sh" , "-c" , "echo hello; echo >&2 bad result; exit 1" ), nil )
179
+ if err != nil {
180
+ t .Fatalf ("failed to start command: %v" , err )
181
+ }
182
+
183
+ if buf , err := ioutil .ReadAll (out ); err == nil {
184
+ t .Fatal ("command should have failed" )
185
+ } else if err .Error () != "exit status 1: bad result\n " {
186
+ t .Fatalf ("wrong error: %s" , err .Error ())
187
+ } else if string (buf ) != "hello\n " {
188
+ t .Fatalf ("wrong output: %s" , string (buf ))
189
+ }
190
+ }
0 commit comments