mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 08:11:24 +05:30
38 lines
968 B
PHP
38 lines
968 B
PHP
<?php
|
|
namespace api\tests\functional;
|
|
|
|
use api\tests\FunctionalTester;
|
|
|
|
class FeedbackCest {
|
|
|
|
public function testFeedbackWithoutAuth(FunctionalTester $I) {
|
|
$I->sendPOST('/api/feedback', [
|
|
'subject' => 'Test',
|
|
'email' => 'email@ely.by',
|
|
'type' => 0,
|
|
'message' => 'Hello world',
|
|
]);
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'success' => true,
|
|
]);
|
|
}
|
|
|
|
public function testFeedbackWithAuth(FunctionalTester $I) {
|
|
$I->amAuthenticated();
|
|
$I->sendPOST('/api/feedback', [
|
|
'subject' => 'Test',
|
|
'email' => 'email@ely.by',
|
|
'type' => 0,
|
|
'message' => 'Hello world',
|
|
]);
|
|
$I->canSeeResponseCodeIs(200);
|
|
$I->canSeeResponseIsJson();
|
|
$I->canSeeResponseContainsJson([
|
|
'success' => true,
|
|
]);
|
|
}
|
|
|
|
}
|