This repository has been archived by the owner on Aug 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e53a72d
commit 913fa50
Showing
8 changed files
with
370 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit bootstrap="vendor/autoload.php" | ||
backupGlobals="false" | ||
backupStaticAttributes="false" | ||
colors="true" | ||
verbose="true" | ||
convertErrorsToExceptions="true" | ||
convertNoticesToExceptions="true" | ||
convertWarningsToExceptions="true" | ||
processIsolation="false" | ||
stopOnFailure="false"> | ||
<testsuites> | ||
<testsuite name="default"> | ||
<directory>tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<filter> | ||
<whitelist> | ||
<directory suffix=".php">src/</directory> | ||
</whitelist> | ||
</filter> | ||
</phpunit> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?php | ||
|
||
namespace niklasravnsborg\LaravelPdf\Test; | ||
|
||
use PDF; | ||
use Imagick; | ||
|
||
class PdfTest extends TestCase | ||
{ | ||
public function testSimplePdfIsCorrect() | ||
{ | ||
$pdf = PDF::loadHTML('<p>This gets tested!</p>'); | ||
$this->compareToSnapshot('simple', $pdf->output()); | ||
} | ||
|
||
public function testExposifyPdfExposeIsCorrect() | ||
{ | ||
$pdf = PDF::loadFile('tests/views/exposify-expose.html'); | ||
$this->compareToSnapshot('exposify', $pdf->output()); | ||
} | ||
|
||
protected function compareToSnapshot($snapshotId, $data) | ||
{ | ||
$snapshotFile = "tests/snapshots/{$snapshotId}.pdf"; | ||
|
||
// create snapshot if it doesn't exist | ||
if (!file_exists($snapshotFile)) { | ||
file_put_contents($snapshotFile, $data); | ||
return; | ||
} | ||
|
||
$snapshot = file_get_contents($snapshotFile); | ||
$this->assertPdfsLookTheSame($snapshot, $data); | ||
} | ||
|
||
public function assertPdfsLookTheSame($pdf1, $pdf2, $message = '') | ||
{ | ||
$assertedImagick = new Imagick(); | ||
$assertedImagick->readImageBlob($pdf1); | ||
$assertedImagick->resetIterator(); | ||
$assertedImagick = $assertedImagick->appendImages(true); | ||
$testImagick = new Imagick(); | ||
$testImagick->readImageBlob($pdf2); | ||
$testImagick->resetIterator(); | ||
$testImagick = $testImagick->appendImages(true); | ||
|
||
$diff = $assertedImagick->compareImages($testImagick, 1); | ||
$pdfsLookTheSame = 0.0 == $diff[1]; | ||
self::assertTrue($pdfsLookTheSame, 'Failed asserting that PDFs look the same.'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
namespace niklasravnsborg\LaravelPdf\Test; | ||
|
||
use niklasravnsborg\LaravelPdf\Facades\Pdf; | ||
use niklasravnsborg\LaravelPdf\PdfServiceProvider; | ||
use Orchestra\Testbench\TestCase as OrchestraTestCase; | ||
|
||
class TestCase extends OrchestraTestCase { | ||
/** | ||
* Load package service provider | ||
* @param \Illuminate\Foundation\Application $app | ||
* @return lasselehtinen\MyPackage\MyPackageServiceProvider | ||
*/ | ||
protected function getPackageProviders($app) | ||
{ | ||
return [PdfServiceProvider::class]; | ||
} | ||
|
||
/** | ||
* Load package alias | ||
* @param \Illuminate\Foundation\Application $app | ||
* @return array | ||
*/ | ||
protected function getPackageAliases($app) | ||
{ | ||
return [ | ||
'PDF' => Pdf::class, | ||
]; | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
Oops, something went wrong.