summaryrefslogtreecommitdiff
path: root/integration-cli/docker_cli_pause_test.go
Commit message (Collapse)AuthorAgeFilesLines
* Windows CI: Deal with failing tests for TP4John Howard2016-01-081-0/+7
| | | | Signed-off-by: John Howard <jhoward@microsoft.com>
* Add event types.David Calavera2015-12-301-22/+9
| | | | | | | - Stop serializing JSONMessage in favor of events.Message. - Keep backwards compatibility with JSONMessage for container events. Signed-off-by: David Calavera <david.calavera@gmail.com>
* Use of checkers on docker_cli_pause_test.go.liaoqingwei2015-10-161-30/+11
| | | | Signed-off-by: liaoqingwei <liaoqingwei@huawei.com>
* Windows: Get Integration CLI runningJohn Howard2015-09-041-0/+2
| | | | Signed-off-by: John Howard <jhoward@microsoft.com>
* Use busybox in 'pause' testsArnaud Porterie2015-08-051-8/+4
| | | | | | | Don't assume that any random image will have 'top' and explicitely use the busybox image for testing. Signed-off-by: Arnaud Porterie <arnaud.porterie@docker.com>
* Use dockerCmd when possible (#14603)Vincent Demeester2015-07-141-5/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - integration-cli/docker_cli_attach_test.go - integration-cli/docker_cli_attach_unix_test.go - integration-cli/docker_cli_build_test.go - integration-cli/docker_cli_build_unix_test.go - integration-cli/docker_cli_by_digest_test.go - integration-cli/docker_cli_commit_test.go - integration-cli/docker_cli_config_test.go - integration-cli/docker_cli_cp_test.go - integration-cli/docker_cli_create_test.go - integration-cli/docker_cli_pause_test.go - integration-cli/docker_cli_port_test.go - integration-cli/docker_cli_port_unix_test.go - integration-cli/docker_cli_proxy_test.go - integration-cli/docker_cli_ps_test.go - integration-cli/docker_cli_pull_test.go - integration-cli/docker_cli_push_test.go - docker_api_attach_test.go - docker_api_containers_test.go - docker_api_events_test.go - docker_api_exec_resize_test.go - docker_api_exec_test.go - docker_api_images_test.go - docker_api_info_test.go Signed-off-by: Vincent Demeester <vincent@sbr.pm>
* Use suite for integration-cliAlexander Morozov2015-04-211-27/+24
| | | | | | | It prints test name and duration for each test. Also performs deleteAllContainers after each test. Signed-off-by: Alexander Morozov <lk4d4@docker.com>
* Removed unnecessary error output from dockerCmdbobby abbott2015-04-171-2/+2
| | | | | | | | | Changed method declaration. Fixed all calls to dockerCmd method to reflect the change. resolves #12355 Signed-off-by: bobby abbott <ttobbaybbob@gmail.com>
* fix #12188 integration-cli: tests using "sleep" can timeout too early - ↵Todd Whiteman2015-04-091-14/+2
| | | | | | change to "top" instead Signed-off-by: Todd Whiteman <todd.whiteman@joyent.com>
* Fix vet warningpaul2015-03-251-1/+1
| | | | Signed-off-by: Paul Mou <ppymou@gmail.com>
* integ-cli: fix clock skew against remote test daemonAhmet Alp Balkan2015-03-111-3/+2
| | | | | | | | | | | | | | This fixes the `docker events`-related tests as they have been failing due to clock skew between CI machine and test daemon on some other machine (even 1-2 seconds of diff causes races as we pass local time to --since/--until). If we're running in same host, we keep using time.Now(), otherwise we read the system time of the daemon from `/info` endpoint. Fixes pretty much all events-related tests on windows CI. Signed-off-by: Ahmet Alp Balkan <ahmetalpbalkan@gmail.com>
* Fixes #10457-Pause-and-unpause-accept-multi-containersAndré Martins2015-02-071-0/+113
Applied multi parameters to pause and unpause. Created a new test file dedicated for pause commands. Created a new utility function to get a slice of paused containers. Updated documentation Signed-off-by: André Martins <martins@noironetworks.com>