mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +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,
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
| }
 |