You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LuIntDboTest.php 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php
  2. use Luticate\Utils\Dbo\LuDboDeserializeException;
  3. use Luticate\Utils\Dbo\LuIntDbo;
  4. /**
  5. * Created by PhpStorm.
  6. * User: robin
  7. * Date: 5/29/16
  8. * Time: 2:57 PM
  9. */
  10. class LuIntDboTest extends \PHPUnit_Framework_TestCase
  11. {
  12. public function testIntString()
  13. {
  14. $dbo = LuIntDbo::jsonDeserialize("42");
  15. $this->assertSame(42, $dbo->getInt());
  16. }
  17. public function testInt()
  18. {
  19. $dbo = LuIntDbo::jsonDeserialize(42);
  20. $this->assertSame(42, $dbo->getInt());
  21. }
  22. public function testIntNegativeString()
  23. {
  24. $dbo = LuIntDbo::jsonDeserialize("-42");
  25. $this->assertSame(-42, $dbo->getInt());
  26. }
  27. public function testIntNegative()
  28. {
  29. $dbo = LuIntDbo::jsonDeserialize(-42);
  30. $this->assertSame(-42, $dbo->getInt());
  31. }
  32. public function testStringIntPlusData()
  33. {
  34. $this->expectException(LuDboDeserializeException::class);
  35. LuIntDbo::jsonDeserialize("42test");
  36. }
  37. public function testFloat()
  38. {
  39. $this->expectException(LuDboDeserializeException::class);
  40. LuIntDbo::jsonDeserialize(42.42);
  41. }
  42. public function testFloatString()
  43. {
  44. $this->expectException(LuDboDeserializeException::class);
  45. LuIntDbo::jsonDeserialize("42.42");
  46. }
  47. public function testExponentialString()
  48. {
  49. $this->expectException(LuDboDeserializeException::class);
  50. LuIntDbo::jsonDeserialize("42e+01");
  51. }
  52. public function testBool()
  53. {
  54. $this->expectException(LuDboDeserializeException::class);
  55. LuIntDbo::jsonDeserialize(true);
  56. }
  57. public function testBoolString()
  58. {
  59. $this->expectException(LuDboDeserializeException::class);
  60. LuIntDbo::jsonDeserialize("true");
  61. }
  62. public function testArrayEmpty()
  63. {
  64. $this->expectException(LuDboDeserializeException::class);
  65. LuIntDbo::jsonDeserialize([]);
  66. }
  67. public function testArrayString()
  68. {
  69. $this->expectException(LuDboDeserializeException::class);
  70. LuIntDbo::jsonDeserialize(["42"]);
  71. }
  72. public function testArrayInt()
  73. {
  74. $this->expectException(LuDboDeserializeException::class);
  75. LuIntDbo::jsonDeserialize([42]);
  76. }
  77. public function testArrayFloat()
  78. {
  79. $this->expectException(LuDboDeserializeException::class);
  80. LuIntDbo::jsonDeserialize([42.42]);
  81. }
  82. public function testNull()
  83. {
  84. $this->expectException(LuDboDeserializeException::class);
  85. LuIntDbo::jsonDeserialize(null);
  86. }
  87. public function testObject()
  88. {
  89. $this->expectException(LuDboDeserializeException::class);
  90. LuIntDbo::jsonDeserialize(new self());
  91. }
  92. }