Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test enhancement #6

Merged
merged 2 commits into from
Nov 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ language: php
php:
- 5.6
- 7.1
- 7.2
- nightly

matrix:
allow_failures:
- php: nightly
script:
- composer install --prefer-dist --no-interaction
- mkdir -p build/logs
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
},
"require-dev": {
"satooshi/php-coveralls": "v2.*",
"phpunit/phpunit": "5.7.5"
"phpunit/phpunit": "^5.7 || ^6.5"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@

use Ajaxray\PHPWatermark\CommandBuilders\ImageCommandBuilder;
use Ajaxray\PHPWatermark\Watermark;
use PHPUnit\Framework\TestCase;

class ImageCommandBuilderTest extends \PHPUnit_Framework_TestCase
class ImageCommandBuilderTest extends TestCase
{
protected $options = [
'position' => 'Center',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@

use Ajaxray\PHPWatermark\CommandBuilders\PDFCommandBuilder;
use Ajaxray\PHPWatermark\Watermark;
use PHPUnit\Framework\TestCase;

class PDFCommandBuilderTest extends \PHPUnit_Framework_TestCase
class PDFCommandBuilderTest extends TestCase
{
protected $options = [
'position' => 'Center',
Expand Down
53 changes: 52 additions & 1 deletion tests/Ajaxray/PHPWatermark/Tests/WatermarkTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
use Ajaxray\PHPWatermark\CommandBuilders\PDFCommandBuilder;
use Ajaxray\PHPWatermark\Watermark;
use Ajaxray\TestUtils\NonPublicAccess;
use PHPUnit\Framework\TestCase;

class WatermarkTest extends \PHPUnit_Framework_TestCase
class WatermarkTest extends TestCase
{
use NonPublicAccess;

Expand Down Expand Up @@ -213,6 +214,56 @@ public function testCommandReturnedIfDebugEnabled()
$this->assertContains('path/to/logo.png', $command);
}

public function testSetPositionOnPositionList()
{
$watermark = new Watermark('path/to/file.jpg');
$setPosition = $watermark->setPosition(Watermark::POSITION_CENTER);
$options = $this->invokeProperty($watermark, 'options');

$this->assertInstanceOf(Watermark::class, $setPosition);
$this->assertContains(Watermark::POSITION_CENTER, $options);
}

public function testSetStyle()
{
$watermark = new Watermark('path/to/file.jpg');
$setStyle = $watermark->setStyle(Watermark::STYLE_IMG_COLORLESS);
$options = $this->invokeProperty($watermark, 'options');

$this->assertInstanceOf(Watermark::class, $setStyle);
$this->assertContains(Watermark::STYLE_IMG_COLORLESS, $options);
}

public function testSetTileSize()
{
$watermark = new Watermark('path/to/file.jpg');
$setStyle = $watermark->setTileSize(200, 150);
$options = $this->invokeProperty($watermark, 'options');

$this->assertInstanceOf(Watermark::class, $setStyle);
$this->assertContains([200, 150], $options);
}

public function testSetFont()
{
$watermark = new Watermark('path/to/file.jpg');
$setFont = $watermark->setFont('Arial');
$options = $this->invokeProperty($watermark, 'options');

$this->assertInstanceOf(Watermark::class, $setFont);
$this->assertContains('Arial', $options);
}

public function testSetFontSize()
{
$watermark = new Watermark('path/to/file.jpg');
$setFontSize = $watermark->setFontSize(20);
$options = $this->invokeProperty($watermark, 'options');

$this->assertInstanceOf(Watermark::class, $setFontSize);
$this->assertContains(20, $options);
}

}


Expand Down