ImageTest.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. use PHPUnit\Framework\TestCase;
  3. use SimpleSoftwareIO\QrCode\Image;
  4. class ImageTest extends TestCase
  5. {
  6. /**
  7. * The location to save the testing image.
  8. *
  9. * @var string
  10. */
  11. protected $testImageSaveLocation;
  12. /**
  13. * The location to save the compare image.
  14. *
  15. * @var string
  16. */
  17. protected $compareTestSaveLocation;
  18. /**
  19. * The path to the image used to test.
  20. *
  21. * @var string
  22. */
  23. protected $imagePath;
  24. /**
  25. * The Image object.
  26. *
  27. * @var Image
  28. */
  29. protected $image;
  30. public function setUp()
  31. {
  32. $this->imagePath = file_get_contents(dirname(__FILE__).'/Images/simplesoftware-icon-grey-blue.png');
  33. $this->image = new Image($this->imagePath);
  34. $this->testImageSaveLocation = dirname(__FILE__).'/testImage.png';
  35. $this->compareTestSaveLocation = dirname(__FILE__).'/compareImage.png';
  36. }
  37. public function tearDown()
  38. {
  39. @unlink($this->testImageSaveLocation);
  40. @unlink($this->compareTestSaveLocation);
  41. }
  42. /**
  43. * Must test that the outputted PNG is the same because you can not compare resources.
  44. */
  45. public function test_it_loads_an_image_string_into_a_resource()
  46. {
  47. imagepng(imagecreatefromstring($this->imagePath), $this->compareTestSaveLocation);
  48. imagepng($this->image->getImageResource(), $this->testImageSaveLocation);
  49. $correctImage = file_get_contents($this->compareTestSaveLocation);
  50. $testImage = file_get_contents($this->testImageSaveLocation);
  51. $this->assertEquals($correctImage, $testImage);
  52. }
  53. public function test_it_gets_the_correct_height()
  54. {
  55. $correctHeight = 512;
  56. $testHeight = $this->image->getHeight();
  57. $this->assertEquals($correctHeight, $testHeight);
  58. }
  59. public function test_it_gets_the_correct_width()
  60. {
  61. $correctWidth = 512;
  62. $testWidth = $this->image->getWidth();
  63. $this->assertEquals($correctWidth, $testWidth);
  64. }
  65. }