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.

LuStringDboArrayTest.php 3.4KB

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