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
|
//go:build !integration
// +build !integration
package archives
import (
"archive/zip"
"bytes"
"io"
"io/ioutil"
"os"
"testing"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func createDefaultArchive(t *testing.T, archive *zip.Writer) {
testFile, err := archive.Create("temporary_file.txt")
require.NoError(t, err)
_, err = io.WriteString(testFile, "test file")
require.NoError(t, err)
}
func createArchiveWithGitPath(t *testing.T, archive *zip.Writer) {
testGitFile, err := archive.Create(".git/test_file")
require.NoError(t, err)
_, err = io.WriteString(testGitFile, "test git file")
require.NoError(t, err)
}
func testOnArchive(
t *testing.T,
createArchive func(t *testing.T, archive *zip.Writer),
testCase func(t *testing.T, fileName string),
) {
tempFile, err := ioutil.TempFile("", "archive")
require.NoError(t, err)
defer tempFile.Close()
defer os.Remove(tempFile.Name())
archive := zip.NewWriter(tempFile)
defer archive.Close()
createArchive(t, archive)
archive.Close()
tempFile.Close()
testCase(t, tempFile.Name())
}
func TestExtractZipFile(t *testing.T) {
testOnArchive(t, createDefaultArchive, func(t *testing.T, fileName string) {
err := ExtractZipFile(fileName)
require.NoError(t, err)
stat, err := os.Stat("temporary_file.txt")
assert.False(t, os.IsNotExist(err), "Expected temporary_file.txt to exist")
if !os.IsNotExist(err) {
assert.NoError(t, err)
}
if stat != nil {
defer os.Remove("temporary_file.txt")
assert.Equal(t, int64(9), stat.Size())
}
})
}
func TestExtractZipFileWithGitPath(t *testing.T) {
testOnArchive(t, createArchiveWithGitPath, func(t *testing.T, fileName string) {
output := logrus.StandardLogger().Out
var buf bytes.Buffer
logrus.SetOutput(&buf)
defer logrus.SetOutput(output)
err := ExtractZipFile(fileName)
require.NoError(t, err)
assert.Contains(t, buf.String(), "Part of .git directory is on the list of files to extract")
stat, err := os.Stat(".git/test_file")
assert.False(t, os.IsNotExist(err), "Expected .git/test_file to exist")
if !os.IsNotExist(err) {
assert.NoError(t, err)
}
if stat != nil {
defer os.Remove(".git/test_file")
assert.Equal(t, int64(13), stat.Size())
}
})
}
func TestExtractZipFileNotFound(t *testing.T) {
err := ExtractZipFile("non_existing_zip_file.zip")
assert.Error(t, err)
}
|