Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add execStartDetached() API and promote TTY setting instead of config #38

Merged
merged 1 commit into from
Apr 29, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ The resulting stream is a well-behaving readable stream that will emit
the normal stream events:

```php
$stream = $client->execStartStream($exec, $config);
$stream = $client->execStartStream($exec, $tty);
$stream->on('data', function ($data) {
// data will be emitted in multiple chunk
echo $data;
Expand Down
2 changes: 1 addition & 1 deletion examples/benchmark-exec.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
$client = $factory->createClient();

$client->execCreate($container, array('Cmd' => $cmd, 'AttachStdout' => true, 'AttachStderr' => true))->then(function ($info) use ($client) {
$stream = $client->execStartStream($info['Id'], array('Tty' => true));
$stream = $client->execStartStream($info['Id'], true);

$start = microtime(true);
$bytes = 0;
Expand Down
2 changes: 1 addition & 1 deletion examples/exec-inspect.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
})->then(function ($info) use ($client) {
echo 'Inspected after creation: ' . json_encode($info, JSON_PRETTY_PRINT) . PHP_EOL;

return $client->execStart($info['ID'], array('Tty' => true))->then(function ($out) use ($client, $info) {
return $client->execStart($info['ID'], true)->then(function ($out) use ($client, $info) {
echo 'Starting returned: ';
var_dump($out);

Expand Down
2 changes: 1 addition & 1 deletion examples/exec-stream.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
$out->pause();

$client->execCreate($container, array('Cmd' => $cmd, 'AttachStdout' => true, 'AttachStderr' => true, 'Tty' => true))->then(function ($info) use ($client, $out) {
$stream = $client->execStartStream($info['Id'], array('Tty' => true));
$stream = $client->execStartStream($info['Id'], true);
$stream->pipe($out);

$stream->on('error', 'printf');
Expand Down
58 changes: 44 additions & 14 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -911,23 +911,53 @@ public function execCreate($container, $config)
* for bigger command outputs, it's usually a better idea to use a streaming
* approach, see `execStartStream()` for more details.
*
* If detach is true, this API returns after starting the exec command.
* Otherwise, this API sets up an interactive session with the exec command.
*
* @param string $exec exec ID
* @param array $config (see link)
* @param string $exec exec ID
* @param boolean $tty tty mode
* @return PromiseInterface Promise<string> buffered exec data
* @link https://docs.docker.com/reference/api/docker_remote_api_v1.15/#exec-start
* @uses self::execStartStream()
* @see self::execStartStream()
* @see self::execStartDetached()
*/
public function execStart($exec, $config = array())
public function execStart($exec, $tty = false)
{
return $this->streamingParser->bufferedStream(
$this->execStartStream($exec, $config)
$this->execStartStream($exec, $tty)
);
}

/**
* Starts a previously set up exec instance id.
*
* This resolves after starting the exec command, but without waiting for
* the command output (detached mode).
*
* @param string $exec exec ID
* @param boolean $tty tty mode
* @return PromiseInterface Promise<null>
* @link https://docs.docker.com/reference/api/docker_remote_api_v1.15/#exec-start
* @see self::execStart()
* @see self::execStartStream()
*/
public function execStartDetached($exec, $tty = false)
{
return $this->browser->post(
$this->uri->expand(
'/exec/{exec}/start',
array(
'exec' => $exec
)
),
array(
'Content-Type' => 'application/json'
),
$this->json(array(
'Detach' => true,
'Tty' => !!$tty
))
)->then(array($this->parser, 'expectEmpty'));
}

/**
* Starts a previously set up exec instance id.
*
Expand All @@ -938,16 +968,14 @@ public function execStart($exec, $config = array())
* This works for command output of any size as only small chunks have to
* be kept in memory.
*
* If detach is true, this API returns after starting the exec command.
* Otherwise, this API sets up an interactive session with the exec command.
*
* @param string $exec exec ID
* @param array $config (see link)
* @param string $exec exec ID
* @param boolean $tty tty mode
* @return ReadableStreamInterface stream of exec data
* @link https://docs.docker.com/reference/api/docker_remote_api_v1.15/#exec-start
* @see self::execStart()
* @see self::execStartDetached()
*/
public function execStartStream($exec, $config = array())
public function execStartStream($exec, $tty = false)
{
return $this->streamingParser->parsePlainStream(
$this->browser->withOptions(array('streaming' => true))->post(
Expand All @@ -960,7 +988,9 @@ public function execStartStream($exec, $config = array())
array(
'Content-Type' => 'application/json'
),
$this->json($config)
$this->json(array(
'Tty' => !!$tty
))
)
);
}
Expand Down
8 changes: 8 additions & 0 deletions tests/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,14 @@ public function testExecCreate()
$this->expectPromiseResolveWith($json, $this->client->execCreate(123, $config));
}

public function testExecDetached()
{
$body = '';
$this->expectRequestFlow('POST', '/exec/123/start', $this->createResponse($body), 'expectEmpty');

$this->expectPromiseResolveWith('', $this->client->execStartDetached(123, true));
}

public function testExecStart()
{
$data = 'hello world';
Expand Down
12 changes: 5 additions & 7 deletions tests/FunctionalClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public function testExecInspectBeforeRunning($exec)
*/
public function testExecStartWhileRunning($exec)
{
$promise = $this->client->execStart($exec, array('Tty' => true));
$promise = $this->client->execStart($exec, true);
$output = Block\await($promise, $this->loop);

$this->assertEquals('hello world', $output);
Expand Down Expand Up @@ -175,7 +175,7 @@ public function testExecStreamEmptyOutputWhileRunning($container)
$this->assertTrue(is_array($exec));
$this->assertTrue(is_string($exec['Id']));

$stream = $this->client->execStartStream($exec['Id'], array('Tty' => true));
$stream = $this->client->execStartStream($exec['Id'], true);
$stream->on('end', $this->expectCallableOnce());

$output = Block\await(Stream\buffer($stream), $this->loop);
Expand All @@ -187,7 +187,7 @@ public function testExecStreamEmptyOutputWhileRunning($container)
* @depends testStartRunning
* @param string $container
*/
public function testExecStreamEmptyOutputBecauseOfDetachWhileRunning($container)
public function testExecDetachedWhileRunning($container)
{
$promise = $this->client->execCreate($container, array(
'Cmd' => array('sleep', '10'),
Expand All @@ -200,10 +200,8 @@ public function testExecStreamEmptyOutputBecauseOfDetachWhileRunning($container)
$this->assertTrue(is_array($exec));
$this->assertTrue(is_string($exec['Id']));

$stream = $this->client->execStartStream($exec['Id'], array('Tty' => true, 'Detach' => true));
$stream->on('end', $this->expectCallableOnce());

$output = Block\await(Stream\buffer($stream), $this->loop);
$promise = $this->client->execStartDetached($exec['Id'], true);
$output = Block\await($promise, $this->loop);

$this->assertEquals('', $output);
}
Expand Down