| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace Tests\Feature;
- use Illuminate\Foundation\Testing\RefreshDatabase;
- use Illuminate\Foundation\Testing\WithFaker;
- use Tests\TestCase;
- class RecentTest extends TestCase
- {
- private $token = 'Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiJ9.eyJuYmYiOjE2NjgyMzE3MTksImV4cCI6MTY5OTc2NzcxOSwidWlkIjoiYmE1NDYzZjMtNzJkMS00NDEwLTg1OGUtZWFkZDEwODg0NzEzIiwiaWQiOiI0In0.LV4ItC5VCqXpbKIXT1zePcnfi-heCf3Df63w7qbXsT1i5KJtwJJC938CLgANjqwcQFa3lrR5TqvT1kkqD-Mmgg';
- /**
- * A basic feature test example.
- *
- * @return void
- */
- public function test_index()
- {
- $response = $this->get('/api/v2/recent?view=user&id=ba5463f3-72d1-4410-858e-eadd10884713');
- $response->assertStatus(200);
- }
- public function test_store()
- {
- //testing store
- $response = $this->withHeaders([
- 'Authorization' => $this->token,
- ])->json('POST', '/api/v2/recent',
- [
- 'type'=>'chapter',
- 'article_id'=>'168-3',
- 'user_uid'=>'ba5463f3-72d1-4410-858e-eadd10884713',
- ]);
- $response->assertOk();
- }
- }
|