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
|
//go:build !integration
// +build !integration
package helpers
import (
"archive/zip"
"bytes"
"compress/gzip"
"io"
"io/ioutil"
"testing"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/require"
"gitlab.com/gitlab-org/gitlab-runner/common"
)
const (
artifactsTestArchivedFile = "archive_file"
artifactsTestArchivedFile2 = "archive_file2"
)
type testNetwork struct {
common.MockNetwork
downloadState common.DownloadState
downloadCalled int
directDownloadCalled int
uploadState common.UploadState
uploadCalled int
uploadFormat common.ArtifactFormat
uploadName string
uploadType string
uploadedFiles []string
}
func (m *testNetwork) DownloadArtifacts(
config common.JobCredentials,
artifactsFile io.WriteCloser,
directDownload *bool,
) common.DownloadState {
m.downloadCalled++
if directDownload != nil && *directDownload {
m.directDownloadCalled++
}
if m.downloadState == common.DownloadSucceeded {
defer func() { _ = artifactsFile.Close() }()
archive := zip.NewWriter(artifactsFile)
_, _ = archive.Create(artifactsTestArchivedFile)
_ = archive.Close()
}
return m.downloadState
}
func (m *testNetwork) consumeZipUpload(reader io.Reader) common.UploadState {
var buffer bytes.Buffer
_, _ = io.Copy(&buffer, reader)
archive, err := zip.NewReader(bytes.NewReader(buffer.Bytes()), int64(buffer.Len()))
if err != nil {
logrus.Warningln(err)
return common.UploadForbidden
}
for _, file := range archive.File {
m.uploadedFiles = append(m.uploadedFiles, file.Name)
}
m.uploadFormat = common.ArtifactFormatZip
return m.uploadState
}
func (m *testNetwork) consumeGzipUpload(reader io.Reader) common.UploadState {
var buffer bytes.Buffer
_, _ = io.Copy(&buffer, reader)
stream := bytes.NewReader(buffer.Bytes())
gz, err := gzip.NewReader(stream)
gz.Multistream(false)
if err != nil {
logrus.Warningln("Invalid gzip stream")
return common.UploadForbidden
}
// Read multiple streams
for {
_, err = io.Copy(ioutil.Discard, gz)
if err != nil {
logrus.Warningln("Invalid gzip stream")
return common.UploadForbidden
}
m.uploadedFiles = append(m.uploadedFiles, gz.Name)
if gz.Reset(stream) == io.EOF {
break
}
gz.Multistream(false)
}
m.uploadFormat = common.ArtifactFormatGzip
return m.uploadState
}
func (m *testNetwork) consumeRawUpload(reader io.Reader) common.UploadState {
_, err := io.Copy(ioutil.Discard, reader)
if err != nil {
return common.UploadFailed
}
m.uploadedFiles = append(m.uploadedFiles, "raw")
m.uploadFormat = common.ArtifactFormatRaw
return m.uploadState
}
func (m *testNetwork) UploadRawArtifacts(
config common.JobCredentials,
reader io.ReadCloser,
options common.ArtifactsOptions,
) (common.UploadState, string) {
m.uploadCalled++
if m.uploadState == common.UploadSucceeded {
m.uploadType = options.Type
m.uploadName = options.BaseName
switch options.Format {
case common.ArtifactFormatZip, common.ArtifactFormatDefault:
return m.consumeZipUpload(reader), ""
case common.ArtifactFormatGzip:
return m.consumeGzipUpload(reader), ""
case common.ArtifactFormatRaw:
return m.consumeRawUpload(reader), ""
default:
return common.UploadForbidden, ""
}
}
return m.uploadState, ""
}
func writeTestFile(t *testing.T, fileName string) {
err := ioutil.WriteFile(fileName, nil, 0600)
require.NoError(t, err, "Writing file:", fileName)
}
|