File tree 2 files changed +23
-5903
lines changed
2 files changed +23
-5903
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,35 @@ import (
23
23
"io"
24
24
"io/ioutil"
25
25
"math/rand"
26
+ "net/http"
26
27
"os"
27
28
"os/exec"
28
29
"path/filepath"
29
30
"runtime"
30
31
"testing"
31
32
)
32
33
34
+ const benchmarkTestDataURL = "https://git.io/fADcl"
35
+
36
+ var benchmarkTestData []byte
37
+
38
+ func TestMain (m * testing.M ) {
39
+ // Download test data for benchmark from gist
40
+ resp , err := http .Get (benchmarkTestDataURL )
41
+ if err != nil {
42
+ panic (err )
43
+ }
44
+
45
+ defer resp .Body .Close ()
46
+
47
+ benchmarkTestData , err = ioutil .ReadAll (resp .Body )
48
+ if err != nil {
49
+ panic (err )
50
+ }
51
+
52
+ os .Exit (m .Run ())
53
+ }
54
+
33
55
// generateData generates data that composed of 2 random parts
34
56
// and single zero-filled part within them.
35
57
// Typically, the compression ratio would be about 67%.
@@ -184,7 +206,7 @@ func TestCmdStreamBad(t *testing.T) {
184
206
185
207
func generateCompressedData (b * testing.B , sizeInMb int ) []byte {
186
208
sizeInBytes := sizeInMb * 1024 * 1024
187
- data , _ := ioutil . ReadFile ( "testdata/test.json" )
209
+ data := benchmarkTestData
188
210
189
211
for len (data ) < sizeInBytes {
190
212
data = append (data , data ... )
You can’t perform that action at this time.
0 commit comments