1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Rewrite TestBuildCopySingleFileToRoot to not use fixtures

Signed-off-by: Alexandr Morozov <lk4d4@docker.com>
This commit is contained in:
Alexandr Morozov 2014-10-14 10:07:04 -07:00
parent e45c92153d
commit 83c5dced10
2 changed files with 16 additions and 27 deletions

View file

@ -1,9 +0,0 @@
FROM busybox
RUN echo 'dockerio:x:1001:1001::/bin:/bin/false' >> /etc/passwd
RUN echo 'dockerio:x:1001:' >> /etc/group
RUN touch /exists
RUN chown dockerio.dockerio /exists
COPY test_file /
RUN [ $(ls -l /test_file | awk '{print $3":"$4}') = 'root:root' ]
RUN [ $(ls -l /test_file | awk '{print $1}') = '-rw-r--r--' ]
RUN [ $(ls -l /exists | awk '{print $3":"$4}') = 'dockerio:dockerio' ]

View file

@ -636,28 +636,26 @@ ADD . /`,
} }
func TestBuildCopySingleFileToRoot(t *testing.T) { func TestBuildCopySingleFileToRoot(t *testing.T) {
testDirName := "SingleFileToRoot" name := "testcopysinglefiletoroot"
sourceDirectory := filepath.Join(workingDirectory, "build_tests", "TestCopy", testDirName) defer deleteImages(name)
buildDirectory, err := ioutil.TempDir("", "test-build-add") ctx, err := fakeContext(`FROM busybox
defer os.RemoveAll(buildDirectory) RUN echo 'dockerio:x:1001:1001::/bin:/bin/false' >> /etc/passwd
RUN echo 'dockerio:x:1001:' >> /etc/group
err = copyWithCP(sourceDirectory, buildDirectory) RUN touch /exists
if err != nil { RUN chown dockerio.dockerio /exists
t.Fatalf("failed to copy files to temporary directory: %s", err) COPY test_file /
} RUN [ $(ls -l /test_file | awk '{print $3":"$4}') = 'root:root' ]
RUN [ $(ls -l /test_file | awk '{print $1}') = '-rw-r--r--' ]
buildDirectory = filepath.Join(buildDirectory, testDirName) RUN [ $(ls -l /exists | awk '{print $3":"$4}') = 'dockerio:dockerio' ]`,
f, err := os.OpenFile(filepath.Join(buildDirectory, "test_file"), os.O_CREATE, 0644) map[string]string{
"test_file": "test1",
})
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
f.Close() if _, err := buildImageFromContext(name, ctx, true); err != nil {
if out, _, err := dockerCmdInDir(t, buildDirectory, "build", "-t", "testcopyimg", "."); err != nil { t.Fatal(err)
t.Fatalf("build failed to complete: %s, %v", out, err)
} }
deleteImages("testcopyimg")
logDone("build - copy single file to root") logDone("build - copy single file to root")
} }