1
0
Fork 0
mirror of synced 2025-04-03 21:23:35 +03:00

More tests

This commit is contained in:
Alex Komarichev 2024-02-28 20:51:07 +03:00
parent 4f15373074
commit f5f165f929

View file

@ -148,6 +148,37 @@ class DialogsTest extends TestCase
self::assertEmpty($response->getErrors());
}
/**
* @group("dialogs")
* @throws \Exception
*/
public function testDialogAddTagError()
{
self::expectException(NotFoundException::class);
$client = self::getApiClient(
null,
null,
false,
$this->getErrorsResponse(404,
"'color_code can contain only the following values: " .
"light-red; light-blue; light-green; light-orange; light-gray; " .
"light-grayish-blue; red; blue; green; orange; gray; grayish-blue'"
)
);
$tags[0] = new Tag();
$tags[0]->setName('tag1');
$tags[0]->setColorCode('qwerty');
$request = new DialogTagRequest();
$request->setDialogId(60);
$request->setTags($tags);
$response = $client->dialogAddTag($request);
self::assertEmpty($response->getErrors());
}
/**
* @group("dialogs")
* @throws \Exception
@ -179,6 +210,28 @@ class DialogsTest extends TestCase
self::assertEmpty($response->getErrors());
}
/**
* @group("dialogs")
* @throws \Exception
*/
public function testDialogDeleteTagError()
{
$this->expectException(\TypeError::class);
$client = self::getApiClient(
null,
null,
false,
);
$tags[0] = new Tag();
$request = new DialogTagRequest();
$request->setTags($tags);
$client->dialogDeleteTag($request);
}
/**
* @group("dialogs")
* @throws \Exception