forked from docker-php/docker-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExecManagerTest.php
More file actions
93 lines (70 loc) · 2.87 KB
/
Copy pathExecManagerTest.php
File metadata and controls
93 lines (70 loc) · 2.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php
namespace Docker\Tests\Manager;
use Docker\API\Model\ContainerConfig;
use Docker\API\Model\ExecConfig;
use Docker\API\Model\ExecStartConfig;
use Docker\Manager\ContainerManager;
use Docker\Manager\ExecManager;
use Docker\Tests\TestCase;
class ExecManagerTest extends TestCase
{
/**
* Return the container manager
*
* @return ExecManager
*/
private function getManager()
{
return self::getDocker()->getExecManager();
}
public function testStartStream()
{
$createContainerResult = $this->createContainer();
$execConfig = new ExecConfig();
$execConfig->setAttachStdout(true);
$execConfig->setAttachStderr(true);
$execConfig->setCmd(["echo", "output"]);
$execCreateResult = $this->getManager()->create($createContainerResult->getId(), $execConfig);
$execStartConfig = new ExecStartConfig();
$execStartConfig->setDetach(false);
$execStartConfig->setTty(false);
$stream = $this->getManager()->start($execCreateResult->getId(), $execStartConfig, [], ExecManager::FETCH_STREAM);
$this->assertInstanceOf('Docker\Stream\DockerRawStream', $stream);
$stdoutFull = "";
$stream->onStdout(function ($stdout) use (&$stdoutFull) {
$stdoutFull .= $stdout;
});
$stream->wait();
$this->assertEquals("output\n", $stdoutFull);
self::getDocker()->getContainerManager()->kill($createContainerResult->getId(), [
'signal' => 'SIGKILL'
]);
}
public function testExecFind()
{
$createContainerResult = $this->createContainer();
$execConfig = new ExecConfig();
$execConfig->setCmd(["/bin/true"]);
$execCreateResult = $this->getManager()->create($createContainerResult->getId(), $execConfig);
$execStartConfig = new ExecStartConfig();
$execStartConfig->setDetach(false);
$execStartConfig->setTty(false);
$this->getManager()->start($execCreateResult->getId(), $execStartConfig);
$execFindResult = $this->getManager()->find($execCreateResult->getId());
$this->assertInstanceOf('Docker\API\Model\ExecCommand', $execFindResult);
self::getDocker()->getContainerManager()->kill($createContainerResult->getId(), [
'signal' => 'SIGKILL'
]);
}
private function createContainer()
{
$containerConfig = new ContainerConfig();
$containerConfig->setImage('busybox:latest');
$containerConfig->setCmd(['sh']);
$containerConfig->setOpenStdin(true);
$containerConfig->setLabels(new \ArrayObject(['docker-php-test' => 'true']));
$containerCreateResult = self::getDocker()->getContainerManager()->create($containerConfig);
self::getDocker()->getContainerManager()->start($containerCreateResult->getId());
return $containerCreateResult;
}
}