2020-04-09 12:48:04 +02:00
|
|
|
<?php
|
2020-09-14 13:11:46 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-14 13:11:46 +02:00
|
|
|
*
|
2022-06-21 11:57:17 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-09-14 13:11:46 +02:00
|
|
|
*/
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-04-09 12:48:04 +02:00
|
|
|
namespace Tests\Feature;
|
|
|
|
|
2023-01-31 15:06:21 +01:00
|
|
|
use App\Jobs\Util\WebhookHandler;
|
2023-01-31 11:05:01 +01:00
|
|
|
use App\Repositories\ClientContactRepository;
|
|
|
|
use App\Repositories\ClientRepository;
|
2020-04-09 12:48:04 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
use Illuminate\Routing\Middleware\ThrottleRequests;
|
2023-01-31 11:05:01 +01:00
|
|
|
use Illuminate\Support\Facades\Queue;
|
2020-04-09 12:48:04 +02:00
|
|
|
use Tests\MockAccountData;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
2020-07-06 13:22:36 +02:00
|
|
|
* @covers App\Http\Controllers\WebhookController
|
2020-04-09 12:48:04 +02:00
|
|
|
*/
|
2020-07-06 13:22:36 +02:00
|
|
|
class WebhookAPITest extends TestCase
|
2020-04-09 12:48:04 +02:00
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
use DatabaseTransactions;
|
|
|
|
use MockAccountData;
|
|
|
|
|
2022-06-21 12:00:57 +02:00
|
|
|
protected function setUp() :void
|
2020-04-09 12:48:04 +02:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->withoutMiddleware(
|
|
|
|
ThrottleRequests::class
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->faker = \Faker\Factory::create();
|
|
|
|
|
|
|
|
Model::reguard();
|
|
|
|
|
|
|
|
$this->makeTestData();
|
|
|
|
|
|
|
|
$this->withoutExceptionHandling();
|
|
|
|
}
|
|
|
|
|
2023-01-31 15:06:21 +01:00
|
|
|
// public function testClientWebhooks()
|
|
|
|
// {
|
|
|
|
// // client archived = 37
|
|
|
|
// $data = [
|
|
|
|
// 'target_url' => 'http://hook.com',
|
|
|
|
// 'event_id' => 37,
|
|
|
|
// 'rest_method' => 'post',
|
|
|
|
// 'format' => 'JSON',
|
|
|
|
// ];
|
|
|
|
|
|
|
|
// $response = $this->withHeaders([
|
|
|
|
// 'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
// 'X-API-TOKEN' => $this->token,
|
|
|
|
// ])->post('/api/v1/webhooks', $data);
|
|
|
|
|
|
|
|
// $repo = new ClientRepository(new ClientContactRepository());
|
|
|
|
|
|
|
|
// $repo->archive($this->client);
|
|
|
|
|
|
|
|
// \Illuminate\Support\Facades\Queue::after(function (WebhookHandler $event) {
|
|
|
|
// $this->assertTrue($event->job->isReleased());
|
|
|
|
// });
|
|
|
|
|
|
|
|
// \Illuminate\Support\Facades\Queue::assertPushed(WebhookHandler::class);
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
2023-01-19 01:52:07 +01:00
|
|
|
public function testWebhookGetFilter()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/webhooks?filter=xx');
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
|
|
|
|
2020-07-06 13:22:36 +02:00
|
|
|
public function testWebhookGetRoute()
|
2020-04-09 12:48:04 +02:00
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
2020-07-06 13:22:36 +02:00
|
|
|
])->get('/api/v1/webhooks');
|
2020-04-09 12:48:04 +02:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
|
|
|
|
2020-07-06 13:22:36 +02:00
|
|
|
public function testWebhookPostRoute()
|
2020-04-09 12:48:04 +02:00
|
|
|
{
|
|
|
|
$data = [
|
|
|
|
'target_url' => 'http://hook.com',
|
|
|
|
'event_id' => 1,
|
2023-01-27 11:52:12 +01:00
|
|
|
'rest_method' => 'post',
|
2020-09-06 11:38:10 +02:00
|
|
|
'format' => 'JSON',
|
2020-04-09 12:48:04 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
2020-07-06 13:22:36 +02:00
|
|
|
])->post('/api/v1/webhooks', $data);
|
2020-04-09 12:48:04 +02:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$arr = $response->json();
|
|
|
|
|
|
|
|
$this->assertEquals(1, $arr['data']['event_id']);
|
|
|
|
|
|
|
|
$data = [
|
2023-01-27 11:52:12 +01:00
|
|
|
'target_url' => 'http://hook.com',
|
2020-04-09 12:48:04 +02:00
|
|
|
'event_id' => 2,
|
2023-01-27 11:52:12 +01:00
|
|
|
'rest_method' => 'post',
|
|
|
|
'format' => 'JSON',
|
2020-04-09 12:48:04 +02:00
|
|
|
];
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-04-09 12:48:04 +02:00
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
2020-07-06 13:22:36 +02:00
|
|
|
])->put('/api/v1/webhooks/'.$arr['data']['id'], $data);
|
2020-04-09 12:48:04 +02:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$arr = $response->json();
|
|
|
|
|
|
|
|
$this->assertEquals(2, $arr['data']['event_id']);
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
2020-07-06 13:22:36 +02:00
|
|
|
])->delete('/api/v1/webhooks/'.$arr['data']['id']);
|
2020-04-09 12:48:04 +02:00
|
|
|
|
|
|
|
$arr = $response->json();
|
|
|
|
|
|
|
|
$this->assertNotNull($arr['data']['archived_at']);
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'ids' => [$arr['data']['id']],
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/webhooks/bulk?action=restore', $data);
|
2020-04-09 12:48:04 +02:00
|
|
|
|
|
|
|
$arr = $response->json();
|
|
|
|
|
2020-04-15 02:30:52 +02:00
|
|
|
$this->assertEquals(0, $arr['data'][0]['archived_at']);
|
2020-04-09 12:48:04 +02:00
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/webhooks/bulk?action=delete', $data);
|
2020-04-09 12:48:04 +02:00
|
|
|
|
|
|
|
$arr = $response->json();
|
|
|
|
|
|
|
|
$this->assertNotNull($arr['data'][0]['archived_at']);
|
|
|
|
$this->assertTrue($arr['data'][0]['is_deleted']);
|
|
|
|
}
|
2020-04-15 02:30:52 +02:00
|
|
|
}
|