summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAanand Prasad <aanand.prasad@gmail.com>2015-08-25 11:54:23 +0100
committerAanand Prasad <aanand.prasad@gmail.com>2015-08-26 16:03:21 +0100
commitced9b0094f140649186a7dcb0a1f029bf9f6ecc5 (patch)
treefb1fe7d8bc0fe400b6ceffa905221de3271e0344
parentd60cb3172e767d77cb55c8b183ac0f7cea658d5f (diff)
downloaddocker-py-ced9b0094f140649186a7dcb0a1f029bf9f6ecc5.tar.gz
Fix .dockerignore integration test
- There was a typo (".dockerginore"), which meant that the exclusion of the .dockerignore file itself wasn't being tested. - Some of the file names were non-descriptive. - The test was inspecting the output of the build process, rather than running 'ls' in a new container, which meant it was full of extra output, and would fail when there was a cache hit. Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
-rw-r--r--tests/integration_test.py36
1 files changed, 21 insertions, 15 deletions
diff --git a/tests/integration_test.py b/tests/integration_test.py
index 815cd37..faccf98 100644
--- a/tests/integration_test.py
+++ b/tests/integration_test.py
@@ -1303,35 +1303,41 @@ class TestBuildWithDockerignore(Cleanup, BaseTestCase):
'FROM busybox',
'MAINTAINER docker-py',
'ADD . /test',
- 'RUN ls -A /test',
]))
with open(os.path.join(base_dir, '.dockerignore'), 'w') as f:
f.write("\n".join([
- 'node_modules',
+ 'ignored',
'Dockerfile',
- '.dockerginore',
+ '.dockerignore',
'', # empty line
]))
with open(os.path.join(base_dir, 'not-ignored'), 'w') as f:
f.write("this file should not be ignored")
- subdir = os.path.join(base_dir, 'node_modules', 'grunt-cli')
+ subdir = os.path.join(base_dir, 'ignored', 'subdir')
os.makedirs(subdir)
- with open(os.path.join(subdir, 'grunt'), 'w') as f:
- f.write("grunt")
+ with open(os.path.join(subdir, 'file'), 'w') as f:
+ f.write("this file should be ignored")
- stream = self.client.build(path=base_dir, stream=True)
- logs = ''
+ tag = 'docker-py-test-build-with-dockerignore'
+ stream = self.client.build(
+ path=base_dir,
+ tag=tag,
+ )
for chunk in stream:
- if six.PY3:
- chunk = chunk.decode('utf-8')
- logs += chunk
- self.assertFalse('node_modules' in logs)
- self.assertFalse('Dockerfile' in logs)
- self.assertFalse('.dockerginore' in logs)
- self.assertTrue('not-ignored' in logs)
+ pass
+
+ c = self.client.create_container(tag, ['ls', '-1A', '/test'])
+ self.client.start(c)
+ self.client.wait(c)
+ logs = self.client.logs(c)
+
+ self.assertEqual(
+ filter(None, logs.split('\n')),
+ ['not-ignored'],
+ )
#######################
# PY SPECIFIC TESTS #