summaryrefslogtreecommitdiff
path: root/tests/integration_test.py
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Use shlex for exec string cmd, added integration testcase.Patrick Hensley2014-10-221-2/+17
| | |
* | | Unit and integration tests for exec.Patrick Hensley2014-10-171-0/+28
|/ /
* | Fixed integration testsJoffrey F2014-09-081-6/+4
| |
* | first cut of restart policyShreyas Karnik2014-08-261-0/+17
|/
* Merge pull request #268 from brutasse/265-dockerignoreJoffrey F2014-07-231-0/+39
|\ | | | | Add support for .dockerignore
| * Add support for .dockerignoreBruno Renié2014-07-231-0/+40
| | | | | | | | | | | | | | | | Fixes #265. Implementation is a bit more elaborate than docker's implementation and matches with the one proposed in dotcloud/docker#6869 to handle permission issues more nicely.
* | allow docker client to connect to a remote hostMichael Merickel2014-07-071-2/+4
| | | | | | | | | | | | | | to run the tests on a host without using the default unix socket, it's now possible to specify: DOCKER_HOST=tcp://localdocker:4243 env/bin/python setup.py test
* | support specifying location of temp foldersMichael Merickel2014-07-051-1/+9
| | | | | | | | | | | | | | | | | | | | | | TestWithBinds was failing when shared folders are used because /tmp was not shared from OS X to my VM. This fix allows the location of the temp folders to be changed via: TMPDIR=$(pwd) env/bin/python setup.py test This also properly cleans up temp folders which were sticking around before.
* | fix ListContainers which was failing with "executable true; not found"Michael Merickel2014-07-051-2/+2
|/
* Updated/fixed integration tests. Moved 'pull busybox' out of setUp(). ↵Joffrey F2014-06-201-44/+49
| | | | Commented out logs streaming test
* Merge pull request #236 from rail44/feature-support-get-and-load-imageJoffrey F2014-06-171-1/+1
|\ | | | | Support get and load image
| * Support get and load imageSatoshi Amemiya2014-06-021-1/+1
| |
* | Fix joining of unicode and byte strings in python3.Sam Riley2014-06-011-4/+4
|/ | | | | Check logs response in unit tests, and fix log integration tests for py3.
* Merge pull request #210 from aanand/universally-compatible-chunkingMaxime Petazzoni2014-05-211-3/+3
|\ | | | | Universally-compatible reading of chunked streams
| * Universally-compatible reading of chunked streamsAanand Prasad2014-04-281-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | Docker introduced newlines in stream output in version 0.9 (https://github.com/dotcloud/docker/pull/4276), but not to all endpoints - POST /images/create, for example, does not include them. This reverts to the old, less pleasant implementation of _stream_helper(), with a manual check for newlines to fix the problem described in #176 and fixed in #184, without the accompanying regression. It should work against Docker 0.8, 0.9 and 0.10, both when building and when pulling.
* | Fix integration test regressionAanand Prasad2014-04-281-1/+9
|/ | | | | The test for starting a container with volume binds hadn't been updated to use the new dictionary structure for the `binds` argument.
* Moved APIError exception to docker.errors module.Evgeniy L2014-04-071-4/+4
|
* Fixed integration testsshin-2014-04-041-2/+2
|
* Merge branch 'volumes-from-as-list' of github.com:blackrobot/docker-py into ↵shin-2014-04-041-0/+30
|\ | | | | | | blackrobot-volumes-from-as-list
| * Added test for container with volumes_fromDamon Jablons2014-04-011-0/+30
| |
* | Updated unit tests API version, flake8 fixesshin-2014-04-041-2/+3
| |
* | Revert unneeded changeJoseph Schorr2014-04-041-1/+1
| |
* | Make sure the build command in the client sends the auth credentials along. ↵Joseph Schorr2014-04-041-2/+25
|/ | | | Required for "FROM " lines that pull from private registries
* Fixes for flake8Evgeniy L2014-03-281-7/+7
| | | | | | Next rules were broken * E265 block comment should start with '# ' * E713 test for membership should be 'not in'
* Updated integration testsshin-2014-02-181-27/+15
|
* Merge pull request #119 from ureyes84/masterJoffrey F2014-01-161-0/+28
|\ | | | | Updated port function
| * Improves code styleUlises Reyes2013-12-151-5/+8
| |
| * Refactored test. It now makes 2 calls to portUlises Reyes2013-12-151-17/+20
| |
| * Shortened linesUlises Reyes2013-12-141-1/+2
| |
| * Improved assertions in the port testUlises Reyes2013-12-141-2/+7
| |
| * Updated the port function in order to parse the new NetworkSettings Port ↵Ulises Reyes2013-12-141-0/+16
| | | | | | | | dict (fixes #88)
* | Rework auth config loading and use of auth data for login/pull/pushMaxime Petazzoni2014-01-071-5/+23
| | | | | | | | Signed-off-by: Maxime Petazzoni <max@signalfuse.com>
* | Style fixes for flake8Maxime Petazzoni2013-12-241-0/+2
| | | | | | | | Signed-off-by: Maxime Petazzoni <max@signalfuse.com>
* | Fix infinite loop in Client.logs(stream=True) caused by connection close.Fedor Korotkiy2013-12-241-0/+17
|/
* Privileged option is part of host config, not configPeter Yu2013-11-181-11/+22
|
* Merge branch 'timeout-support' of github.com:mpetazzoni/docker-py into ↵shin-2013-11-151-4/+26
|\ | | | | | | | | | | | | | | | | mpetazzoni-timeout-support Conflicts: docker/client.py tests/integration_test.py tests/test.py
| * Allow for configurable timeout on all client requestsMaxime Petazzoni2013-11-081-3/+25
| | | | | | | | Signed-off-by: Maxime Petazzoni <max@signalfuse.com>
* | Merge branch 'v65-2' of github.com:yukw777/docker-py into yukw777-v65-2shin-2013-11-151-1/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed some tests Conflicts: docker/client.py tests/fake_api.py tests/integration_test.py tests/test.py
| * | many tests have been implementedPeter Yu2013-11-101-1/+1
| | |
| * | links implemented. use v1.6 by default nowPeter Yu2013-11-101-0/+69
| | |
| * | pull, push, build are streamableyukw7772013-11-081-0/+39
| |/
* | Fix privileged testshin-2013-11-151-1/+3
| |
* | Merge branch 'master' of github.com:dotcloud/docker-py into yukw777-linkshin-2013-11-151-0/+19
|\ \ | | | | | | | | | | | | | | | | | | Fixed test_pull and test_pull_stream (don't assume headers content is empty) Conflicts: tests/test.py
| * | Add signal argument to kill commandDaniel Graña2013-11-141-0/+19
| | |
* | | links implemented. use v1.6 by default nowPeter Yu2013-11-121-0/+88
|/ /
* | Merge branch 'stream-pull-request' of github.com:yukw777/docker-py into ↵shin-2013-11-111-0/+39
|\ \ | |/ |/| | | yukw777-stream-pull-request
| * pull, push, build are streamableyukw7772013-11-081-0/+39
| |
* | Add integration test for named container creationMaxime Petazzoni2013-11-071-1/+11
|/ | | | Signed-off-by: Maxime Petazzoni <max@signalfuse.com>
* Flake8 compliance + flake8 tests in tox.inishin-2013-10-151-11/+49
|
* Refactoring, Python 3 compatibility, Tests working with python 3, cleaned up ↵shin-2013-10-151-6/+36
| | | | imports.