added withCopy* functionality to copy data into containers. Additional tests and improvements

This commit is contained in:
Sergei Shitikov
2025-01-19 23:12:19 +01:00
parent dfff7ef282
commit 53c67a15ed
4 changed files with 830 additions and 1 deletions
+175
View File
@@ -6,6 +6,7 @@ namespace Testcontainers\Tests\Integration;
use Docker\API\Model\ContainersIdJsonGetResponse200;
use PHPUnit\Framework\TestCase;
use RuntimeException;
use Testcontainers\Container\GenericContainer;
use Testcontainers\Utils\PortGenerator\FixedPortGenerator;
use Testcontainers\Wait\WaitForHostPort;
@@ -24,6 +25,94 @@ class GenericContainerTest extends TestCase
$container->stop();
}
public function testShouldCopyContentToContainer(): void
{
$inlineContent = 'hello world';
$container = (new GenericContainer('alpine'))
->withCommand(['tail', '-f', '/dev/null'])
->withCopyContentToContainer([[
'content' => $inlineContent,
'target' => '/tmp/inline.txt',
]])
->start();
$output = $container->exec(['cat', '/tmp/inline.txt']);
self::assertSame($inlineContent, $output);
$container->stop();
}
public function testShouldCopyDirectoryToContainer(): void
{
$testDir = sys_get_temp_dir() . '/copy-dir-test';
if (!is_dir($testDir)) {
mkdir($testDir);
}
file_put_contents($testDir . '/file1.txt', 'file1 contents');
file_put_contents($testDir . '/file2.txt', 'file2 contents');
$container = (new GenericContainer('alpine'))
->withCommand(['tail', '-f', '/dev/null'])
->withCopyDirectoriesToContainer([[
'source' => $testDir,
'target' => '/test-dir',
]])
->start();
$output1 = $container->exec(['cat', '/test-dir/file1.txt']);
$output2 = $container->exec(['cat', '/test-dir/file2.txt']);
self::assertSame('file1 contents', $output1);
self::assertSame('file2 contents', $output2);
$container->stop();
}
public function testShouldCopyFileToContainer(): void
{
$localFilePath = sys_get_temp_dir() . '/copy-file-test.txt';
file_put_contents($localFilePath, 'hello from file');
$container = (new GenericContainer('alpine'))
->withCommand(['tail', '-f', '/dev/null'])
->withCopyFilesToContainer([[
'source' => $localFilePath,
'target' => '/tmp/test-file.txt',
]])
->start();
$output = $container->exec(['cat', '/tmp/test-file.txt']);
self::assertSame('hello from file', $output);
$container->stop();
}
public function testShouldCopyFileWithPermissions(): void
{
$localFilePath = sys_get_temp_dir() . '/copy-perms-test.txt';
file_put_contents($localFilePath, 'check perms');
$mode = 0o777;
$container = (new GenericContainer('alpine'))
->withCommand(['tail', '-f', '/dev/null'])
->withCopyFilesToContainer([[
'source' => $localFilePath,
'target' => '/tmp/perm-file.txt',
'mode' => $mode,
]])
->start();
$output = $container->exec(['stat', '-c', '%a', '/tmp/perm-file.txt']);
self::assertSame('777', trim($output));
$container->stop();
}
/**
* @throws \JsonException
*/
@@ -41,6 +130,68 @@ class GenericContainerTest extends TestCase
$container->stop();
}
public function testShouldSetLabels(): void
{
$labels = [
'label-1' => 'value-1',
'label-2' => 'value-2',
];
$container = (new GenericContainer('alpine'))
->withLabels($labels)
->withCommand(['tail', '-f', '/dev/null'])
->start();
/** @var ContainersIdJsonGetResponse200|null $inspectResult */
$inspectResult = $container->getClient()->containerInspect($container->getId());
$this->assertArrayHasKey('label-1', (array)$inspectResult?->getConfig()?->getLabels());
$this->assertSame('value-1', ((array)$inspectResult?->getConfig()?->getLabels())['label-1']);
$this->assertArrayHasKey('label-2', (array)$inspectResult?->getConfig()?->getLabels());
$this->assertSame('value-2', ((array)$inspectResult?->getConfig()?->getLabels())['label-2']);
$container->stop();
}
public function testShouldSetName(): void
{
$name = 'test-container-name';
$container = (new GenericContainer('alpine'))
->withName($name)
->withCommand(['tail', '-f', '/dev/null'])
->start();
/** @var ContainersIdJsonGetResponse200|null $inspectResult */
$inspectResult = $container->getClient()->containerInspect($container->getId());
$this->assertSame('/'.$name, $inspectResult?->getName());
$container->stop();
}
public function testShouldSetUser(): void
{
$container = (new GenericContainer('alpine'))
->withUser('nobody')
->withCommand(['tail', '-f', '/dev/null'])
->start();
$output = $container->exec(['whoami']);
$this->assertStringContainsString('nobody', $output);
$container->stop();
}
public function testShouldSetWorkingDir(): void
{
$container = (new GenericContainer('alpine'))
->withWorkingDir('/tmp')
->withCommand(['tail', '-f', '/dev/null'])
->start();
$output = $container->exec(['pwd']);
$this->assertStringContainsString('/tmp', $output);
$container->stop();
}
public function testShouldCaptureStderrWhenCommandFails(): void
{
$container = (new GenericContainer('alpine'))
@@ -66,6 +217,26 @@ class GenericContainerTest extends TestCase
$container->stop();
}
public function testShouldSetHealthCheckCommand(): void
{
$container = (new GenericContainer('alpine'))
->withCommand(['tail', '-f', '/dev/null'])
->withHealthCheckCommand('echo "healthy" || exit 1')
->start();
/** @var ContainersIdJsonGetResponse200|null $inspectResult */
$inspectResult = $container->getClient()->containerInspect($container->getId());
$healthConfig = $inspectResult?->getConfig()?->getHealthcheck();
$this->assertNotNull($healthConfig);
$this->assertEquals(['CMD-SHELL', 'echo "healthy" || exit 1'], $healthConfig->getTest());
$this->assertSame(1000000000, $healthConfig->getInterval());
$this->assertSame(3000000000, $healthConfig->getTimeout());
$this->assertSame(3, $healthConfig->getRetries());
$container->stop();
}
public function testShouldSetEntrypoint(): void
{
$container = (new GenericContainer('cristianrgreco/testcontainer:1.1.14'))
@@ -95,6 +266,8 @@ class GenericContainerTest extends TestCase
$result = $container->exec(["cat", $containerPath.'/test.txt']);
self::assertSame('hello world', $result);
$container->stop();
}
public function testShouldSetPrivilegedMode(): void
@@ -109,5 +282,7 @@ class GenericContainerTest extends TestCase
$privileged = $inspectResult?->getHostConfig()?->getPrivileged();
self::assertTrue($privileged);
$container->stop();
}
}