12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148 |
- package archive
- import (
- "archive/tar"
- "bytes"
- "fmt"
- "io"
- "io/ioutil"
- "os"
- "os/exec"
- "path/filepath"
- "runtime"
- "strings"
- "testing"
- "time"
- )
- var tmp string
- func init() {
- tmp = "/tmp/"
- if runtime.GOOS == "windows" {
- tmp = os.Getenv("TEMP") + `\`
- }
- }
- func TestIsArchiveNilHeader(t *testing.T) {
- out := IsArchive(nil)
- if out {
- t.Fatalf("isArchive should return false as nil is not a valid archive header")
- }
- }
- func TestIsArchiveInvalidHeader(t *testing.T) {
- header := []byte{0x00, 0x01, 0x02}
- out := IsArchive(header)
- if out {
- t.Fatalf("isArchive should return false as %s is not a valid archive header", header)
- }
- }
- func TestIsArchiveBzip2(t *testing.T) {
- header := []byte{0x42, 0x5A, 0x68}
- out := IsArchive(header)
- if !out {
- t.Fatalf("isArchive should return true as %s is a bz2 header", header)
- }
- }
- func TestIsArchive7zip(t *testing.T) {
- header := []byte{0x50, 0x4b, 0x03, 0x04}
- out := IsArchive(header)
- if out {
- t.Fatalf("isArchive should return false as %s is a 7z header and it is not supported", header)
- }
- }
- func TestIsArchivePathDir(t *testing.T) {
- cmd := exec.Command("sh", "-c", "mkdir -p /tmp/archivedir")
- output, err := cmd.CombinedOutput()
- if err != nil {
- t.Fatalf("Fail to create an archive file for test : %s.", output)
- }
- if IsArchivePath(tmp + "archivedir") {
- t.Fatalf("Incorrectly recognised directory as an archive")
- }
- }
- func TestIsArchivePathInvalidFile(t *testing.T) {
- cmd := exec.Command("sh", "-c", "dd if=/dev/zero bs=1K count=1 of=/tmp/archive && gzip --stdout /tmp/archive > /tmp/archive.gz")
- output, err := cmd.CombinedOutput()
- if err != nil {
- t.Fatalf("Fail to create an archive file for test : %s.", output)
- }
- if IsArchivePath(tmp + "archive") {
- t.Fatalf("Incorrectly recognised invalid tar path as archive")
- }
- if IsArchivePath(tmp + "archive.gz") {
- t.Fatalf("Incorrectly recognised invalid compressed tar path as archive")
- }
- }
- func TestIsArchivePathTar(t *testing.T) {
- cmd := exec.Command("sh", "-c", "touch /tmp/archivedata && tar -cf /tmp/archive /tmp/archivedata && gzip --stdout /tmp/archive > /tmp/archive.gz")
- output, err := cmd.CombinedOutput()
- if err != nil {
- t.Fatalf("Fail to create an archive file for test : %s.", output)
- }
- if !IsArchivePath(tmp + "/archive") {
- t.Fatalf("Did not recognise valid tar path as archive")
- }
- if !IsArchivePath(tmp + "archive.gz") {
- t.Fatalf("Did not recognise valid compressed tar path as archive")
- }
- }
- func TestDecompressStreamGzip(t *testing.T) {
- cmd := exec.Command("sh", "-c", "touch /tmp/archive && gzip -f /tmp/archive")
- output, err := cmd.CombinedOutput()
- if err != nil {
- t.Fatalf("Fail to create an archive file for test : %s.", output)
- }
- archive, err := os.Open(tmp + "archive.gz")
- _, err = DecompressStream(archive)
- if err != nil {
- t.Fatalf("Failed to decompress a gzip file.")
- }
- }
- func TestDecompressStreamBzip2(t *testing.T) {
- cmd := exec.Command("sh", "-c", "touch /tmp/archive && bzip2 -f /tmp/archive")
- output, err := cmd.CombinedOutput()
- if err != nil {
- t.Fatalf("Fail to create an archive file for test : %s.", output)
- }
- archive, err := os.Open(tmp + "archive.bz2")
- _, err = DecompressStream(archive)
- if err != nil {
- t.Fatalf("Failed to decompress a bzip2 file.")
- }
- }
- func TestDecompressStreamXz(t *testing.T) {
- if runtime.GOOS == "windows" {
- t.Skip("Xz not present in msys2")
- }
- cmd := exec.Command("sh", "-c", "touch /tmp/archive && xz -f /tmp/archive")
- output, err := cmd.CombinedOutput()
- if err != nil {
- t.Fatalf("Fail to create an archive file for test : %s.", output)
- }
- archive, err := os.Open(tmp + "archive.xz")
- _, err = DecompressStream(archive)
- if err != nil {
- t.Fatalf("Failed to decompress a xz file.")
- }
- }
- func TestCompressStreamXzUnsuported(t *testing.T) {
- dest, err := os.Create(tmp + "dest")
- if err != nil {
- t.Fatalf("Fail to create the destination file")
- }
- _, err = CompressStream(dest, Xz)
- if err == nil {
- t.Fatalf("Should fail as xz is unsupported for compression format.")
- }
- }
- func TestCompressStreamBzip2Unsupported(t *testing.T) {
- dest, err := os.Create(tmp + "dest")
- if err != nil {
- t.Fatalf("Fail to create the destination file")
- }
- _, err = CompressStream(dest, Xz)
- if err == nil {
- t.Fatalf("Should fail as xz is unsupported for compression format.")
- }
- }
- func TestCompressStreamInvalid(t *testing.T) {
- dest, err := os.Create(tmp + "dest")
- if err != nil {
- t.Fatalf("Fail to create the destination file")
- }
- _, err = CompressStream(dest, -1)
- if err == nil {
- t.Fatalf("Should fail as xz is unsupported for compression format.")
- }
- }
- func TestExtensionInvalid(t *testing.T) {
- compression := Compression(-1)
- output := compression.Extension()
- if output != "" {
- t.Fatalf("The extension of an invalid compression should be an empty string.")
- }
- }
- func TestExtensionUncompressed(t *testing.T) {
- compression := Uncompressed
- output := compression.Extension()
- if output != "tar" {
- t.Fatalf("The extension of a uncompressed archive should be 'tar'.")
- }
- }
- func TestExtensionBzip2(t *testing.T) {
- compression := Bzip2
- output := compression.Extension()
- if output != "tar.bz2" {
- t.Fatalf("The extension of a bzip2 archive should be 'tar.bz2'")
- }
- }
- func TestExtensionGzip(t *testing.T) {
- compression := Gzip
- output := compression.Extension()
- if output != "tar.gz" {
- t.Fatalf("The extension of a bzip2 archive should be 'tar.gz'")
- }
- }
- func TestExtensionXz(t *testing.T) {
- compression := Xz
- output := compression.Extension()
- if output != "tar.xz" {
- t.Fatalf("The extension of a bzip2 archive should be 'tar.xz'")
- }
- }
- func TestCmdStreamLargeStderr(t *testing.T) {
- cmd := exec.Command("sh", "-c", "dd if=/dev/zero bs=1k count=1000 of=/dev/stderr; echo hello")
- out, _, err := cmdStream(cmd, nil)
- if err != nil {
- t.Fatalf("Failed to start command: %s", err)
- }
- errCh := make(chan error)
- go func() {
- _, err := io.Copy(ioutil.Discard, out)
- errCh <- err
- }()
- select {
- case err := <-errCh:
- if err != nil {
- t.Fatalf("Command should not have failed (err=%.100s...)", err)
- }
- case <-time.After(5 * time.Second):
- t.Fatalf("Command did not complete in 5 seconds; probable deadlock")
- }
- }
- func TestCmdStreamBad(t *testing.T) {
- // TODO Windows: Figure out why this is failing in CI but not locally
- if runtime.GOOS == "windows" {
- t.Skip("Failing on Windows CI machines")
- }
- badCmd := exec.Command("sh", "-c", "echo hello; echo >&2 error couldn\\'t reverse the phase pulser; exit 1")
- out, _, err := cmdStream(badCmd, nil)
- if err != nil {
- t.Fatalf("Failed to start command: %s", err)
- }
- if output, err := ioutil.ReadAll(out); err == nil {
- t.Fatalf("Command should have failed")
- } else if err.Error() != "exit status 1: error couldn't reverse the phase pulser\n" {
- t.Fatalf("Wrong error value (%s)", err)
- } else if s := string(output); s != "hello\n" {
- t.Fatalf("Command output should be '%s', not '%s'", "hello\\n", output)
- }
- }
- func TestCmdStreamGood(t *testing.T) {
- cmd := exec.Command("sh", "-c", "echo hello; exit 0")
- out, _, err := cmdStream(cmd, nil)
- if err != nil {
- t.Fatal(err)
- }
- if output, err := ioutil.ReadAll(out); err != nil {
- t.Fatalf("Command should not have failed (err=%s)", err)
- } else if s := string(output); s != "hello\n" {
- t.Fatalf("Command output should be '%s', not '%s'", "hello\\n", output)
- }
- }
- func TestUntarPathWithInvalidDest(t *testing.T) {
- tempFolder, err := ioutil.TempDir("", "docker-archive-test")
- if err != nil {
- t.Fatal(err)
- }
- defer os.RemoveAll(tempFolder)
- invalidDestFolder := filepath.Join(tempFolder, "invalidDest")
- // Create a src file
- srcFile := filepath.Join(tempFolder, "src")
- tarFile := filepath.Join(tempFolder, "src.tar")
- os.Create(srcFile)
- os.Create(invalidDestFolder) // being a file (not dir) should cause an error
- // Translate back to Unix semantics as next exec.Command is run under sh
- srcFileU := srcFile
- tarFileU := tarFile
- if runtime.GOOS == "windows" {
- tarFileU = "/tmp/" + filepath.Base(filepath.Dir(tarFile)) + "/src.tar"
- srcFileU = "/tmp/" + filepath.Base(filepath.Dir(srcFile)) + "/src"
- }
- cmd := exec.Command("sh", "-c", "tar cf "+tarFileU+" "+srcFileU)
- _, err = cmd.CombinedOutput()
- if err != nil {
- t.Fatal(err)
- }
- err = UntarPath(tarFile, invalidDestFolder)
- if err == nil {
- t.Fatalf("UntarPath with invalid destination path should throw an error.")
- }
- }
- func TestUntarPathWithInvalidSrc(t *testing.T) {
- dest, err := ioutil.TempDir("", "docker-archive-test")
- if err != nil {
- t.Fatalf("Fail to create the destination file")
- }
- defer os.RemoveAll(dest)
- err = UntarPath("/invalid/path", dest)
- if err == nil {
- t.Fatalf("UntarPath with invalid src path should throw an error.")
- }
- }
- func TestUntarPath(t *testing.T) {
- tmpFolder, err := ioutil.TempDir("", "docker-archive-test")
- if err != nil {
- t.Fatal(err)
- }
- defer os.RemoveAll(tmpFolder)
- srcFile := filepath.Join(tmpFolder, "src")
- tarFile := filepath.Join(tmpFolder, "src.tar")
- os.Create(filepath.Join(tmpFolder, "src"))
- destFolder := filepath.Join(tmpFolder, "dest")
- err = os.MkdirAll(destFolder, 0740)
- if err != nil {
- t.Fatalf("Fail to create the destination file")
- }
- // Translate back to Unix semantics as next exec.Command is run under sh
- srcFileU := srcFile
- tarFileU := tarFile
- if runtime.GOOS == "windows" {
- tarFileU = "/tmp/" + filepath.Base(filepath.Dir(tarFile)) + "/src.tar"
- srcFileU = "/tmp/" + filepath.Base(filepath.Dir(srcFile)) + "/src"
- }
- cmd := exec.Command("sh", "-c", "tar cf "+tarFileU+" "+srcFileU)
- _, err = cmd.CombinedOutput()
- if err != nil {
- t.Fatal(err)
- }
- err = UntarPath(tarFile, destFolder)
- if err != nil {
- t.Fatalf("UntarPath shouldn't throw an error, %s.", err)
- }
- expectedFile := filepath.Join(destFolder, srcFileU)
- _, err = os.Stat(expectedFile)
- if err != nil {
- t.Fatalf("Destination folder should contain the source file but did not.")
- }
- }
- // Do the same test as above but with the destination as file, it should fail
- func TestUntarPathWithDestinationFile(t *testing.T) {
- tmpFolder, err := ioutil.TempDir("", "docker-archive-test")
- if err != nil {
- t.Fatal(err)
- }
- defer os.RemoveAll(tmpFolder)
- srcFile := filepath.Join(tmpFolder, "src")
- tarFile := filepath.Join(tmpFolder, "src.tar")
- os.Create(filepath.Join(tmpFolder, "src"))
- // Translate back to Unix semantics as next exec.Command is run under sh
- srcFileU := srcFile
- tarFileU := tarFile
- if runtime.GOOS == "windows" {
- tarFileU = "/tmp/" + filepath.Base(filepath.Dir(tarFile)) + "/src.tar"
- srcFileU = "/tmp/" + filepath.Base(filepath.Dir(srcFile)) + "/src"
- }
- cmd := exec.Command("sh", "-c", "tar cf "+tarFileU+" "+srcFileU)
- _, err = cmd.CombinedOutput()
- if err != nil {
- t.Fatal(err)
- }
- destFile := filepath.Join(tmpFolder, "dest")
- _, err = os.Create(destFile)
- if err != nil {
- t.Fatalf("Fail to create the destination file")
- }
- err = UntarPath(tarFile, destFile)
- if err == nil {
- t.Fatalf("UntarPath should throw an error if the destination if a file")
- }
- }
- // Do the same test as above but with the destination folder already exists
- // and the destination file is a directory
- // It's working, see https://github.com/docker/docker/issues/10040
- func TestUntarPathWithDestinationSrcFileAsFolder(t *testing.T) {
- tmpFolder, err := ioutil.TempDir("", "docker-archive-test")
- if err != nil {
- t.Fatal(err)
- }
- defer os.RemoveAll(tmpFolder)
- srcFile := filepath.Join(tmpFolder, "src")
- tarFile := filepath.Join(tmpFolder, "src.tar")
- os.Create(srcFile)
- // Translate back to Unix semantics as next exec.Command is run under sh
- srcFileU := srcFile
- tarFileU := tarFile
- if runtime.GOOS == "windows" {
- tarFileU = "/tmp/" + filepath.Base(filepath.Dir(tarFile)) + "/src.tar"
- srcFileU = "/tmp/" + filepath.Base(filepath.Dir(srcFile)) + "/src"
- }
- cmd := exec.Command("sh", "-c", "tar cf "+tarFileU+" "+srcFileU)
- _, err = cmd.CombinedOutput()
- if err != nil {
- t.Fatal(err)
- }
- destFolder := filepath.Join(tmpFolder, "dest")
- err = os.MkdirAll(destFolder, 0740)
- if err != nil {
- t.Fatalf("Fail to create the destination folder")
- }
- // Let's create a folder that will has the same path as the extracted file (from tar)
- destSrcFileAsFolder := filepath.Join(destFolder, srcFileU)
- err = os.MkdirAll(destSrcFileAsFolder, 0740)
- if err != nil {
- t.Fatal(err)
- }
- err = UntarPath(tarFile, destFolder)
- if err != nil {
- t.Fatalf("UntarPath should throw not throw an error if the extracted file already exists and is a folder")
- }
- }
- func TestCopyWithTarInvalidSrc(t *testing.T) {
- tempFolder, err := ioutil.TempDir("", "docker-archive-test")
- if err != nil {
- t.Fatal(nil)
- }
- destFolder := filepath.Join(tempFolder, "dest")
- invalidSrc := filepath.Join(tempFolder, "doesnotexists")
- err = os.MkdirAll(destFolder, 0740)
- if err != nil {
- t.Fatal(err)
- }
- err = CopyWithTar(invalidSrc, destFolder)
- if err == nil {
- t.Fatalf("archiver.CopyWithTar with invalid src path should throw an error.")
- }
- }
- func TestCopyWithTarInexistentDestWillCreateIt(t *testing.T) {
- tempFolder, err := ioutil.TempDir("", "docker-archive-test")
- if err != nil {
- t.Fatal(nil)
- }
- srcFolder := filepath.Join(tempFolder, "src")
- inexistentDestFolder := filepath.Join(tempFolder, "doesnotexists")
- err = os.MkdirAll(srcFolder, 0740)
- if err != nil {
- t.Fatal(err)
- }
- err = CopyWithTar(srcFolder, inexistentDestFolder)
- if err != nil {
- t.Fatalf("CopyWithTar with an inexistent folder shouldn't fail.")
- }
- _, err = os.Stat(inexistentDestFolder)
- if err != nil {
- t.Fatalf("CopyWithTar with an inexistent folder should create it.")
- }
- }
- // Test CopyWithTar with a file as src
- func TestCopyWithTarSrcFile(t *testing.T) {
- folder, err := ioutil.TempDir("", "docker-archive-test")
- if err != nil {
- t.Fatal(err)
- }
- defer os.RemoveAll(folder)
- dest := filepath.Join(folder, "dest")
- srcFolder := filepath.Join(folder, "src")
- src := filepath.Join(folder, filepath.Join("src", "src"))
- err = os.MkdirAll(srcFolder, 0740)
- if err != nil {
- t.Fatal(err)
- }
- err = os.MkdirAll(dest, 0740)
- if err != nil {
- t.Fatal(err)
- }
- ioutil.WriteFile(src, []byte("content"), 0777)
- err = CopyWithTar(src, dest)
- if err != nil {
- t.Fatalf("archiver.CopyWithTar shouldn't throw an error, %s.", err)
- }
- _, err = os.Stat(dest)
- // FIXME Check the content
- if err != nil {
- t.Fatalf("Destination file should be the same as the source.")
- }
- }
- // Test CopyWithTar with a folder as src
- func TestCopyWithTarSrcFolder(t *testing.T) {
- folder, err := ioutil.TempDir("", "docker-archive-test")
- if err != nil {
- t.Fatal(err)
- }
- defer os.RemoveAll(folder)
- dest := filepath.Join(folder, "dest")
- src := filepath.Join(folder, filepath.Join("src", "folder"))
- err = os.MkdirAll(src, 0740)
- if err != nil {
- t.Fatal(err)
- }
- err = os.MkdirAll(dest, 0740)
- if err != nil {
- t.Fatal(err)
- }
- ioutil.WriteFile(filepath.Join(src, "file"), []byte("content"), 0777)
- err = CopyWithTar(src, dest)
- if err != nil {
- t.Fatalf("archiver.CopyWithTar shouldn't throw an error, %s.", err)
- }
- _, err = os.Stat(dest)
- // FIXME Check the content (the file inside)
- if err != nil {
- t.Fatalf("Destination folder should contain the source file but did not.")
- }
- }
- func TestCopyFileWithTarInvalidSrc(t *testing.T) {
- tempFolder, err := ioutil.TempDir("", "docker-archive-test")
- if err != nil {
- t.Fatal(err)
- }
- defer os.RemoveAll(tempFolder)
- destFolder := filepath.Join(tempFolder, "dest")
- err = os.MkdirAll(destFolder, 0740)
- if err != nil {
- t.Fatal(err)
- }
- invalidFile := filepath.Join(tempFolder, "doesnotexists")
- err = CopyFileWithTar(invalidFile, destFolder)
- if err == nil {
- t.Fatalf("archiver.CopyWithTar with invalid src path should throw an error.")
- }
- }
- func TestCopyFileWithTarInexistentDestWillCreateIt(t *testing.T) {
- tempFolder, err := ioutil.TempDir("", "docker-archive-test")
- if err != nil {
- t.Fatal(nil)
- }
- defer os.RemoveAll(tempFolder)
- srcFile := filepath.Join(tempFolder, "src")
- inexistentDestFolder := filepath.Join(tempFolder, "doesnotexists")
- _, err = os.Create(srcFile)
- if err != nil {
- t.Fatal(err)
- }
- err = CopyFileWithTar(srcFile, inexistentDestFolder)
- if err != nil {
- t.Fatalf("CopyWithTar with an inexistent folder shouldn't fail.")
- }
- _, err = os.Stat(inexistentDestFolder)
- if err != nil {
- t.Fatalf("CopyWithTar with an inexistent folder should create it.")
- }
- // FIXME Test the src file and content
- }
- func TestCopyFileWithTarSrcFolder(t *testing.T) {
- folder, err := ioutil.TempDir("", "docker-archive-copyfilewithtar-test")
- if err != nil {
- t.Fatal(err)
- }
- defer os.RemoveAll(folder)
- dest := filepath.Join(folder, "dest")
- src := filepath.Join(folder, "srcfolder")
- err = os.MkdirAll(src, 0740)
- if err != nil {
- t.Fatal(err)
- }
- err = os.MkdirAll(dest, 0740)
- if err != nil {
- t.Fatal(err)
- }
- err = CopyFileWithTar(src, dest)
- if err == nil {
- t.Fatalf("CopyFileWithTar should throw an error with a folder.")
- }
- }
- func TestCopyFileWithTarSrcFile(t *testing.T) {
- folder, err := ioutil.TempDir("", "docker-archive-test")
- if err != nil {
- t.Fatal(err)
- }
- defer os.RemoveAll(folder)
- dest := filepath.Join(folder, "dest")
- srcFolder := filepath.Join(folder, "src")
- src := filepath.Join(folder, filepath.Join("src", "src"))
- err = os.MkdirAll(srcFolder, 0740)
- if err != nil {
- t.Fatal(err)
- }
- err = os.MkdirAll(dest, 0740)
- if err != nil {
- t.Fatal(err)
- }
- ioutil.WriteFile(src, []byte("content"), 0777)
- err = CopyWithTar(src, dest+"/")
- if err != nil {
- t.Fatalf("archiver.CopyFileWithTar shouldn't throw an error, %s.", err)
- }
- _, err = os.Stat(dest)
- if err != nil {
- t.Fatalf("Destination folder should contain the source file but did not.")
- }
- }
- func TestTarFiles(t *testing.T) {
- // TODO Windows: Figure out how to port this test.
- if runtime.GOOS == "windows" {
- t.Skip("Failing on Windows")
- }
- // try without hardlinks
- if err := checkNoChanges(1000, false); err != nil {
- t.Fatal(err)
- }
- // try with hardlinks
- if err := checkNoChanges(1000, true); err != nil {
- t.Fatal(err)
- }
- }
- func checkNoChanges(fileNum int, hardlinks bool) error {
- srcDir, err := ioutil.TempDir("", "docker-test-srcDir")
- if err != nil {
- return err
- }
- defer os.RemoveAll(srcDir)
- destDir, err := ioutil.TempDir("", "docker-test-destDir")
- if err != nil {
- return err
- }
- defer os.RemoveAll(destDir)
- _, err = prepareUntarSourceDirectory(fileNum, srcDir, hardlinks)
- if err != nil {
- return err
- }
- err = TarUntar(srcDir, destDir)
- if err != nil {
- return err
- }
- changes, err := ChangesDirs(destDir, srcDir)
- if err != nil {
- return err
- }
- if len(changes) > 0 {
- return fmt.Errorf("with %d files and %v hardlinks: expected 0 changes, got %d", fileNum, hardlinks, len(changes))
- }
- return nil
- }
- func tarUntar(t *testing.T, origin string, options *TarOptions) ([]Change, error) {
- archive, err := TarWithOptions(origin, options)
- if err != nil {
- t.Fatal(err)
- }
- defer archive.Close()
- buf := make([]byte, 10)
- if _, err := archive.Read(buf); err != nil {
- return nil, err
- }
- wrap := io.MultiReader(bytes.NewReader(buf), archive)
- detectedCompression := DetectCompression(buf)
- compression := options.Compression
- if detectedCompression.Extension() != compression.Extension() {
- return nil, fmt.Errorf("Wrong compression detected. Actual compression: %s, found %s", compression.Extension(), detectedCompression.Extension())
- }
- tmp, err := ioutil.TempDir("", "docker-test-untar")
- if err != nil {
- return nil, err
- }
- defer os.RemoveAll(tmp)
- if err := Untar(wrap, tmp, nil); err != nil {
- return nil, err
- }
- if _, err := os.Stat(tmp); err != nil {
- return nil, err
- }
- return ChangesDirs(origin, tmp)
- }
- func TestTarUntar(t *testing.T) {
- // TODO Windows: Figure out how to fix this test.
- if runtime.GOOS == "windows" {
- t.Skip("Failing on Windows")
- }
- origin, err := ioutil.TempDir("", "docker-test-untar-origin")
- if err != nil {
- t.Fatal(err)
- }
- defer os.RemoveAll(origin)
- if err := ioutil.WriteFile(filepath.Join(origin, "1"), []byte("hello world"), 0700); err != nil {
- t.Fatal(err)
- }
- if err := ioutil.WriteFile(filepath.Join(origin, "2"), []byte("welcome!"), 0700); err != nil {
- t.Fatal(err)
- }
- if err := ioutil.WriteFile(filepath.Join(origin, "3"), []byte("will be ignored"), 0700); err != nil {
- t.Fatal(err)
- }
- for _, c := range []Compression{
- Uncompressed,
- Gzip,
- } {
- changes, err := tarUntar(t, origin, &TarOptions{
- Compression: c,
- ExcludePatterns: []string{"3"},
- })
- if err != nil {
- t.Fatalf("Error tar/untar for compression %s: %s", c.Extension(), err)
- }
- if len(changes) != 1 || changes[0].Path != "/3" {
- t.Fatalf("Unexpected differences after tarUntar: %v", changes)
- }
- }
- }
- func TestTarWithOptions(t *testing.T) {
- // TODO Windows: Figure out how to fix this test.
- if runtime.GOOS == "windows" {
- t.Skip("Failing on Windows")
- }
- origin, err := ioutil.TempDir("", "docker-test-untar-origin")
- if err != nil {
- t.Fatal(err)
- }
- if _, err := ioutil.TempDir(origin, "folder"); err != nil {
- t.Fatal(err)
- }
- defer os.RemoveAll(origin)
- if err := ioutil.WriteFile(filepath.Join(origin, "1"), []byte("hello world"), 0700); err != nil {
- t.Fatal(err)
- }
- if err := ioutil.WriteFile(filepath.Join(origin, "2"), []byte("welcome!"), 0700); err != nil {
- t.Fatal(err)
- }
- cases := []struct {
- opts *TarOptions
- numChanges int
- }{
- {&TarOptions{IncludeFiles: []string{"1"}}, 2},
- {&TarOptions{ExcludePatterns: []string{"2"}}, 1},
- {&TarOptions{ExcludePatterns: []string{"1", "folder*"}}, 2},
- {&TarOptions{IncludeFiles: []string{"1", "1"}}, 2},
- {&TarOptions{IncludeFiles: []string{"1"}, RebaseNames: map[string]string{"1": "test"}}, 4},
- }
- for _, testCase := range cases {
- changes, err := tarUntar(t, origin, testCase.opts)
- if err != nil {
- t.Fatalf("Error tar/untar when testing inclusion/exclusion: %s", err)
- }
- if len(changes) != testCase.numChanges {
- t.Errorf("Expected %d changes, got %d for %+v:",
- testCase.numChanges, len(changes), testCase.opts)
- }
- }
- }
- // Some tar archives such as http://haproxy.1wt.eu/download/1.5/src/devel/haproxy-1.5-dev21.tar.gz
- // use PAX Global Extended Headers.
- // Failing prevents the archives from being uncompressed during ADD
- func TestTypeXGlobalHeaderDoesNotFail(t *testing.T) {
- hdr := tar.Header{Typeflag: tar.TypeXGlobalHeader}
- tmpDir, err := ioutil.TempDir("", "docker-test-archive-pax-test")
- if err != nil {
- t.Fatal(err)
- }
- defer os.RemoveAll(tmpDir)
- err = createTarFile(filepath.Join(tmpDir, "pax_global_header"), tmpDir, &hdr, nil, true, nil)
- if err != nil {
- t.Fatal(err)
- }
- }
- // Some tar have both GNU specific (huge uid) and Ustar specific (long name) things.
- // Not supposed to happen (should use PAX instead of Ustar for long name) but it does and it should still work.
- func TestUntarUstarGnuConflict(t *testing.T) {
- f, err := os.Open("testdata/broken.tar")
- if err != nil {
- t.Fatal(err)
- }
- found := false
- tr := tar.NewReader(f)
- // Iterate through the files in the archive.
- for {
- hdr, err := tr.Next()
- if err == io.EOF {
- // end of tar archive
- break
- }
- if err != nil {
- t.Fatal(err)
- }
- if hdr.Name == "root/.cpanm/work/1395823785.24209/Plack-1.0030/blib/man3/Plack::Middleware::LighttpdScriptNameFix.3pm" {
- found = true
- break
- }
- }
- if !found {
- t.Fatalf("%s not found in the archive", "root/.cpanm/work/1395823785.24209/Plack-1.0030/blib/man3/Plack::Middleware::LighttpdScriptNameFix.3pm")
- }
- }
- func prepareUntarSourceDirectory(numberOfFiles int, targetPath string, makeLinks bool) (int, error) {
- fileData := []byte("fooo")
- for n := 0; n < numberOfFiles; n++ {
- fileName := fmt.Sprintf("file-%d", n)
- if err := ioutil.WriteFile(filepath.Join(targetPath, fileName), fileData, 0700); err != nil {
- return 0, err
- }
- if makeLinks {
- if err := os.Link(filepath.Join(targetPath, fileName), filepath.Join(targetPath, fileName+"-link")); err != nil {
- return 0, err
- }
- }
- }
- totalSize := numberOfFiles * len(fileData)
- return totalSize, nil
- }
- func BenchmarkTarUntar(b *testing.B) {
- origin, err := ioutil.TempDir("", "docker-test-untar-origin")
- if err != nil {
- b.Fatal(err)
- }
- tempDir, err := ioutil.TempDir("", "docker-test-untar-destination")
- if err != nil {
- b.Fatal(err)
- }
- target := filepath.Join(tempDir, "dest")
- n, err := prepareUntarSourceDirectory(100, origin, false)
- if err != nil {
- b.Fatal(err)
- }
- defer os.RemoveAll(origin)
- defer os.RemoveAll(tempDir)
- b.ResetTimer()
- b.SetBytes(int64(n))
- for n := 0; n < b.N; n++ {
- err := TarUntar(origin, target)
- if err != nil {
- b.Fatal(err)
- }
- os.RemoveAll(target)
- }
- }
- func BenchmarkTarUntarWithLinks(b *testing.B) {
- origin, err := ioutil.TempDir("", "docker-test-untar-origin")
- if err != nil {
- b.Fatal(err)
- }
- tempDir, err := ioutil.TempDir("", "docker-test-untar-destination")
- if err != nil {
- b.Fatal(err)
- }
- target := filepath.Join(tempDir, "dest")
- n, err := prepareUntarSourceDirectory(100, origin, true)
- if err != nil {
- b.Fatal(err)
- }
- defer os.RemoveAll(origin)
- defer os.RemoveAll(tempDir)
- b.ResetTimer()
- b.SetBytes(int64(n))
- for n := 0; n < b.N; n++ {
- err := TarUntar(origin, target)
- if err != nil {
- b.Fatal(err)
- }
- os.RemoveAll(target)
- }
- }
- func TestUntarInvalidFilenames(t *testing.T) {
- // TODO Windows: Figure out how to fix this test.
- if runtime.GOOS == "windows" {
- t.Skip("Passes but hits breakoutError: platform and architecture is not supported")
- }
- for i, headers := range [][]*tar.Header{
- {
- {
- Name: "../victim/dotdot",
- Typeflag: tar.TypeReg,
- Mode: 0644,
- },
- },
- {
- {
- // Note the leading slash
- Name: "/../victim/slash-dotdot",
- Typeflag: tar.TypeReg,
- Mode: 0644,
- },
- },
- } {
- if err := testBreakout("untar", "docker-TestUntarInvalidFilenames", headers); err != nil {
- t.Fatalf("i=%d. %v", i, err)
- }
- }
- }
- func TestUntarHardlinkToSymlink(t *testing.T) {
- // TODO Windows. There may be a way of running this, but turning off for now
- if runtime.GOOS == "windows" {
- t.Skip("hardlinks on Windows")
- }
- for i, headers := range [][]*tar.Header{
- {
- {
- Name: "symlink1",
- Typeflag: tar.TypeSymlink,
- Linkname: "regfile",
- Mode: 0644,
- },
- {
- Name: "symlink2",
- Typeflag: tar.TypeLink,
- Linkname: "symlink1",
- Mode: 0644,
- },
- {
- Name: "regfile",
- Typeflag: tar.TypeReg,
- Mode: 0644,
- },
- },
- } {
- if err := testBreakout("untar", "docker-TestUntarHardlinkToSymlink", headers); err != nil {
- t.Fatalf("i=%d. %v", i, err)
- }
- }
- }
- func TestUntarInvalidHardlink(t *testing.T) {
- // TODO Windows. There may be a way of running this, but turning off for now
- if runtime.GOOS == "windows" {
- t.Skip("hardlinks on Windows")
- }
- for i, headers := range [][]*tar.Header{
- { // try reading victim/hello (../)
- {
- Name: "dotdot",
- Typeflag: tar.TypeLink,
- Linkname: "../victim/hello",
- Mode: 0644,
- },
- },
- { // try reading victim/hello (/../)
- {
- Name: "slash-dotdot",
- Typeflag: tar.TypeLink,
- // Note the leading slash
- Linkname: "/../victim/hello",
- Mode: 0644,
- },
- },
- { // try writing victim/file
- {
- Name: "loophole-victim",
- Typeflag: tar.TypeLink,
- Linkname: "../victim",
- Mode: 0755,
- },
- {
- Name: "loophole-victim/file",
- Typeflag: tar.TypeReg,
- Mode: 0644,
- },
- },
- { // try reading victim/hello (hardlink, symlink)
- {
- Name: "loophole-victim",
- Typeflag: tar.TypeLink,
- Linkname: "../victim",
- Mode: 0755,
- },
- {
- Name: "symlink",
- Typeflag: tar.TypeSymlink,
- Linkname: "loophole-victim/hello",
- Mode: 0644,
- },
- },
- { // Try reading victim/hello (hardlink, hardlink)
- {
- Name: "loophole-victim",
- Typeflag: tar.TypeLink,
- Linkname: "../victim",
- Mode: 0755,
- },
- {
- Name: "hardlink",
- Typeflag: tar.TypeLink,
- Linkname: "loophole-victim/hello",
- Mode: 0644,
- },
- },
- { // Try removing victim directory (hardlink)
- {
- Name: "loophole-victim",
- Typeflag: tar.TypeLink,
- Linkname: "../victim",
- Mode: 0755,
- },
- {
- Name: "loophole-victim",
- Typeflag: tar.TypeReg,
- Mode: 0644,
- },
- },
- } {
- if err := testBreakout("untar", "docker-TestUntarInvalidHardlink", headers); err != nil {
- t.Fatalf("i=%d. %v", i, err)
- }
- }
- }
- func TestUntarInvalidSymlink(t *testing.T) {
- // TODO Windows. There may be a way of running this, but turning off for now
- if runtime.GOOS == "windows" {
- t.Skip("hardlinks on Windows")
- }
- for i, headers := range [][]*tar.Header{
- { // try reading victim/hello (../)
- {
- Name: "dotdot",
- Typeflag: tar.TypeSymlink,
- Linkname: "../victim/hello",
- Mode: 0644,
- },
- },
- { // try reading victim/hello (/../)
- {
- Name: "slash-dotdot",
- Typeflag: tar.TypeSymlink,
- // Note the leading slash
- Linkname: "/../victim/hello",
- Mode: 0644,
- },
- },
- { // try writing victim/file
- {
- Name: "loophole-victim",
- Typeflag: tar.TypeSymlink,
- Linkname: "../victim",
- Mode: 0755,
- },
- {
- Name: "loophole-victim/file",
- Typeflag: tar.TypeReg,
- Mode: 0644,
- },
- },
- { // try reading victim/hello (symlink, symlink)
- {
- Name: "loophole-victim",
- Typeflag: tar.TypeSymlink,
- Linkname: "../victim",
- Mode: 0755,
- },
- {
- Name: "symlink",
- Typeflag: tar.TypeSymlink,
- Linkname: "loophole-victim/hello",
- Mode: 0644,
- },
- },
- { // try reading victim/hello (symlink, hardlink)
- {
- Name: "loophole-victim",
- Typeflag: tar.TypeSymlink,
- Linkname: "../victim",
- Mode: 0755,
- },
- {
- Name: "hardlink",
- Typeflag: tar.TypeLink,
- Linkname: "loophole-victim/hello",
- Mode: 0644,
- },
- },
- { // try removing victim directory (symlink)
- {
- Name: "loophole-victim",
- Typeflag: tar.TypeSymlink,
- Linkname: "../victim",
- Mode: 0755,
- },
- {
- Name: "loophole-victim",
- Typeflag: tar.TypeReg,
- Mode: 0644,
- },
- },
- { // try writing to victim/newdir/newfile with a symlink in the path
- {
- // this header needs to be before the next one, or else there is an error
- Name: "dir/loophole",
- Typeflag: tar.TypeSymlink,
- Linkname: "../../victim",
- Mode: 0755,
- },
- {
- Name: "dir/loophole/newdir/newfile",
- Typeflag: tar.TypeReg,
- Mode: 0644,
- },
- },
- } {
- if err := testBreakout("untar", "docker-TestUntarInvalidSymlink", headers); err != nil {
- t.Fatalf("i=%d. %v", i, err)
- }
- }
- }
- func TestTempArchiveCloseMultipleTimes(t *testing.T) {
- reader := ioutil.NopCloser(strings.NewReader("hello"))
- tempArchive, err := NewTempArchive(reader, "")
- buf := make([]byte, 10)
- n, err := tempArchive.Read(buf)
- if n != 5 {
- t.Fatalf("Expected to read 5 bytes. Read %d instead", n)
- }
- for i := 0; i < 3; i++ {
- if err = tempArchive.Close(); err != nil {
- t.Fatalf("i=%d. Unexpected error closing temp archive: %v", i, err)
- }
- }
- }
|