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,23 @@
<?php
namespace Tests\Feature\SSHCommands\Storage;
use App\SSHCommands\Storage\DownloadFromDropboxCommand;
use Tests\TestCase;
class DownloadFromDropboxCommandTest extends TestCase
{
public function test_generate_command()
{
$command = new DownloadFromDropboxCommand('src', 'dest', 'token');
$expected = <<<EOD
curl -o dest --location --request POST 'https://content.dropboxapi.com/2/files/download' \
--header 'Accept: application/json' \
--header 'Dropbox-API-Arg: {"path":"src"}' \
--header 'Authorization: Bearer token'
EOD;
$this->assertStringContainsString($expected, $command->content());
}
}