summaryrefslogtreecommitdiff
path: root/tests/integration
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Use unambiguous advertise-addr when initializing a swarmJoffrey F2017-08-315-6/+6
| | | | | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
| * | Always send attach request as streamingJoffrey F2017-08-211-4/+12
| | | | | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
| * | Fix handling of non-multiplexed (TTY) streams over upgraded socketsJoffrey F2017-08-171-1/+1
| | | | | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
| * | Add support for the `squash` flag when buildingGabriel Féron2017-08-151-1/+27
| | | | | | | | | | | | | | | | | | Also added a test that compares the number of layers in the default mode, and with the new flag Signed-off-by: Gabriel Féron <feron.gabriel@gmail.com>
| * | Handle untyped ContainerSpec dict in _check_api_featuresJoffrey F2017-08-151-0/+17
| | | | | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
| * | Return generator for output of load_image endpointJoffrey F2017-08-151-0/+13
| | | | | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
| * | Return the result of the API when using remove_image and load_imageCecile Tonglet2017-08-151-1/+2
| | | | | | | | | | | | | | | | | | Those calls return result that can be used by the developers. Signed-off-by: Cecile Tonglet <cecile.tonglet@gmail.com>
| * | client.containers.run returns None if none of json-file or journald logging ↵Artem Bolshakov2017-08-071-0/+18
| | | | | | | | | | | | | | | | | | drivers used Signed-off-by: Artem Bolshakov <either.free@gmail.com>
* | | Remove test_update_swarm_nameSebastiaan van Stijn2017-11-141-18/+0
| |/ |/| | | | | | | | | | | | | | | | | | | | | Docker currently only supports the "default" cluster in Swarm-mode, and an upcoming SwarmKit release will produce an error if the name of the cluster is updated, causing the test to fail. Given that renaming the cluster is not supported, this patch removes the test Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
* | Update test engine versions in Jenkinsfile2.6.0Joffrey F2017-11-071-1/+1
| | | | | | | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com> Conflicts: Jenkinsfile
* | Add support for insert_defaults in inspect_serviceJoffrey F2017-11-071-0/+11
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Update SwarmSpec to include new parametersJoffrey F2017-11-071-0/+38
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Add support for scope filter in inspect_networkJoffrey F2017-11-071-0/+19
| | | | | | | | | | | | Fix missing scope implementation in create_network Signed-off-by: Joffrey F <joffrey@docker.com>
* | OopsJoffrey F2017-11-071-1/+1
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Fix build tests to not rely on internet connectivityJoffrey F2017-11-071-10/+20
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Improve docs for service list filtersAlessandro Baldo2017-11-071-2/+13
| | | | | | | | | | | | | | | | - add "label" and "mode" to the list of available filter keys in the high-level service API - add "label" and "mode" to the list of available filter keys in the low-level service API - add integration tests Signed-off-by: Alessandro Baldo <git@baldoalessandro.net>
* | More ContainerSpec testsJoffrey F2017-11-074-32/+69
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Add support for configs managementJoffrey F2017-11-073-3/+251
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Add support for extra_hosts option in buildJoffrey F2017-11-071-0/+32
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Add support for mounts in HostConfigJoffrey F2017-11-071-0/+65
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Remove superfluous version validationJoffrey F2017-11-071-1/+0
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Adding swarm id_attribute to match docker outputSteve Clark2017-11-071-0/+1
| | | | | | | | | | Swarm id is returned in a attribute with the key ID. The swarm model was using the default behaviour and looking for Id. Signed-off-by: Steve Clark <steve@cobe.io>
* | Use unambiguous advertise-addr when initializing a swarmJoffrey F2017-11-075-6/+6
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Always send attach request as streamingJoffrey F2017-08-221-4/+12
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Fix handling of non-multiplexed (TTY) streams over upgraded socketsJoffrey F2017-08-171-1/+1
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Add support for the `squash` flag when buildingGabriel Féron2017-08-171-1/+27
| | | | | | | | | | | | Also added a test that compares the number of layers in the default mode, and with the new flag Signed-off-by: Gabriel Féron <feron.gabriel@gmail.com>
* | Handle untyped ContainerSpec dict in _check_api_featuresJoffrey F2017-08-171-0/+17
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Return generator for output of load_image endpointJoffrey F2017-08-171-0/+13
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Return the result of the API when using remove_image and load_imageCecile Tonglet2017-08-171-1/+2
| | | | | | | | | | | | Those calls return result that can be used by the developers. Signed-off-by: Cecile Tonglet <cecile.tonglet@gmail.com>
* | client.containers.run returns None if none of json-file or journald logging ↵Artem Bolshakov2017-08-171-0/+18
|/ | | | | | drivers used Signed-off-by: Artem Bolshakov <either.free@gmail.com>
* Add support for ContainerSpec.TTYJoffrey F2017-06-211-0/+17
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Merge pull request #1658 from docker/1397-build-networkJoffrey F2017-06-201-0/+33
|\ | | | | Add network_mode support to Client.build
| * Add network_mode support to Client.build1397-build-networkJoffrey F2017-06-191-0/+33
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Make sure data is written in prune test so space can be reclaimedmoby33735Joffrey F2017-06-201-1/+3
|/ | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Merge pull request #1626 from datwiz/images-build-error-1625Joffrey F2017-06-191-0/+11
|\ | | | | fix #1625 where ImageCollection.build() could return with incorrect image id
| * new integration task linting for #1625Chris Ottinger2017-05-271-2/+2
| | | | | | | | Signed-off-by: Chris Ottinger <chris.ottinger@team.telstra.com>
| * added integration test for #1625 for ImageCollection.build() that verfies ↵Chris Ottinger2017-05-271-0/+11
| | | | | | | | | | | | that the build method uses the last success message for extracting the image id Signed-off-by: Chris Ottinger <chris.ottinger@team.telstra.com>
* | Add support for start_period in Healthcheck spechealthcheck-start-periodJoffrey F2017-06-161-4/+21
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Merge pull request #1617 from docker/create-ingress-networkJoffrey F2017-06-161-0/+8
|\ \ | | | | | | Add support for ingress in create_network
| * | Add support for ingress in create_networkcreate-ingress-networkJoffrey F2017-05-171-0/+8
| | | | | | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | | Merge pull request #1631 from madhuri-rai07/masterJoffrey F2017-06-161-0/+9
|\ \ \ | | | | | | | | Add support for ``runtime`` config
| * | | Fix test cases for ``runtime`` configMadhuri Kumari2017-06-071-3/+3
| | | | | | | | | | | | | | | | Signed-off-by: Madhuri Kumari <madhuri.kumari@intel.com>
| * | | Add support for ``runtime`` in container create and run APIMadhuri Kumari2017-06-011-0/+9
| | |/ | |/|
* | | Closes #1588, image.tag does not return anythingOlivier Sallou2017-06-161-1/+2
| | | | | | | | | | | | | | | | | | This patch returns the check made against api when tagging an image as stated in documentation Signed-off-by: Olivier Sallou <olivier.sallou@irisa.fr>
* | | Only pull the 'latest' tag when testing imagesBryan Boreham2017-06-141-3/+4
|/ / | | | | | | Signed-off-by: Bryan Boreham <bjboreham@gmail.com>
* | update swarm remove test status code from 500 to >= 400allencloud2017-05-181-1/+1
| | | | | | | | Signed-off-by: allencloud <allen.sun@daocloud.io>
* | Merge pull request #1615 from docker/service-placementJoffrey F2017-05-171-0/+43
|\ \ | |/ |/| Add support for placement preferences and platforms in TaskTemplate
| * Add support for placement preferences and platforms in TaskTemplateservice-placementJoffrey F2017-05-171-0/+43
| | | | | | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* | Add `target` argument to image buildingYong Wen Chua2017-05-161-0/+22
|/ | | | | | | | | | This is related to the multi-stage image building that was introduced in 17.05 (API 1.29). This allows a user to specify the stage of a multi-stage Dockerfile to build for, rather than the final stage. Signed-off-by: Yong Wen Chua <me@yongwen.xyz>
* Merge pull request #1605 from allencloud/update-test-status-code-from-500-to-400Joffrey F2017-05-151-1/+1
|\ | | | | update docker-py test status code from 500 to 400