12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217 |
- package main
- import (
- "fmt"
- "os"
- "os/exec"
- "path/filepath"
- "strings"
- "testing"
- "time"
- )
- func TestBuildCacheADD(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestBuildCacheADD", "1")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testcacheadd1", ".")
- buildCmd.Dir = buildDirectory
- exitCode, err := runCommand(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v", err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- buildDirectory = filepath.Join(workingDirectory, "build_tests", "TestBuildCacheADD", "2")
- buildCmd = exec.Command(dockerBinary, "build", "-t", "testcacheadd2", ".")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- if strings.Contains(out, "Using cache") {
- t.Fatal("2nd build used cache on ADD, it shouldn't")
- }
- deleteImages("testcacheadd1")
- deleteImages("testcacheadd2")
- logDone("build - build two images with ADD")
- }
- func TestBuildSixtySteps(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestBuildSixtySteps")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "foobuildsixtysteps", ".")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("foobuildsixtysteps")
- logDone("build - build an image with sixty build steps")
- }
- func TestAddSingleFileToRoot(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestAdd", "SingleFileToRoot")
- f, err := os.OpenFile(filepath.Join(buildDirectory, "test_file"), os.O_CREATE, 0644)
- if err != nil {
- t.Fatal(err)
- }
- f.Close()
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testaddimg", ".")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testaddimg")
- logDone("build - add single file to root")
- }
- // Issue #3960: "ADD src ." hangs
- func TestAddSingleFileToWorkdir(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestAdd", "SingleFileToWorkdir")
- f, err := os.OpenFile(filepath.Join(buildDirectory, "test_file"), os.O_CREATE, 0644)
- if err != nil {
- t.Fatal(err)
- }
- f.Close()
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testaddimg", ".")
- buildCmd.Dir = buildDirectory
- done := make(chan error)
- go func() {
- out, exitCode, err := runCommandWithOutput(buildCmd)
- if err != nil || exitCode != 0 {
- done <- fmt.Errorf("build failed to complete: %s %v", out, err)
- return
- }
- done <- nil
- }()
- select {
- case <-time.After(5 * time.Second):
- if err := buildCmd.Process.Kill(); err != nil {
- fmt.Printf("could not kill build (pid=%d): %v\n", buildCmd.Process.Pid, err)
- }
- t.Fatal("build timed out")
- case err := <-done:
- if err != nil {
- t.Fatal(err)
- }
- }
- deleteImages("testaddimg")
- logDone("build - add single file to workdir")
- }
- func TestAddSingleFileToExistDir(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestAdd")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testaddimg", "SingleFileToExistDir")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testaddimg")
- logDone("build - add single file to existing dir")
- }
- func TestAddSingleFileToNonExistDir(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestAdd")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testaddimg", "SingleFileToNonExistDir")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testaddimg")
- logDone("build - add single file to non-existing dir")
- }
- func TestAddDirContentToRoot(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestAdd")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testaddimg", "DirContentToRoot")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testaddimg")
- logDone("build - add directory contents to root")
- }
- func TestAddDirContentToExistDir(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestAdd")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testaddimg", "DirContentToExistDir")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testaddimg")
- logDone("build - add directory contents to existing dir")
- }
- func TestAddWholeDirToRoot(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestAdd", "WholeDirToRoot")
- test_dir := filepath.Join(buildDirectory, "test_dir")
- if err := os.MkdirAll(test_dir, 0755); err != nil {
- t.Fatal(err)
- }
- f, err := os.OpenFile(filepath.Join(test_dir, "test_file"), os.O_CREATE, 0644)
- if err != nil {
- t.Fatal(err)
- }
- f.Close()
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testaddimg", ".")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testaddimg")
- logDone("build - add whole directory to root")
- }
- func TestAddEtcToRoot(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestAdd")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testaddimg", "EtcToRoot")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testaddimg")
- logDone("build - add etc directory to root")
- }
- func TestCopySingleFileToRoot(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestCopy", "SingleFileToRoot")
- f, err := os.OpenFile(filepath.Join(buildDirectory, "test_file"), os.O_CREATE, 0644)
- if err != nil {
- t.Fatal(err)
- }
- f.Close()
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testcopyimg", ".")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testcopyimg")
- logDone("build - copy single file to root")
- }
- // Issue #3960: "ADD src ." hangs - adapted for COPY
- func TestCopySingleFileToWorkdir(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestCopy", "SingleFileToWorkdir")
- f, err := os.OpenFile(filepath.Join(buildDirectory, "test_file"), os.O_CREATE, 0644)
- if err != nil {
- t.Fatal(err)
- }
- f.Close()
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testcopyimg", ".")
- buildCmd.Dir = buildDirectory
- done := make(chan error)
- go func() {
- out, exitCode, err := runCommandWithOutput(buildCmd)
- if err != nil || exitCode != 0 {
- done <- fmt.Errorf("build failed to complete: %s %v", out, err)
- return
- }
- done <- nil
- }()
- select {
- case <-time.After(5 * time.Second):
- if err := buildCmd.Process.Kill(); err != nil {
- fmt.Printf("could not kill build (pid=%d): %v\n", buildCmd.Process.Pid, err)
- }
- t.Fatal("build timed out")
- case err := <-done:
- if err != nil {
- t.Fatal(err)
- }
- }
- deleteImages("testcopyimg")
- logDone("build - copy single file to workdir")
- }
- func TestCopySingleFileToExistDir(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestCopy")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testcopyimg", "SingleFileToExistDir")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testcopyimg")
- logDone("build - add single file to existing dir")
- }
- func TestCopySingleFileToNonExistDir(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestCopy")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testcopyimg", "SingleFileToNonExistDir")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testcopyimg")
- logDone("build - copy single file to non-existing dir")
- }
- func TestCopyDirContentToRoot(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestCopy")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testcopyimg", "DirContentToRoot")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testcopyimg")
- logDone("build - copy directory contents to root")
- }
- func TestCopyDirContentToExistDir(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestCopy")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testcopyimg", "DirContentToExistDir")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testcopyimg")
- logDone("build - copy directory contents to existing dir")
- }
- func TestCopyWholeDirToRoot(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestCopy", "WholeDirToRoot")
- test_dir := filepath.Join(buildDirectory, "test_dir")
- if err := os.MkdirAll(test_dir, 0755); err != nil {
- t.Fatal(err)
- }
- f, err := os.OpenFile(filepath.Join(test_dir, "test_file"), os.O_CREATE, 0644)
- if err != nil {
- t.Fatal(err)
- }
- f.Close()
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testcopyimg", ".")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testcopyimg")
- logDone("build - copy whole directory to root")
- }
- func TestCopyEtcToRoot(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestCopy")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testcopyimg", "EtcToRoot")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- errorOut(err, t, fmt.Sprintf("build failed to complete: %v %v", out, err))
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- deleteImages("testcopyimg")
- logDone("build - copy etc directory to root")
- }
- func TestCopyDisallowRemote(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestCopy")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testcopyimg", "DisallowRemote")
- buildCmd.Dir = buildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- if err == nil || exitCode == 0 {
- t.Fatalf("building the image should've failed; output: %s", out)
- }
- deleteImages("testcopyimg")
- logDone("build - copy - disallow copy from remote")
- }
- // Issue #5270 - ensure we throw a better error than "unexpected EOF"
- // when we can't access files in the context.
- func TestBuildWithInaccessibleFilesInContext(t *testing.T) {
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestBuildWithInaccessibleFilesInContext")
- {
- // This is used to ensure we detect inaccessible files early during build in the cli client
- pathToInaccessibleFileBuildDirectory := filepath.Join(buildDirectory, "inaccessiblefile")
- pathToFileWithoutReadAccess := filepath.Join(pathToInaccessibleFileBuildDirectory, "fileWithoutReadAccess")
- err := os.Chown(pathToFileWithoutReadAccess, 0, 0)
- errorOut(err, t, fmt.Sprintf("failed to chown file to root: %s", err))
- err = os.Chmod(pathToFileWithoutReadAccess, 0700)
- errorOut(err, t, fmt.Sprintf("failed to chmod file to 700: %s", err))
- buildCommandStatement := fmt.Sprintf("%s build -t inaccessiblefiles .", dockerBinary)
- buildCmd := exec.Command("su", "unprivilegeduser", "-c", buildCommandStatement)
- buildCmd.Dir = pathToInaccessibleFileBuildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- if err == nil || exitCode == 0 {
- t.Fatalf("build should have failed: %s %s", err, out)
- }
- // check if we've detected the failure before we started building
- if !strings.Contains(out, "no permission to read from ") {
- t.Fatalf("output should've contained the string: no permission to read from but contained: %s", out)
- }
- if !strings.Contains(out, "Error checking context is accessible") {
- t.Fatalf("output should've contained the string: Error checking context is accessible")
- }
- }
- {
- // This is used to ensure we detect inaccessible directories early during build in the cli client
- pathToInaccessibleDirectoryBuildDirectory := filepath.Join(buildDirectory, "inaccessibledirectory")
- pathToDirectoryWithoutReadAccess := filepath.Join(pathToInaccessibleDirectoryBuildDirectory, "directoryWeCantStat")
- pathToFileInDirectoryWithoutReadAccess := filepath.Join(pathToDirectoryWithoutReadAccess, "bar")
- err := os.Chown(pathToDirectoryWithoutReadAccess, 0, 0)
- errorOut(err, t, fmt.Sprintf("failed to chown directory to root: %s", err))
- err = os.Chmod(pathToDirectoryWithoutReadAccess, 0444)
- errorOut(err, t, fmt.Sprintf("failed to chmod directory to 755: %s", err))
- err = os.Chmod(pathToFileInDirectoryWithoutReadAccess, 0700)
- errorOut(err, t, fmt.Sprintf("failed to chmod file to 444: %s", err))
- buildCommandStatement := fmt.Sprintf("%s build -t inaccessiblefiles .", dockerBinary)
- buildCmd := exec.Command("su", "unprivilegeduser", "-c", buildCommandStatement)
- buildCmd.Dir = pathToInaccessibleDirectoryBuildDirectory
- out, exitCode, err := runCommandWithOutput(buildCmd)
- if err == nil || exitCode == 0 {
- t.Fatalf("build should have failed: %s %s", err, out)
- }
- // check if we've detected the failure before we started building
- if !strings.Contains(out, "can't stat") {
- t.Fatalf("output should've contained the string: can't access %s", out)
- }
- if !strings.Contains(out, "Error checking context is accessible") {
- t.Fatalf("output should've contained the string: Error checking context is accessible")
- }
- }
- {
- // This is used to ensure we don't follow links when checking if everything in the context is accessible
- // This test doesn't require that we run commands as an unprivileged user
- pathToDirectoryWhichContainsLinks := filepath.Join(buildDirectory, "linksdirectory")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testlinksok", ".")
- buildCmd.Dir = pathToDirectoryWhichContainsLinks
- out, exitCode, err := runCommandWithOutput(buildCmd)
- if err != nil || exitCode != 0 {
- t.Fatalf("build should have worked: %s %s", err, out)
- }
- deleteImages("testlinksok")
- }
- deleteImages("inaccessiblefiles")
- logDone("build - ADD from context with inaccessible files must fail")
- logDone("build - ADD from context with accessible links must work")
- }
- func TestBuildForceRm(t *testing.T) {
- containerCountBefore, err := getContainerCount()
- if err != nil {
- t.Fatalf("failed to get the container count: %s", err)
- }
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestBuildForceRm")
- buildCmd := exec.Command(dockerBinary, "build", "--force-rm", ".")
- buildCmd.Dir = buildDirectory
- _, exitCode, err := runCommandWithOutput(buildCmd)
- if err == nil || exitCode == 0 {
- t.Fatal("failed to build the image")
- }
- containerCountAfter, err := getContainerCount()
- if err != nil {
- t.Fatalf("failed to get the container count: %s", err)
- }
- if containerCountBefore != containerCountAfter {
- t.Fatalf("--force-rm shouldn't have left containers behind")
- }
- logDone("build - ensure --force-rm doesn't leave containers behind")
- }
- func TestBuildRm(t *testing.T) {
- {
- containerCountBefore, err := getContainerCount()
- if err != nil {
- t.Fatalf("failed to get the container count: %s", err)
- }
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestBuildRm")
- buildCmd := exec.Command(dockerBinary, "build", "--rm", "-t", "testbuildrm", ".")
- buildCmd.Dir = buildDirectory
- _, exitCode, err := runCommandWithOutput(buildCmd)
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- containerCountAfter, err := getContainerCount()
- if err != nil {
- t.Fatalf("failed to get the container count: %s", err)
- }
- if containerCountBefore != containerCountAfter {
- t.Fatalf("-rm shouldn't have left containers behind")
- }
- deleteImages("testbuildrm")
- }
- {
- containerCountBefore, err := getContainerCount()
- if err != nil {
- t.Fatalf("failed to get the container count: %s", err)
- }
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestBuildRm")
- buildCmd := exec.Command(dockerBinary, "build", "-t", "testbuildrm", ".")
- buildCmd.Dir = buildDirectory
- _, exitCode, err := runCommandWithOutput(buildCmd)
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- containerCountAfter, err := getContainerCount()
- if err != nil {
- t.Fatalf("failed to get the container count: %s", err)
- }
- if containerCountBefore != containerCountAfter {
- t.Fatalf("--rm shouldn't have left containers behind")
- }
- deleteImages("testbuildrm")
- }
- {
- containerCountBefore, err := getContainerCount()
- if err != nil {
- t.Fatalf("failed to get the container count: %s", err)
- }
- buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestBuildRm")
- buildCmd := exec.Command(dockerBinary, "build", "--rm=false", "-t", "testbuildrm", ".")
- buildCmd.Dir = buildDirectory
- _, exitCode, err := runCommandWithOutput(buildCmd)
- if err != nil || exitCode != 0 {
- t.Fatal("failed to build the image")
- }
- containerCountAfter, err := getContainerCount()
- if err != nil {
- t.Fatalf("failed to get the container count: %s", err)
- }
- if containerCountBefore == containerCountAfter {
- t.Fatalf("--rm=false should have left containers behind")
- }
- deleteAllContainers()
- deleteImages("testbuildrm")
- }
- logDone("build - ensure --rm doesn't leave containers behind and that --rm=true is the default")
- logDone("build - ensure --rm=false overrides the default")
- }
- func TestBuildWithVolumes(t *testing.T) {
- name := "testbuildvolumes"
- expected := "map[/test1:map[] /test2:map[]]"
- defer deleteImages(name)
- _, err := buildImage(name,
- `FROM scratch
- VOLUME /test1
- VOLUME /test2`,
- true)
- if err != nil {
- t.Fatal(err)
- }
- res, err := inspectField(name, "Config.Volumes")
- if err != nil {
- t.Fatal(err)
- }
- if res != expected {
- t.Fatalf("Volumes %s, expected %s", res, expected)
- }
- logDone("build - with volumes")
- }
- func TestBuildMaintainer(t *testing.T) {
- name := "testbuildmaintainer"
- expected := "dockerio"
- defer deleteImages(name)
- _, err := buildImage(name,
- `FROM scratch
- MAINTAINER dockerio`,
- true)
- if err != nil {
- t.Fatal(err)
- }
- res, err := inspectField(name, "Author")
- if err != nil {
- t.Fatal(err)
- }
- if res != expected {
- t.Fatalf("Maintainer %s, expected %s", res, expected)
- }
- logDone("build - maintainer")
- }
- func TestBuildUser(t *testing.T) {
- name := "testbuilduser"
- expected := "dockerio"
- defer deleteImages(name)
- _, err := buildImage(name,
- `FROM busybox
- RUN echo 'dockerio:x:1001:1001::/bin:/bin/false' >> /etc/passwd
- USER dockerio
- RUN [ $(whoami) = 'dockerio' ]`,
- true)
- if err != nil {
- t.Fatal(err)
- }
- res, err := inspectField(name, "Config.User")
- if err != nil {
- t.Fatal(err)
- }
- if res != expected {
- t.Fatalf("User %s, expected %s", res, expected)
- }
- logDone("build - user")
- }
- func TestBuildRelativeWorkdir(t *testing.T) {
- name := "testbuildrelativeworkdir"
- expected := "/test2/test3"
- defer deleteImages(name)
- _, err := buildImage(name,
- `FROM busybox
- RUN [ "$PWD" = '/' ]
- WORKDIR test1
- RUN [ "$PWD" = '/test1' ]
- WORKDIR /test2
- RUN [ "$PWD" = '/test2' ]
- WORKDIR test3
- RUN [ "$PWD" = '/test2/test3' ]`,
- true)
- if err != nil {
- t.Fatal(err)
- }
- res, err := inspectField(name, "Config.WorkingDir")
- if err != nil {
- t.Fatal(err)
- }
- if res != expected {
- t.Fatalf("Workdir %s, expected %s", res, expected)
- }
- logDone("build - relative workdir")
- }
- func TestBuildEnv(t *testing.T) {
- name := "testbuildenv"
- expected := "[HOME=/ PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PORT=2375]"
- defer deleteImages(name)
- _, err := buildImage(name,
- `FROM busybox
- ENV PORT 2375
- RUN [ $(env | grep PORT) = 'PORT=2375' ]`,
- true)
- if err != nil {
- t.Fatal(err)
- }
- res, err := inspectField(name, "Config.Env")
- if err != nil {
- t.Fatal(err)
- }
- if res != expected {
- t.Fatalf("Env %s, expected %s", res, expected)
- }
- logDone("build - env")
- }
- func TestBuildCmd(t *testing.T) {
- name := "testbuildcmd"
- expected := "[/bin/echo Hello World]"
- defer deleteImages(name)
- _, err := buildImage(name,
- `FROM scratch
- CMD ["/bin/echo", "Hello World"]`,
- true)
- if err != nil {
- t.Fatal(err)
- }
- res, err := inspectField(name, "Config.Cmd")
- if err != nil {
- t.Fatal(err)
- }
- if res != expected {
- t.Fatalf("Cmd %s, expected %s", res, expected)
- }
- logDone("build - cmd")
- }
- func TestBuildExpose(t *testing.T) {
- name := "testbuildexpose"
- expected := "map[2375/tcp:map[]]"
- defer deleteImages(name)
- _, err := buildImage(name,
- `FROM scratch
- EXPOSE 2375`,
- true)
- if err != nil {
- t.Fatal(err)
- }
- res, err := inspectField(name, "Config.ExposedPorts")
- if err != nil {
- t.Fatal(err)
- }
- if res != expected {
- t.Fatalf("Exposed ports %s, expected %s", res, expected)
- }
- logDone("build - expose")
- }
- func TestBuildEntrypoint(t *testing.T) {
- name := "testbuildentrypoint"
- expected := "[/bin/echo]"
- defer deleteImages(name)
- _, err := buildImage(name,
- `FROM scratch
- ENTRYPOINT ["/bin/echo"]`,
- true)
- if err != nil {
- t.Fatal(err)
- }
- res, err := inspectField(name, "Config.Entrypoint")
- if err != nil {
- t.Fatal(err)
- }
- if res != expected {
- t.Fatalf("Entrypoint %s, expected %s", res, expected)
- }
- logDone("build - entrypoint")
- }
- func TestBuildWithCache(t *testing.T) {
- name := "testbuildwithcache"
- defer deleteImages(name)
- id1, err := buildImage(name,
- `FROM scratch
- MAINTAINER dockerio
- EXPOSE 5432
- ENTRYPOINT ["/bin/echo"]`,
- true)
- if err != nil {
- t.Fatal(err)
- }
- id2, err := buildImage(name,
- `FROM scratch
- MAINTAINER dockerio
- EXPOSE 5432
- ENTRYPOINT ["/bin/echo"]`,
- true)
- if err != nil {
- t.Fatal(err)
- }
- if id1 != id2 {
- t.Fatal("The cache should have been used but hasn't.")
- }
- logDone("build - with cache")
- }
- func TestBuildWithoutCache(t *testing.T) {
- name := "testbuildwithoutcache"
- defer deleteImages(name)
- id1, err := buildImage(name,
- `FROM scratch
- MAINTAINER dockerio
- EXPOSE 5432
- ENTRYPOINT ["/bin/echo"]`,
- true)
- if err != nil {
- t.Fatal(err)
- }
- id2, err := buildImage(name,
- `FROM scratch
- MAINTAINER dockerio
- EXPOSE 5432
- ENTRYPOINT ["/bin/echo"]`,
- false)
- if err != nil {
- t.Fatal(err)
- }
- if id1 == id2 {
- t.Fatal("The cache should have been invalided but hasn't.")
- }
- logDone("build - without cache")
- }
- func TestBuildADDLocalFileWithCache(t *testing.T) {
- name := "testbuildaddlocalfilewithcache"
- defer deleteImages(name)
- dockerfile := `
- FROM busybox
- MAINTAINER dockerio
- ADD foo /usr/lib/bla/bar
- RUN [ "$(cat /usr/lib/bla/bar)" = "hello" ]`
- ctx, err := fakeContext(dockerfile, map[string]string{
- "foo": "hello",
- })
- defer ctx.Close()
- if err != nil {
- t.Fatal(err)
- }
- id1, err := buildImageFromContext(name, ctx, true)
- if err != nil {
- t.Fatal(err)
- }
- id2, err := buildImageFromContext(name, ctx, true)
- if err != nil {
- t.Fatal(err)
- }
- if id1 != id2 {
- t.Fatal("The cache should have been used but hasn't.")
- }
- logDone("build - add local file with cache")
- }
- func TestBuildADDLocalFileWithoutCache(t *testing.T) {
- name := "testbuildaddlocalfilewithoutcache"
- defer deleteImages(name)
- dockerfile := `
- FROM busybox
- MAINTAINER dockerio
- ADD foo /usr/lib/bla/bar
- RUN [ "$(cat /usr/lib/bla/bar)" = "hello" ]`
- ctx, err := fakeContext(dockerfile, map[string]string{
- "foo": "hello",
- })
- defer ctx.Close()
- if err != nil {
- t.Fatal(err)
- }
- id1, err := buildImageFromContext(name, ctx, true)
- if err != nil {
- t.Fatal(err)
- }
- id2, err := buildImageFromContext(name, ctx, false)
- if err != nil {
- t.Fatal(err)
- }
- if id1 == id2 {
- t.Fatal("The cache should have been invalided but hasn't.")
- }
- logDone("build - add local file without cache")
- }
- func TestBuildADDCurrentDirWithCache(t *testing.T) {
- name := "testbuildaddcurrentdirwithcache"
- defer deleteImages(name)
- dockerfile := `
- FROM scratch
- MAINTAINER dockerio
- ADD . /usr/lib/bla`
- ctx, err := fakeContext(dockerfile, map[string]string{
- "foo": "hello",
- })
- defer ctx.Close()
- if err != nil {
- t.Fatal(err)
- }
- id1, err := buildImageFromContext(name, ctx, true)
- if err != nil {
- t.Fatal(err)
- }
- // Check that adding file invalidate cache of "ADD ."
- if err := ctx.Add("bar", "hello2"); err != nil {
- t.Fatal(err)
- }
- id2, err := buildImageFromContext(name, ctx, true)
- if err != nil {
- t.Fatal(err)
- }
- if id1 == id2 {
- t.Fatal("The cache should have been invalided but hasn't.")
- }
- // Check that changing file invalidate cache of "ADD ."
- if err := ctx.Add("foo", "hello1"); err != nil {
- t.Fatal(err)
- }
- id3, err := buildImageFromContext(name, ctx, true)
- if err != nil {
- t.Fatal(err)
- }
- if id2 == id3 {
- t.Fatal("The cache should have been invalided but hasn't.")
- }
- // Check that changing file to same content invalidate cache of "ADD ."
- time.Sleep(1 * time.Second) // wait second because of mtime precision
- if err := ctx.Add("foo", "hello1"); err != nil {
- t.Fatal(err)
- }
- id4, err := buildImageFromContext(name, ctx, true)
- if err != nil {
- t.Fatal(err)
- }
- if id3 == id4 {
- t.Fatal("The cache should have been invalided but hasn't.")
- }
- id5, err := buildImageFromContext(name, ctx, true)
- if err != nil {
- t.Fatal(err)
- }
- if id4 != id5 {
- t.Fatal("The cache should have been used but hasn't.")
- }
- logDone("build - add current directory with cache")
- }
- func TestBuildADDCurrentDirWithoutCache(t *testing.T) {
- name := "testbuildaddcurrentdirwithoutcache"
- defer deleteImages(name)
- dockerfile := `
- FROM scratch
- MAINTAINER dockerio
- ADD . /usr/lib/bla`
- ctx, err := fakeContext(dockerfile, map[string]string{
- "foo": "hello",
- })
- defer ctx.Close()
- if err != nil {
- t.Fatal(err)
- }
- id1, err := buildImageFromContext(name, ctx, true)
- if err != nil {
- t.Fatal(err)
- }
- id2, err := buildImageFromContext(name, ctx, false)
- if err != nil {
- t.Fatal(err)
- }
- if id1 == id2 {
- t.Fatal("The cache should have been invalided but hasn't.")
- }
- logDone("build - add current directory without cache")
- }
- func TestBuildADDRemoteFileWithCache(t *testing.T) {
- name := "testbuildaddremotefilewithcache"
- defer deleteImages(name)
- server, err := fakeStorage(map[string]string{
- "baz": "hello",
- })
- if err != nil {
- t.Fatal(err)
- }
- defer server.Close()
- id1, err := buildImage(name,
- fmt.Sprintf(`FROM scratch
- MAINTAINER dockerio
- ADD %s/baz /usr/lib/baz/quux`, server.URL),
- true)
- if err != nil {
- t.Fatal(err)
- }
- id2, err := buildImage(name,
- fmt.Sprintf(`FROM scratch
- MAINTAINER dockerio
- ADD %s/baz /usr/lib/baz/quux`, server.URL),
- true)
- if err != nil {
- t.Fatal(err)
- }
- if id1 != id2 {
- t.Fatal("The cache should have been used but hasn't.")
- }
- logDone("build - add remote file with cache")
- }
- func TestBuildADDRemoteFileWithoutCache(t *testing.T) {
- name := "testbuildaddremotefilewithoutcache"
- defer deleteImages(name)
- server, err := fakeStorage(map[string]string{
- "baz": "hello",
- })
- if err != nil {
- t.Fatal(err)
- }
- defer server.Close()
- id1, err := buildImage(name,
- fmt.Sprintf(`FROM scratch
- MAINTAINER dockerio
- ADD %s/baz /usr/lib/baz/quux`, server.URL),
- true)
- if err != nil {
- t.Fatal(err)
- }
- id2, err := buildImage(name,
- fmt.Sprintf(`FROM scratch
- MAINTAINER dockerio
- ADD %s/baz /usr/lib/baz/quux`, server.URL),
- false)
- if err != nil {
- t.Fatal(err)
- }
- if id1 == id2 {
- t.Fatal("The cache should have been invalided but hasn't.")
- }
- logDone("build - add remote file without cache")
- }
- func TestBuildADDLocalAndRemoteFilesWithCache(t *testing.T) {
- name := "testbuildaddlocalandremotefilewithcache"
- defer deleteImages(name)
- server, err := fakeStorage(map[string]string{
- "baz": "hello",
- })
- if err != nil {
- t.Fatal(err)
- }
- defer server.Close()
- ctx, err := fakeContext(fmt.Sprintf(`FROM scratch
- MAINTAINER dockerio
- ADD foo /usr/lib/bla/bar
- ADD %s/baz /usr/lib/baz/quux`, server.URL),
- map[string]string{
- "foo": "hello world",
- })
- if err != nil {
- t.Fatal(err)
- }
- defer ctx.Close()
- id1, err := buildImageFromContext(name, ctx, true)
- if err != nil {
- t.Fatal(err)
- }
- id2, err := buildImageFromContext(name, ctx, true)
- if err != nil {
- t.Fatal(err)
- }
- if id1 != id2 {
- t.Fatal("The cache should have been used but hasn't.")
- }
- logDone("build - add local and remote file with cache")
- }
- // TODO: TestCaching
- func TestBuildADDLocalAndRemoteFilesWithoutCache(t *testing.T) {
- name := "testbuildaddlocalandremotefilewithoutcache"
- defer deleteImages(name)
- server, err := fakeStorage(map[string]string{
- "baz": "hello",
- })
- if err != nil {
- t.Fatal(err)
- }
- defer server.Close()
- ctx, err := fakeContext(fmt.Sprintf(`FROM scratch
- MAINTAINER dockerio
- ADD foo /usr/lib/bla/bar
- ADD %s/baz /usr/lib/baz/quux`, server.URL),
- map[string]string{
- "foo": "hello world",
- })
- if err != nil {
- t.Fatal(err)
- }
- defer ctx.Close()
- id1, err := buildImageFromContext(name, ctx, true)
- if err != nil {
- t.Fatal(err)
- }
- id2, err := buildImageFromContext(name, ctx, false)
- if err != nil {
- t.Fatal(err)
- }
- if id1 == id2 {
- t.Fatal("The cache should have been invalided but hasn't.")
- }
- logDone("build - add local and remote file without cache")
- }
- func TestBuildWithVolumeOwnership(t *testing.T) {
- name := "testbuildimg"
- defer deleteImages(name)
- _, err := buildImage(name,
- `FROM busybox:latest
- RUN mkdir /test && chown daemon:daemon /test && chmod 0600 /test
- VOLUME /test`,
- true)
- if err != nil {
- t.Fatal(err)
- }
- cmd := exec.Command(dockerBinary, "run", "--rm", "testbuildimg", "ls", "-la", "/test")
- out, _, err := runCommandWithOutput(cmd)
- if err != nil {
- t.Fatal(err)
- }
- if expected := "drw-------"; !strings.Contains(out, expected) {
- t.Fatalf("expected %s received %s", expected, out)
- }
- if expected := "daemon daemon"; !strings.Contains(out, expected) {
- t.Fatalf("expected %s received %s", expected, out)
- }
- logDone("build - volume ownership")
- }
- // testing #1405 - config.Cmd does not get cleaned up if
- // utilizing cache
- func TestBuildEntrypointRunCleanup(t *testing.T) {
- name := "testbuildcmdcleanup"
- defer deleteImages(name)
- if _, err := buildImage(name,
- `FROM busybox
- RUN echo "hello"`,
- true); err != nil {
- t.Fatal(err)
- }
- ctx, err := fakeContext(`FROM busybox
- RUN echo "hello"
- ADD foo /foo
- ENTRYPOINT ["/bin/echo"]`,
- map[string]string{
- "foo": "hello",
- })
- defer ctx.Close()
- if err != nil {
- t.Fatal(err)
- }
- if _, err := buildImageFromContext(name, ctx, true); err != nil {
- t.Fatal(err)
- }
- res, err := inspectField(name, "Config.Cmd")
- if err != nil {
- t.Fatal(err)
- }
- // Cmd inherited from busybox, maybe will be fixed in #5147
- if expected := "[/bin/sh]"; res != expected {
- t.Fatalf("Cmd %s, expected %s", res, expected)
- }
- logDone("build - cleanup cmd after RUN")
- }
- func TestBuldForbiddenContextPath(t *testing.T) {
- name := "testbuildforbidpath"
- defer deleteImages(name)
- ctx, err := fakeContext(`FROM scratch
- ADD ../../ test/
- `,
- map[string]string{
- "test.txt": "test1",
- "other.txt": "other",
- })
- defer ctx.Close()
- if err != nil {
- t.Fatal(err)
- }
- if _, err := buildImageFromContext(name, ctx, true); err != nil {
- if !strings.Contains(err.Error(), "Forbidden path outside the build context: ../../ (/)") {
- t.Fatal("Wrong error, must be about forbidden ../../ path")
- }
- } else {
- t.Fatal("Error must not be nil")
- }
- logDone("build - forbidden context path")
- }
- func TestBuildADDFileNotFound(t *testing.T) {
- name := "testbuildaddnotfound"
- defer deleteImages(name)
- ctx, err := fakeContext(`FROM scratch
- ADD foo /usr/local/bar`,
- map[string]string{"bar": "hello"})
- defer ctx.Close()
- if err != nil {
- t.Fatal(err)
- }
- if _, err := buildImageFromContext(name, ctx, true); err != nil {
- if !strings.Contains(err.Error(), "foo: no such file or directory") {
- t.Fatalf("Wrong error %v, must be about missing foo file or directory", err)
- }
- } else {
- t.Fatal("Error must not be nil")
- }
- logDone("build - add file not found")
- }
|