2022-05-24 02:35:10 +02:00
|
|
|
<?php
|
2023-01-13 02:43:38 +01:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
2022-05-24 02:35:10 +02:00
|
|
|
|
|
|
|
namespace Tests\Feature\Scheduler;
|
|
|
|
|
|
|
|
use App\Export\CSV\ClientExport;
|
2023-01-13 10:02:32 +01:00
|
|
|
use App\Models\RecurringInvoice;
|
2022-05-24 02:35:10 +02:00
|
|
|
use App\Models\Scheduler;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Carbon\Carbon;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
use Illuminate\Foundation\Testing\WithoutEvents;
|
|
|
|
use Illuminate\Routing\Middleware\ThrottleRequests;
|
|
|
|
use Illuminate\Support\Facades\Session;
|
2022-06-21 11:57:17 +02:00
|
|
|
use Illuminate\Validation\ValidationException;
|
2023-01-13 02:43:38 +01:00
|
|
|
use Tests\MockAccountData;
|
2022-05-24 02:35:10 +02:00
|
|
|
use Tests\MockUnitData;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
class SchedulerTest extends TestCase
|
|
|
|
{
|
|
|
|
use MakesHash;
|
2023-01-13 02:43:38 +01:00
|
|
|
use MockAccountData;
|
2022-05-24 02:35:10 +02:00
|
|
|
use WithoutEvents;
|
|
|
|
|
2022-06-21 12:00:57 +02:00
|
|
|
protected function setUp(): void
|
2022-05-24 02:35:10 +02:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
Session::start();
|
|
|
|
|
|
|
|
$this->faker = \Faker\Factory::create();
|
|
|
|
|
|
|
|
Model::reguard();
|
|
|
|
|
|
|
|
$this->makeTestData();
|
|
|
|
|
|
|
|
$this->withoutMiddleware(
|
|
|
|
ThrottleRequests::class
|
|
|
|
);
|
2022-05-27 09:01:15 +02:00
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
$this->withoutExceptionHandling();
|
2022-05-24 02:35:10 +02:00
|
|
|
}
|
|
|
|
|
2023-01-14 08:47:14 +01:00
|
|
|
|
|
|
|
public function testGetThisMonthRange()
|
|
|
|
{
|
|
|
|
|
|
|
|
$this->travelTo(Carbon::parse('2023-01-14'));
|
|
|
|
|
|
|
|
$this->assertEqualsCanonicalizing(['2023-01-01','2023-01-31'], $this->getDateRange('this_month'));
|
|
|
|
$this->assertEqualsCanonicalizing(['2023-01-01','2023-03-31'], $this->getDateRange('this_quarter'));
|
|
|
|
$this->assertEqualsCanonicalizing(['2023-01-01','2023-12-31'], $this->getDateRange('this_year'));
|
|
|
|
|
|
|
|
$this->assertEqualsCanonicalizing(['2022-12-01','2022-12-31'], $this->getDateRange('previous_month'));
|
|
|
|
$this->assertEqualsCanonicalizing(['2022-10-01','2022-12-31'], $this->getDateRange('previous_quarter'));
|
|
|
|
$this->assertEqualsCanonicalizing(['2022-01-01','2022-12-31'], $this->getDateRange('previous_year'));
|
|
|
|
|
|
|
|
$this->travelBack();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getDateRange($range)
|
|
|
|
{
|
|
|
|
return match ($range) {
|
|
|
|
'this_month' => [now()->firstOfMonth()->format('Y-m-d'), now()->lastOfMonth()->format('Y-m-d')],
|
|
|
|
'this_quarter' => [now()->firstOfQuarter()->format('Y-m-d'), now()->lastOfQuarter()->format('Y-m-d')],
|
|
|
|
'this_year' => [now()->firstOfYear()->format('Y-m-d'), now()->lastOfYear()->format('Y-m-d')],
|
|
|
|
'previous_month' => [now()->subMonth()->firstOfMonth()->format('Y-m-d'), now()->subMonth()->lastOfMonth()->format('Y-m-d')],
|
|
|
|
'previous_quarter' => [now()->subQuarter()->firstOfQuarter()->format('Y-m-d'), now()->subQuarter()->lastOfQuarter()->format('Y-m-d')],
|
|
|
|
'previous_year' => [now()->subYear()->firstOfYear()->format('Y-m-d'), now()->subYear()->lastOfYear()->format('Y-m-d')],
|
|
|
|
'custom_range' => [$this->scheduler->parameters['start_date'], $this->scheduler->parameters['end_date']]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-01-13 10:02:32 +01:00
|
|
|
/**
|
|
|
|
* 'name' => ['bail', 'required', Rule::unique('schedulers')->where('company_id', auth()->user()->company()->id)],
|
|
|
|
'is_paused' => 'bail|sometimes|boolean',
|
|
|
|
'frequency_id' => 'bail|required|integer|digits_between:1,12',
|
|
|
|
'next_run' => 'bail|required|date:Y-m-d',
|
|
|
|
'template' => 'bail|required|string',
|
|
|
|
'parameters' => 'bail|array',
|
|
|
|
*/
|
|
|
|
|
|
|
|
public function testClientStatementGeneration()
|
|
|
|
{
|
|
|
|
$data = [
|
|
|
|
'name' => 'A test statement scheduler',
|
|
|
|
'frequency_id' => RecurringInvoice::FREQUENCY_MONTHLY,
|
2023-01-14 08:47:14 +01:00
|
|
|
'next_run' => '2023-01-14',
|
2023-01-13 10:02:32 +01:00
|
|
|
'template' => 'client_statement',
|
2023-01-13 10:16:17 +01:00
|
|
|
'parameters' => [
|
|
|
|
'date_range' => 'last_month',
|
|
|
|
'show_payments_table' => true,
|
|
|
|
'show_aging_table' => true,
|
2023-01-14 12:00:22 +01:00
|
|
|
'status' => 'paid',
|
|
|
|
'clients' => [],
|
2023-01-13 10:16:17 +01:00
|
|
|
],
|
2023-01-13 10:02:32 +01:00
|
|
|
];
|
2023-01-13 10:16:17 +01:00
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->postJson('/api/v1/task_schedulers', $data);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
2023-01-13 10:02:32 +01:00
|
|
|
}
|
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
public function testDeleteSchedule()
|
2022-05-24 02:35:10 +02:00
|
|
|
{
|
2023-01-13 02:43:38 +01:00
|
|
|
|
2022-05-24 02:35:10 +02:00
|
|
|
$data = [
|
2023-01-13 02:43:38 +01:00
|
|
|
'ids' => [$this->scheduler->hashed_id],
|
2022-05-24 02:35:10 +02:00
|
|
|
];
|
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->postJson('/api/v1/task_schedulers/bulk?action=delete', $data)
|
|
|
|
->assertStatus(200);
|
|
|
|
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'ids' => [$this->scheduler->hashed_id],
|
|
|
|
];
|
2022-05-27 09:01:15 +02:00
|
|
|
|
2022-05-24 02:35:10 +02:00
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
2023-01-13 02:43:38 +01:00
|
|
|
])->postJson('/api/v1/task_schedulers/bulk?action=restore', $data)
|
|
|
|
->assertStatus(200);
|
2022-05-27 09:01:15 +02:00
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
}
|
2022-05-24 02:35:10 +02:00
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
public function testRestoreSchedule()
|
2022-05-24 02:35:10 +02:00
|
|
|
{
|
2022-05-27 09:01:15 +02:00
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
$data = [
|
|
|
|
'ids' => [$this->scheduler->hashed_id],
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->postJson('/api/v1/task_schedulers/bulk?action=archive', $data)
|
|
|
|
->assertStatus(200);
|
2022-05-24 02:35:10 +02:00
|
|
|
|
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
$data = [
|
|
|
|
'ids' => [$this->scheduler->hashed_id],
|
2022-05-24 02:35:10 +02:00
|
|
|
];
|
2023-01-13 02:43:38 +01:00
|
|
|
|
2022-05-24 02:35:10 +02:00
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
2023-01-13 02:43:38 +01:00
|
|
|
])->postJson('/api/v1/task_schedulers/bulk?action=restore', $data)
|
|
|
|
->assertStatus(200);
|
2022-05-24 02:35:10 +02:00
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
}
|
2022-05-24 02:35:10 +02:00
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
public function testArchiveSchedule()
|
2022-05-24 02:35:10 +02:00
|
|
|
{
|
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
$data = [
|
|
|
|
'ids' => [$this->scheduler->hashed_id],
|
|
|
|
];
|
2022-05-24 02:35:10 +02:00
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
2023-01-13 02:43:38 +01:00
|
|
|
])->postJson('/api/v1/task_schedulers/bulk?action=archive', $data)
|
|
|
|
->assertStatus(200);
|
2022-05-24 02:35:10 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
public function testSchedulerPost()
|
2022-05-24 02:35:10 +02:00
|
|
|
{
|
2022-05-27 09:01:15 +02:00
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
$data = [
|
|
|
|
'name' => 'A different Name',
|
|
|
|
'frequency_id' => 5,
|
|
|
|
'next_run' => now()->addDays(2)->format('Y-m-d'),
|
2023-01-17 09:44:10 +01:00
|
|
|
'template' =>'client_statement',
|
2023-01-13 02:43:38 +01:00
|
|
|
'parameters' => [],
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->postJson('/api/v1/task_schedulers', $data);
|
2022-05-27 09:01:15 +02:00
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
2022-05-24 02:35:10 +02:00
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
public function testSchedulerPut()
|
|
|
|
{
|
2022-05-24 02:35:10 +02:00
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
$data = [
|
|
|
|
'name' => 'A different Name',
|
|
|
|
'frequency_id' => 5,
|
|
|
|
'next_run' => now()->addDays(2)->format('Y-m-d'),
|
2023-01-17 09:44:10 +01:00
|
|
|
'template' =>'client_statement',
|
2023-01-13 02:43:38 +01:00
|
|
|
'parameters' => [],
|
2022-05-24 02:35:10 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
2023-01-13 02:43:38 +01:00
|
|
|
])->putJson('/api/v1/task_schedulers/'.$this->scheduler->hashed_id, $data);
|
2022-05-24 02:35:10 +02:00
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSchedulerGet()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/task_schedulers');
|
2022-05-27 09:01:15 +02:00
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
$response->assertStatus(200);
|
2022-05-24 02:35:10 +02:00
|
|
|
}
|
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
public function testSchedulerCreate()
|
2022-05-24 02:35:10 +02:00
|
|
|
{
|
2023-01-13 02:43:38 +01:00
|
|
|
$response = $this->withHeaders([
|
2022-05-24 02:35:10 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
2023-01-13 02:43:38 +01:00
|
|
|
])->get('/api/v1/task_schedulers/create');
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
2022-05-24 02:35:10 +02:00
|
|
|
}
|
2023-01-13 02:43:38 +01:00
|
|
|
|
|
|
|
|
|
|
|
// public function testSchedulerPut()
|
|
|
|
// {
|
|
|
|
// $data = [
|
|
|
|
// 'description' => $this->faker->firstName(),
|
|
|
|
// ];
|
|
|
|
|
|
|
|
// $response = $this->withHeaders([
|
|
|
|
// 'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
// 'X-API-TOKEN' => $this->token,
|
|
|
|
// ])->put('/api/v1/task_schedulers/'.$this->encodePrimaryKey($this->task->id), $data);
|
|
|
|
|
|
|
|
// $response->assertStatus(200);
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// public function testSchedulerCantBeCreatedWithWrongData()
|
|
|
|
// {
|
|
|
|
// $data = [
|
|
|
|
// 'repeat_every' => Scheduler::DAILY,
|
|
|
|
// 'job' => Scheduler::CREATE_CLIENT_REPORT,
|
|
|
|
// 'date_key' => '123',
|
|
|
|
// 'report_keys' => ['test'],
|
|
|
|
// 'date_range' => 'all',
|
|
|
|
// // 'start_from' => '2022-01-01'
|
|
|
|
// ];
|
|
|
|
|
|
|
|
// $response = false;
|
|
|
|
|
|
|
|
// $response = $this->withHeaders([
|
|
|
|
// 'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
// 'X-API-TOKEN' => $this->token,
|
|
|
|
// ])->post('/api/v1/task_scheduler/', $data);
|
|
|
|
|
|
|
|
// $response->assertSessionHasErrors();
|
|
|
|
// }
|
|
|
|
|
|
|
|
// public function testSchedulerCanBeUpdated()
|
|
|
|
// {
|
|
|
|
// $response = $this->createScheduler();
|
|
|
|
|
|
|
|
// $arr = $response->json();
|
|
|
|
// $id = $arr['data']['id'];
|
|
|
|
|
|
|
|
// $scheduler = Scheduler::find($this->decodePrimaryKey($id));
|
|
|
|
|
|
|
|
// $updateData = [
|
|
|
|
// 'start_from' => 1655934741,
|
|
|
|
// ];
|
|
|
|
// $response = $this->withHeaders([
|
|
|
|
// 'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
// 'X-API-TOKEN' => $this->token,
|
|
|
|
// ])->put('/api/v1/task_scheduler/'.$this->encodePrimaryKey($scheduler->id), $updateData);
|
|
|
|
|
|
|
|
// $responseData = $response->json();
|
|
|
|
// $this->assertEquals($updateData['start_from'], $responseData['data']['start_from']);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// public function testSchedulerCanBeSeen()
|
|
|
|
// {
|
|
|
|
// $response = $this->createScheduler();
|
|
|
|
|
|
|
|
// $arr = $response->json();
|
|
|
|
// $id = $arr['data']['id'];
|
|
|
|
|
|
|
|
// $scheduler = Scheduler::find($this->decodePrimaryKey($id));
|
|
|
|
|
|
|
|
// $response = $this->withHeaders([
|
|
|
|
// 'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
// 'X-API-TOKEN' => $this->token,
|
|
|
|
// ])->get('/api/v1/task_scheduler/'.$this->encodePrimaryKey($scheduler->id));
|
|
|
|
|
|
|
|
// $arr = $response->json();
|
|
|
|
// $this->assertEquals('create_client_report', $arr['data']['action_name']);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// public function testSchedulerJobCanBeUpdated()
|
|
|
|
// {
|
|
|
|
// $response = $this->createScheduler();
|
|
|
|
|
|
|
|
// $arr = $response->json();
|
|
|
|
// $id = $arr['data']['id'];
|
|
|
|
|
|
|
|
// $scheduler = Scheduler::find($this->decodePrimaryKey($id));
|
|
|
|
|
|
|
|
// $this->assertSame('create_client_report', $scheduler->action_name);
|
|
|
|
|
|
|
|
// $updateData = [
|
|
|
|
// 'job' => Scheduler::CREATE_CREDIT_REPORT,
|
|
|
|
// 'date_range' => 'all',
|
|
|
|
// 'report_keys' => ['test1'],
|
|
|
|
// ];
|
|
|
|
|
|
|
|
// $response = $this->withHeaders([
|
|
|
|
// 'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
// 'X-API-TOKEN' => $this->token,
|
|
|
|
// ])->put('/api/v1/task_scheduler/'.$this->encodePrimaryKey($scheduler->id), $updateData);
|
|
|
|
|
|
|
|
// $updatedSchedulerJob = Scheduler::first()->action_name;
|
|
|
|
// $arr = $response->json();
|
|
|
|
|
|
|
|
// $this->assertSame('create_credit_report', $arr['data']['action_name']);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// public function createScheduler()
|
|
|
|
// {
|
|
|
|
// $data = [
|
|
|
|
// 'repeat_every' => Scheduler::DAILY,
|
|
|
|
// 'job' => Scheduler::CREATE_CLIENT_REPORT,
|
|
|
|
// 'date_key' => '123',
|
|
|
|
// 'report_keys' => ['test'],
|
|
|
|
// 'date_range' => 'all',
|
|
|
|
// 'start_from' => '2022-01-01',
|
|
|
|
// ];
|
|
|
|
|
|
|
|
// return $response = $this->withHeaders([
|
|
|
|
// 'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
// 'X-API-TOKEN' => $this->token,
|
|
|
|
// ])->post('/api/v1/task_scheduler/', $data);
|
|
|
|
// }
|
2022-05-24 02:35:10 +02:00
|
|
|
}
|