Skip to content

Commit

Permalink
add unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
patinthehat committed Jun 22, 2024
1 parent 36b7bcc commit 557c509
Showing 1 changed file with 70 additions and 0 deletions.
70 changes: 70 additions & 0 deletions tests/Unit/ResourceLimitsTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
<?php

use Spatie\PdfToImage\Pdf;
use Spatie\PdfToImage\Enums\ResourceLimitType;

it('sets the area resource limit', function () {
$pdf = new Pdf($this->testFile);
$im = $pdf->resourceLimit(ResourceLimitType::Area, 1024 * 1024 * 16)
->getImageData($this->testFile, 1);

expect((int)$im::getResourceLimit(ResourceLimitType::Area->value))->toBe((int)1024*1024*16);
});

it('sets the disk resource limit', function () {
$pdf = new Pdf($this->testFile);
$im = $pdf->resourceLimit(ResourceLimitType::Disk, 1024 * 1024)
->getImageData($this->testFile, 1);

expect((int)$im::getResourceLimit(ResourceLimitType::Disk->value))->toBe((int)1024*1024);
});

it('sets the file resource limit', function () {
$pdf = new Pdf($this->testFile);
$im = $pdf->resourceLimit(ResourceLimitType::File, 5)
->getImageData($this->testFile, 1);

expect((int)$im::getResourceLimit(ResourceLimitType::File->value))->toBe((int)5);
});


it('sets the map resource limit', function () {
$pdf = new Pdf($this->testFile);
$im = $pdf->resourceLimit(ResourceLimitType::Map, 1024 * 1024*16)
->getImageData($this->testFile, 1);

expect((int)$im::getResourceLimit(ResourceLimitType::Map->value))->toBe((int)1024*1024*16);
});

it('sets the memory resource limit', function () {
$pdf = new Pdf($this->testFile);
$im = $pdf->resourceLimit(ResourceLimitType::Memory, 1024 * 1024*32)
->getImageData($this->testFile, 1);

expect((int)$im::getResourceLimit(ResourceLimitType::Memory->value))->toBe((int)1024*1024*32);
});

it('sets the time resource limit', function () {
$pdf = new Pdf($this->testFile);
$im = $pdf->resourceLimit(ResourceLimitType::Time, 10)
->getImageData($this->testFile, 1);

expect((int)$im::getResourceLimit(ResourceLimitType::Time->value))->toBe((int)10);
});

it('sets the throttle resource limit', function () {
$pdf = new Pdf($this->testFile);
$im = $pdf->resourceLimit(ResourceLimitType::Throttle, 10)
->getImageData($this->testFile, 1);

expect((int)$im::getResourceLimit(ResourceLimitType::Throttle->value))->toBe((int)10);
});

it('sets the thread resource limit', function () {
$pdf = new Pdf($this->testFile);
$im = $pdf->resourceLimit(ResourceLimitType::Thread, 4)
->getImageData($this->testFile, 1);

expect((int)$im::getResourceLimit(ResourceLimitType::Thread->value))->toBe((int)4);
});

0 comments on commit 557c509

Please sign in to comment.