code style fix

add command tests
This commit is contained in:
Saeed Vaziry
2023-09-02 16:41:42 +02:00
parent 71f9dabc24
commit e1eb42059f
135 changed files with 1859 additions and 135 deletions

View File

@ -0,0 +1,40 @@
<?php
namespace Tests\Feature\SSHCommands\Supervisor;
use App\SSHCommands\Supervisor\CreateWorkerCommand;
use Tests\TestCase;
class CreateWorkerCommandTest extends TestCase
{
public function test_generate_command()
{
$command = new CreateWorkerCommand('1', 'config');
$expected = <<<'EOD'
mkdir -p ~/.logs
mkdir -p ~/.logs/workers
touch ~/.logs/workers/1.log
if ! echo 'config' | sudo tee /etc/supervisor/conf.d/1.conf; then
echo 'VITO_SSH_ERROR' && exit 1
fi
if ! sudo supervisorctl reread; then
echo 'VITO_SSH_ERROR' && exit 1
fi
if ! sudo supervisorctl update; then
echo 'VITO_SSH_ERROR' && exit 1
fi
if ! sudo supervisorctl start 1:*; then
echo 'VITO_SSH_ERROR' && exit 1
fi
EOD;
$this->assertStringContainsString($expected, $command->content());
}
}

View File

@ -0,0 +1,38 @@
<?php
namespace Tests\Feature\SSHCommands\Supervisor;
use App\SSHCommands\Supervisor\DeleteWorkerCommand;
use Tests\TestCase;
class DeleteWorkerCommandTest extends TestCase
{
public function test_generate_command()
{
$command = new DeleteWorkerCommand('1');
$expected = <<<'EOD'
if ! sudo supervisorctl stop 1:*; then
echo 'VITO_SSH_ERROR' && exit 1
fi
if ! sudo rm -rf ~/.logs/workers/1.log; then
echo 'VITO_SSH_ERROR' && exit 1
fi
if ! sudo rm -rf /etc/supervisor/conf.d/1.conf; then
echo 'VITO_SSH_ERROR' && exit 1
fi
if ! sudo supervisorctl reread; then
echo 'VITO_SSH_ERROR' && exit 1
fi
if ! sudo supervisorctl update; then
echo 'VITO_SSH_ERROR' && exit 1
fi
EOD;
$this->assertStringContainsString($expected, $command->content());
}
}

View File

@ -0,0 +1,24 @@
<?php
namespace Tests\Feature\SSHCommands\Supervisor;
use App\SSHCommands\Supervisor\InstallSupervisorCommand;
use Tests\TestCase;
class InstallSupervisorCommandTest extends TestCase
{
public function test_generate_command()
{
$command = new InstallSupervisorCommand();
$expected = <<<'EOD'
sudo DEBIAN_FRONTEND=noninteractive apt-get install supervisor -y
sudo service supervisor enable
sudo service supervisor start
EOD;
$this->assertStringContainsString($expected, $command->content());
}
}

View File

@ -0,0 +1,22 @@
<?php
namespace Tests\Feature\SSHCommands\Supervisor;
use App\SSHCommands\Supervisor\RestartWorkerCommand;
use Tests\TestCase;
class RestartWorkerCommandTest extends TestCase
{
public function test_generate_command()
{
$command = new RestartWorkerCommand('1');
$expected = <<<'EOD'
if ! sudo supervisorctl restart 1:*; then
echo 'VITO_SSH_ERROR' && exit 1
fi
EOD;
$this->assertStringContainsString($expected, $command->content());
}
}

View File

@ -0,0 +1,22 @@
<?php
namespace Tests\Feature\SSHCommands\Supervisor;
use App\SSHCommands\Supervisor\StartWorkerCommand;
use Tests\TestCase;
class StartWorkerCommandTest extends TestCase
{
public function test_generate_command()
{
$command = new StartWorkerCommand('1');
$expected = <<<'EOD'
if ! sudo supervisorctl start 1:*; then
echo 'VITO_SSH_ERROR' && exit 1
fi
EOD;
$this->assertStringContainsString($expected, $command->content());
}
}

View File

@ -0,0 +1,22 @@
<?php
namespace Tests\Feature\SSHCommands\Supervisor;
use App\SSHCommands\Supervisor\StopWorkerCommand;
use Tests\TestCase;
class StopWorkerCommandTest extends TestCase
{
public function test_generate_command()
{
$command = new StopWorkerCommand('1');
$expected = <<<'EOD'
if ! sudo supervisorctl stop 1:*; then
echo 'VITO_SSH_ERROR' && exit 1
fi
EOD;
$this->assertStringContainsString($expected, $command->content());
}
}