File tree 2 files changed +5
-26
lines changed
2 files changed +5
-26
lines changed Original file line number Diff line number Diff line change @@ -9,19 +9,13 @@ import (
9
9
10
10
// This is an example. Replace the following with whatever steps are needed to
11
11
// install required components into
12
- const dockerfileLines = `FROM debian:stretch
13
-
14
- ARG BUNDLE_DIR
15
- RUN apt-get update && apt-get install -y curl ca-certificates
16
-
17
- ARG DOCKER_VERSION=%s
18
- RUN curl -o docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz && \
12
+ const dockerfileLines = `ARG DOCKER_VERSION=%s
13
+ RUN apt-get update && apt-get install -y curl && \
14
+ curl -o docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz && \
19
15
tar -xvf docker.tgz && \
20
16
mv docker/docker /usr/bin/docker && \
21
17
chmod +x /usr/bin/docker && \
22
18
rm docker.tgz
23
-
24
- COPY . $BUNDLE_DIR
25
19
`
26
20
27
21
// BuildInput represents stdin passed to the mixin for the build command.
Original file line number Diff line number Diff line change @@ -10,28 +10,13 @@ import (
10
10
"github.com/stretchr/testify/require"
11
11
)
12
12
13
- const buildOutputTemplate = `FROM debian:stretch
14
-
15
- ARG BUNDLE_DIR
16
- RUN apt-get update && apt-get install -y curl ca-certificates
17
-
18
- ARG DOCKER_VERSION=%s
19
- RUN curl -o docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz && \
20
- tar -xvf docker.tgz && \
21
- mv docker/docker /usr/bin/docker && \
22
- chmod +x /usr/bin/docker && \
23
- rm docker.tgz
24
-
25
- COPY . $BUNDLE_DIR
26
- `
27
-
28
13
func TestMixin_Build (t * testing.T ) {
29
14
t .Run ("build with the default Docker version" , func (t * testing.T ) {
30
15
m := NewTestMixin (t )
31
16
err := m .Build ()
32
17
require .NoError (t , err )
33
18
34
- wantOutput := fmt .Sprintf (buildOutputTemplate , "19.03.8" )
19
+ wantOutput := fmt .Sprintf (dockerfileLines , "19.03.8" )
35
20
36
21
gotOutput := m .TestContext .GetOutput ()
37
22
assert .Equal (t , wantOutput , gotOutput )
@@ -46,7 +31,7 @@ func TestMixin_Build(t *testing.T) {
46
31
err = m .Build ()
47
32
require .NoError (t , err )
48
33
49
- wantOutput := fmt .Sprintf (buildOutputTemplate , "19.03.12" )
34
+ wantOutput := fmt .Sprintf (dockerfileLines , "19.03.12" )
50
35
51
36
gotOutput := m .TestContext .GetOutput ()
52
37
assert .Equal (t , wantOutput , gotOutput )
You can’t perform that action at this time.
0 commit comments