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()); } }