mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Rewrite TestBuildCopySingleFileToNonExistDir to not use fixtures
Signed-off-by: Alexandr Morozov <lk4d4@docker.com>
This commit is contained in:
parent
2248109ff8
commit
24d83afd52
3 changed files with 19 additions and 15 deletions
|
@ -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 /test_dir/
|
|
||||||
RUN [ $(ls -l / | grep test_dir | awk '{print $3":"$4}') = 'root:root' ]
|
|
||||||
RUN [ $(ls -l /test_dir/test_file | awk '{print $3":"$4}') = 'root:root' ]
|
|
||||||
RUN [ $(ls -l /exists | awk '{print $3":"$4}') = 'dockerio:dockerio' ]
|
|
|
@ -712,13 +712,26 @@ RUN [ $(ls -l /exists/exists_file | awk '{print $3":"$4}') = 'dockerio:dockerio'
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestBuildCopySingleFileToNonExistDir(t *testing.T) {
|
func TestBuildCopySingleFileToNonExistDir(t *testing.T) {
|
||||||
buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestCopy")
|
name := "testcopysinglefiletononexistdir"
|
||||||
if out, _, err := dockerCmdInDir(t, buildDirectory, "build", "-t", "testcopyimg", "SingleFileToNonExistDir"); err != nil {
|
defer deleteImages(name)
|
||||||
t.Fatalf("build failed to complete: %s, %v", out, err)
|
ctx, err := fakeContext(`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 /test_dir/
|
||||||
|
RUN [ $(ls -l / | grep test_dir | awk '{print $3":"$4}') = 'root:root' ]
|
||||||
|
RUN [ $(ls -l /test_dir/test_file | awk '{print $3":"$4}') = 'root:root' ]
|
||||||
|
RUN [ $(ls -l /exists | awk '{print $3":"$4}') = 'dockerio:dockerio' ]`,
|
||||||
|
map[string]string{
|
||||||
|
"test_file": "test1",
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
if _, err := buildImageFromContext(name, ctx, true); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
deleteImages("testcopyimg")
|
|
||||||
|
|
||||||
logDone("build - copy single file to non-existing dir")
|
logDone("build - copy single file to non-existing dir")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue