mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 01:37:33 -05:00 
			
		
		
		
	From the [PHPUnit 8 release notes][1], the `TestCase` methods below now declare a `void` return type: - `setUpBeforeClass()` - `setUp()` - `assertPreConditions()` - `assertPostConditions()` - `tearDown()` - `tearDownAfterClass()` - `onNotSuccessfulTest()` [1]: https://phpunit.de/announcements/phpunit-8.html
		
			
				
	
	
		
			67 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://opensource.org/licenses/AAL
 | 
						|
 */
 | 
						|
 | 
						|
namespace Tests\Feature\PdfMaker;
 | 
						|
 | 
						|
use App\Services\PdfMaker\Design;
 | 
						|
use App\Services\PdfMaker\PdfMaker;
 | 
						|
use App\Utils\HtmlEngine;
 | 
						|
use App\Utils\Traits\MakesInvoiceValues;
 | 
						|
use Tests\MockAccountData;
 | 
						|
use Tests\TestCase;
 | 
						|
 | 
						|
class ExampleIntegrationTest extends TestCase
 | 
						|
{
 | 
						|
    use MakesInvoiceValues, MockAccountData;
 | 
						|
 | 
						|
    protected function setUp(): void
 | 
						|
    {
 | 
						|
        parent::setUp();
 | 
						|
 | 
						|
        $this->makeTestData();
 | 
						|
    }
 | 
						|
 | 
						|
    public function testExample()
 | 
						|
    {
 | 
						|
        $this->markTestIncomplete();
 | 
						|
 | 
						|
        $invoice = $this->invoice;
 | 
						|
        $invitation = $invoice->invitations()->first();
 | 
						|
 | 
						|
        $engine = new HtmlEngine($invitation);
 | 
						|
 | 
						|
        $design = new Design(
 | 
						|
            Design::CLEAN
 | 
						|
        );
 | 
						|
 | 
						|
        $state = [
 | 
						|
            'template' => $design->elements([
 | 
						|
                'client' => $invoice->client,
 | 
						|
                'entity' => $invoice,
 | 
						|
                'pdf_variables' => (array) $invoice->company->settings->pdf_variables,
 | 
						|
            ]),
 | 
						|
            'variables' => $engine->generateLabelsAndValues(),
 | 
						|
        ];
 | 
						|
 | 
						|
        $maker = new PdfMaker($state);
 | 
						|
 | 
						|
        $maker
 | 
						|
            ->design($design)
 | 
						|
            ->build();
 | 
						|
 | 
						|
        //      exec('echo "" > storage/logs/laravel.log');
 | 
						|
 | 
						|
//        nlog($maker->getCompiledHTML(true));
 | 
						|
 | 
						|
        $this->assertTrue(true);
 | 
						|
    }
 | 
						|
}
 |