Go Async SDK (clients/go/async/): - Fixed case-sensitive language detection bug (.R for R language) - Created go.mod for module management - Added comprehensive test suite - Created 3 examples with expected output comments - Added README with full documentation Java Sync SDK (clients/java/sync/): - RENAMED: Unsandbox.java -> Un.java (matches naming convention) - Updated class name from Unsandbox to Un - Created pom.xml for Maven build - Added 6 examples (simple + SDK client versions) - Created test suite with JUnit 5 - Added README with API documentation JavaScript Async SDK (clients/javascript/async/): - Fixed unused import - Created package.json with ES module support - Added 5 examples covering all async patterns - Created 71 tests (all passing) - Added comprehensive README PHP Sync SDK (clients/php/sync/): - RENAMED: Unsandbox.php -> un.php (matches naming convention) - Created composer.json with PSR-4 autoloading - Created phpunit.xml for testing - Added 4 examples with expected output comments - Created 54 tests across 4 test files - Added README with full documentation Ruby Sync SDK (clients/ruby/sync/): - Created Gemfile and un.gemspec - Created Rakefile with test task - Updated examples to actually use the SDK - Added 4 examples (hello_world, async_job, language_detection, snapshots) - Created comprehensive test suite with 30+ tests - Added README with documentation Rust Sync SDK (clients/rust/sync/): - Updated Cargo.toml with example declarations - Created 4 examples (hello_world, fibonacci, multi_language, async_polling) - Added comprehensive README with API reference - All dependencies verified correct All SDKs verified: - HMAC-SHA256 authentication implemented - 4-tier credential system (args > env > ~/.unsandbox > ./accounts.csv) - Expected output comments for pipeline validation - Proper error handling - Language detection support
186 lines
5.8 KiB
PHP
186 lines
5.8 KiB
PHP
<?php
|
|
/**
|
|
* Tests for 4-tier credential resolution
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Unsandbox\Tests;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use ReflectionClass;
|
|
|
|
require_once __DIR__ . '/../src/un.php';
|
|
|
|
use Unsandbox\Unsandbox;
|
|
use Unsandbox\CredentialsException;
|
|
|
|
class CredentialsTest extends TestCase
|
|
{
|
|
private string $originalHome;
|
|
private ?string $originalPublicKey;
|
|
private ?string $originalSecretKey;
|
|
private ?string $originalAccount;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
// Save original environment
|
|
$this->originalHome = getenv('HOME') ?: '';
|
|
$this->originalPublicKey = getenv('UNSANDBOX_PUBLIC_KEY') ?: null;
|
|
$this->originalSecretKey = getenv('UNSANDBOX_SECRET_KEY') ?: null;
|
|
$this->originalAccount = getenv('UNSANDBOX_ACCOUNT') ?: null;
|
|
|
|
// Clear environment variables
|
|
putenv('UNSANDBOX_PUBLIC_KEY');
|
|
putenv('UNSANDBOX_SECRET_KEY');
|
|
putenv('UNSANDBOX_ACCOUNT');
|
|
}
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
// Restore original environment
|
|
if ($this->originalHome) {
|
|
putenv("HOME={$this->originalHome}");
|
|
}
|
|
if ($this->originalPublicKey !== null) {
|
|
putenv("UNSANDBOX_PUBLIC_KEY={$this->originalPublicKey}");
|
|
} else {
|
|
putenv('UNSANDBOX_PUBLIC_KEY');
|
|
}
|
|
if ($this->originalSecretKey !== null) {
|
|
putenv("UNSANDBOX_SECRET_KEY={$this->originalSecretKey}");
|
|
} else {
|
|
putenv('UNSANDBOX_SECRET_KEY');
|
|
}
|
|
if ($this->originalAccount !== null) {
|
|
putenv("UNSANDBOX_ACCOUNT={$this->originalAccount}");
|
|
} else {
|
|
putenv('UNSANDBOX_ACCOUNT');
|
|
}
|
|
}
|
|
|
|
private function invokePrivateMethod(object $object, string $methodName, array $parameters = [])
|
|
{
|
|
$reflection = new ReflectionClass(get_class($object));
|
|
$method = $reflection->getMethod($methodName);
|
|
$method->setAccessible(true);
|
|
return $method->invokeArgs($object, $parameters);
|
|
}
|
|
|
|
public function testTier1MethodArguments(): void
|
|
{
|
|
$client = new Unsandbox();
|
|
$creds = $this->invokePrivateMethod($client, 'resolveCredentials', [
|
|
'pk_method',
|
|
'sk_method'
|
|
]);
|
|
|
|
$this->assertEquals(['pk_method', 'sk_method'], $creds);
|
|
}
|
|
|
|
public function testTier1ConstructorArguments(): void
|
|
{
|
|
$client = new Unsandbox('pk_constructor', 'sk_constructor');
|
|
$creds = $this->invokePrivateMethod($client, 'resolveCredentials', [null, null]);
|
|
|
|
$this->assertEquals(['pk_constructor', 'sk_constructor'], $creds);
|
|
}
|
|
|
|
public function testTier1MethodOverridesConstructor(): void
|
|
{
|
|
$client = new Unsandbox('pk_constructor', 'sk_constructor');
|
|
$creds = $this->invokePrivateMethod($client, 'resolveCredentials', [
|
|
'pk_method',
|
|
'sk_method'
|
|
]);
|
|
|
|
$this->assertEquals(['pk_method', 'sk_method'], $creds);
|
|
}
|
|
|
|
public function testTier2EnvironmentVariables(): void
|
|
{
|
|
putenv('UNSANDBOX_PUBLIC_KEY=pk_env');
|
|
putenv('UNSANDBOX_SECRET_KEY=sk_env');
|
|
|
|
$client = new Unsandbox();
|
|
$creds = $this->invokePrivateMethod($client, 'resolveCredentials', [null, null]);
|
|
|
|
$this->assertEquals(['pk_env', 'sk_env'], $creds);
|
|
}
|
|
|
|
public function testTier1OverridesTier2(): void
|
|
{
|
|
putenv('UNSANDBOX_PUBLIC_KEY=pk_env');
|
|
putenv('UNSANDBOX_SECRET_KEY=sk_env');
|
|
|
|
$client = new Unsandbox();
|
|
$creds = $this->invokePrivateMethod($client, 'resolveCredentials', [
|
|
'pk_method',
|
|
'sk_method'
|
|
]);
|
|
|
|
$this->assertEquals(['pk_method', 'sk_method'], $creds);
|
|
}
|
|
|
|
public function testNoCredentialsThrowsException(): void
|
|
{
|
|
// Set HOME to a temp directory without accounts.csv
|
|
$tempDir = sys_get_temp_dir() . '/unsandbox_test_' . uniqid();
|
|
mkdir($tempDir);
|
|
putenv("HOME={$tempDir}");
|
|
|
|
// Change to a directory without accounts.csv
|
|
$cwd = getcwd();
|
|
chdir($tempDir);
|
|
|
|
try {
|
|
$client = new Unsandbox();
|
|
$this->expectException(CredentialsException::class);
|
|
$this->invokePrivateMethod($client, 'resolveCredentials', [null, null]);
|
|
} finally {
|
|
chdir($cwd);
|
|
rmdir($tempDir . '/.unsandbox');
|
|
rmdir($tempDir);
|
|
}
|
|
}
|
|
|
|
public function testCredentialsExceptionMessage(): void
|
|
{
|
|
$tempDir = sys_get_temp_dir() . '/unsandbox_test_' . uniqid();
|
|
mkdir($tempDir);
|
|
putenv("HOME={$tempDir}");
|
|
|
|
$cwd = getcwd();
|
|
chdir($tempDir);
|
|
|
|
try {
|
|
$client = new Unsandbox();
|
|
$this->invokePrivateMethod($client, 'resolveCredentials', [null, null]);
|
|
$this->fail('Expected CredentialsException');
|
|
} catch (CredentialsException $e) {
|
|
$this->assertStringContainsString('No credentials found', $e->getMessage());
|
|
$this->assertStringContainsString('UNSANDBOX_PUBLIC_KEY', $e->getMessage());
|
|
$this->assertStringContainsString('accounts.csv', $e->getMessage());
|
|
} finally {
|
|
chdir($cwd);
|
|
rmdir($tempDir . '/.unsandbox');
|
|
rmdir($tempDir);
|
|
}
|
|
}
|
|
|
|
public function testPartialCredentialsMethodArguments(): void
|
|
{
|
|
// Only public key provided, should fall through to other tiers
|
|
putenv('UNSANDBOX_PUBLIC_KEY=pk_env');
|
|
putenv('UNSANDBOX_SECRET_KEY=sk_env');
|
|
|
|
$client = new Unsandbox();
|
|
$creds = $this->invokePrivateMethod($client, 'resolveCredentials', [
|
|
'pk_method',
|
|
null // Missing secret key
|
|
]);
|
|
|
|
// Should fall back to environment variables
|
|
$this->assertEquals(['pk_env', 'sk_env'], $creds);
|
|
}
|
|
}
|