forked from docker-php/docker-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExecResourceTest.php
More file actions
92 lines (69 loc) · 2.88 KB
/
Copy pathExecResourceTest.php
File metadata and controls
92 lines (69 loc) · 2.88 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
<?php
declare(strict_types=1);
namespace Docker\Tests\Resource;
use Docker\API\Model\ContainersCreatePostBody;
use Docker\API\Model\ContainersIdExecPostBody;
use Docker\API\Model\ExecIdJsonGetResponse200;
use Docker\API\Model\ExecIdStartPostBody;
use Docker\Stream\DockerRawStream;
use Docker\Tests\TestCase;
class ExecResourceTest extends TestCase
{
/**
* Return the container manager.
*/
private function getManager()
{
return self::getDocker();
}
public function testStartStream(): void
{
$createContainerResult = $this->createContainer();
$execConfig = new ContainersIdExecPostBody();
$execConfig->setAttachStdout(true);
$execConfig->setAttachStderr(true);
$execConfig->setCmd(['echo', 'output']);
$execCreateResult = $this->getManager()->containerExec($createContainerResult->getId(), $execConfig);
$execStartConfig = new ExecIdStartPostBody();
$execStartConfig->setDetach(false);
$execStartConfig->setTty(false);
$stream = $this->getManager()->execStart($execCreateResult->getId(), $execStartConfig);
$this->assertInstanceOf(DockerRawStream::class, $stream);
$stdoutFull = '';
$stream->onStdout(function ($stdout) use (&$stdoutFull): void {
$stdoutFull .= $stdout;
});
$stream->wait();
$this->assertSame("output\n", $stdoutFull);
self::getDocker()->containerKill($createContainerResult->getId(), [
'signal' => 'SIGKILL',
]);
}
public function testExecFind(): void
{
$createContainerResult = $this->createContainer();
$execConfig = new ContainersIdExecPostBody();
$execConfig->setCmd(['/bin/true']);
$execCreateResult = $this->getManager()->containerExec($createContainerResult->getId(), $execConfig);
$execStartConfig = new ExecIdStartPostBody();
$execStartConfig->setDetach(false);
$execStartConfig->setTty(false);
$this->getManager()->execStart($execCreateResult->getId(), $execStartConfig);
$execFindResult = $this->getManager()->execInspect($execCreateResult->getId());
$this->assertInstanceOf(ExecIdJsonGetResponse200::class, $execFindResult);
self::getDocker()->containerKill($createContainerResult->getId(), [
'signal' => 'SIGKILL',
]);
}
private function createContainer()
{
$containerConfig = new ContainersCreatePostBody();
$containerConfig->setImage('busybox:latest');
$containerConfig->setCmd(['sh']);
$containerConfig->setOpenStdin(true);
$containerConfig->setLabels(new \ArrayObject(['docker-php-test' => 'true']));
$containerCreateResult = self::getDocker()->containerCreate($containerConfig);
self::getDocker()->containerStart($containerCreateResult->getId());
return $containerCreateResult;
}
}