Scheduler tests

This commit is contained in:
David Bomba 2023-01-18 10:34:06 +11:00
parent 753cfa9585
commit 368006f63f
2 changed files with 68 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class SchedulerService
//Email only the selected clients //Email only the selected clients
if(count($this->scheduler->parameters['clients']) >= 1) if(count($this->scheduler->parameters['clients']) >= 1)
$query->where('id', $this->transformKeys($this->scheduler->parameters['clients'])); $query->whereIn('id', $this->transformKeys($this->scheduler->parameters['clients']));
$query->cursor() $query->cursor()
->each(function ($_client){ ->each(function ($_client){

View File

@ -14,6 +14,7 @@ namespace Tests\Feature\Scheduler;
use App\Factory\SchedulerFactory; use App\Factory\SchedulerFactory;
use App\Models\Client; use App\Models\Client;
use App\Models\RecurringInvoice; use App\Models\RecurringInvoice;
use App\Models\Scheduler;
use App\Services\Scheduler\SchedulerService; use App\Services\Scheduler\SchedulerService;
use App\Utils\Traits\MakesHash; use App\Utils\Traits\MakesHash;
use Carbon\Carbon; use Carbon\Carbon;
@ -53,6 +54,72 @@ class SchedulerTest extends TestCase
} }
public function testClientCountResolution()
{
$c = Client::factory()->create([
'company_id' => $this->company->id,
'user_id' => $this->user->id,
'number' => rand(1000,100000),
'name' => 'A fancy client'
]);
$c2 = Client::factory()->create([
'company_id' => $this->company->id,
'user_id' => $this->user->id,
'number' => rand(1000,100000),
'name' => 'A fancy client'
]);
$data = [
'name' => 'A test statement scheduler',
'frequency_id' => RecurringInvoice::FREQUENCY_MONTHLY,
'next_run' => now()->format('Y-m-d'),
'template' => 'client_statement',
'parameters' => [
'date_range' => 'previous_month',
'show_payments_table' => true,
'show_aging_table' => true,
'status' => 'paid',
'clients' => [
$c2->hashed_id,
$c->hashed_id
],
],
];
$response = false;
try{
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->postJson('/api/v1/task_schedulers', $data);
} catch (ValidationException $e) {
$message = json_decode($e->validator->getMessageBag(), 1);
nlog($message);
}
$response->assertStatus(200);
$data = $response->json();
$scheduler = Scheduler::find($this->decodePrimaryKey($data['data']['id']));
$this->assertInstanceOf(Scheduler::class, $scheduler);
$this->assertCount(2, $scheduler->parameters['clients']);
$q = Client::query()
->where('company_id', $scheduler->company_id)
->whereIn('id', $this->transformKeys($scheduler->parameters['clients']))
->cursor();
$this->assertCount(2, $q);
}
public function testClientsValidationInScheduledTask() public function testClientsValidationInScheduledTask()
{ {