| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- require_once __DIR__ . '/../vendor/autoload.php';
- class commandListTest extends \PHPUnit\Framework\TestCase
- {
- public function testUser(): void
- {
- $command = new \ProfiCloS\VestaCP\Command\Lists\User('admin');
- $this->assertSame('v-list-user', $command->getName());
- $this->assertSame(['arg1' => 'admin', 'arg2' => 'json'], $command->getRequestParams());
- $this->assertFalse($command->needReturnCode());
- $this->expectException(TypeError::class);
- $command->process();
- }
- public function testUsers(): void
- {
- $command = new \ProfiCloS\VestaCP\Command\Lists\Users();
- $this->assertSame('v-list-users', $command->getName());
- $this->assertSame(['arg1' => 'json'], $command->getRequestParams());
- $this->expectException(TypeError::class);
- $command->process();
- }
- public function testWebDomains(): void
- {
- $command = new \ProfiCloS\VestaCP\Command\Lists\WebDomains('admin');
- $this->assertSame('v-list-web-domains', $command->getName());
- $this->assertSame(['arg1' => 'admin', 'arg2' => 'json'], $command->getRequestParams());
- $this->expectException(TypeError::class);
- $command->process();
- }
- public function testMailDomains(): void
- {
- $command = new \ProfiCloS\VestaCP\Command\Lists\MailDomains('admin');
- $this->assertSame('v-list-mail-domains', $command->getName());
- $this->assertSame(['arg1' => 'admin', 'arg2' => 'json'], $command->getRequestParams());
- }
- public function testMailDomainDkim(): void
- {
- $command = new \ProfiCloS\VestaCP\Command\Lists\MailDomainDkim('admin', 'domain');
- $this->assertSame('v-list-mail-domain-dkim', $command->getName());
- $this->assertSame(['arg1' => 'admin', 'arg2' => 'domain', 'arg3' => 'json'], $command->getRequestParams());
- $this->assertSame('', $command->getResponseText());
- }
- public function testMailDomainDkimDns(): void
- {
- $command = new \ProfiCloS\VestaCP\Command\Lists\MailDomainDkimDns('admin', 'domain');
- $this->assertSame('v-list-mail-domain-dkim-dns', $command->getName());
- $this->assertSame(['arg1' => 'admin', 'arg2' => 'domain', 'arg3' => 'json'], $command->getRequestParams());
- $this->assertSame('', $command->getResponseText());
- }
- public function testMailAccounts(): void
- {
- $command = new \ProfiCloS\VestaCP\Command\Lists\MailAccounts('admin', 'domain');
- $this->assertSame('v-list-mail-accounts', $command->getName());
- $this->assertSame(['arg1' => 'admin', 'arg2' => 'domain', 'arg3' => 'json'], $command->getRequestParams());
- }
- }
|