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.

LuBoolDboTest.php 3.3KB

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