BaconQrCodeGeneratorTest.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <?php
  2. use Mockery as m;
  3. use PHPUnit\Framework\TestCase;
  4. use SimpleSoftwareIO\QrCode\BaconQrCodeGenerator;
  5. class BaconQrCodeGeneratorTest extends TestCase
  6. {
  7. public function tearDown()
  8. {
  9. if ($container = m::getContainer()) {
  10. $this->addToAssertionCount($container->mockery_getExpectationCount());
  11. }
  12. m::close();
  13. }
  14. public function setUp()
  15. {
  16. $this->writer = m::mock('\BaconQrCode\Writer');
  17. $this->format = m::mock('\BaconQrCode\Renderer\Image\RendererInterface');
  18. $this->qrCode = new BaconQrCodeGenerator($this->writer, $this->format);
  19. }
  20. public function test_it_sets_the_margin()
  21. {
  22. $this->format->shouldReceive('setMargin')
  23. ->with('50')
  24. ->once();
  25. $this->writer->shouldReceive('getRenderer')
  26. ->once()
  27. ->andReturn($this->format);
  28. $this->qrCode->margin(50);
  29. }
  30. public function test_it_sets_the_background_color()
  31. {
  32. $this->format->shouldReceive('setBackgroundColor')
  33. ->once();
  34. $this->writer->shouldReceive('getRenderer')
  35. ->once()
  36. ->andReturn($this->format);
  37. $this->qrCode->backgroundColor(255, 255, 255);
  38. }
  39. public function test_it_sets_the_foreground_color()
  40. {
  41. $this->format->shouldReceive('setForegroundColor')
  42. ->once();
  43. $this->writer->shouldReceive('getRenderer')
  44. ->once()
  45. ->andReturn($this->format);
  46. $this->qrCode->color(255, 255, 255);
  47. }
  48. public function test_it_sets_the_size()
  49. {
  50. $this->format->shouldReceive('setHeight')
  51. ->with(50)
  52. ->once();
  53. $this->format->shouldReceive('setWidth')
  54. ->with(50)
  55. ->once();
  56. $this->writer->shouldReceive('getRenderer')
  57. ->twice()
  58. ->andReturn($this->format);
  59. $this->qrCode->size(50);
  60. }
  61. public function test_it_sets_a_png_format()
  62. {
  63. $this->writer->shouldReceive('setRenderer')
  64. ->with('BaconQrCode\Renderer\Image\Png')
  65. ->once();
  66. $this->qrCode->format('png');
  67. }
  68. public function test_it_sets_a_eps_format()
  69. {
  70. $this->writer->shouldReceive('setRenderer')
  71. ->with('BaconQrCode\Renderer\Image\Eps')
  72. ->once();
  73. $this->qrCode->format('eps');
  74. }
  75. public function test_it_sets_a_svg_format()
  76. {
  77. $this->writer->shouldReceive('setRenderer')
  78. ->with('BaconQrCode\Renderer\Image\Svg')
  79. ->once();
  80. $this->qrCode->format('svg');
  81. }
  82. /**
  83. * @expectedException \InvalidArgumentException
  84. */
  85. public function test_it_throws_an_exception_with_an_invalid_format()
  86. {
  87. $this->qrCode->format('random');
  88. }
  89. public function test_it_generates_a_string()
  90. {
  91. $this->writer->shouldReceive('writeString')
  92. ->with('qrCode', m::type('string'), m::type('int'))
  93. ->once();
  94. $this->qrCode->generate('qrCode');
  95. }
  96. public function test_it_calls_a_valid_dynamic_method_and_generates_a_qrcode()
  97. {
  98. $this->writer->shouldReceive('writeString')
  99. ->once();
  100. $this->qrCode->phoneNumber('555-555-5555');
  101. }
  102. /**
  103. * @expectedException \BadMethodCallException
  104. */
  105. public function test_it_throws_an_exception_if_datatype_is_not_found()
  106. {
  107. $this->qrCode->notReal('foo');
  108. }
  109. }