VerifyTest.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <?php
  2. include __DIR__.'/../src/Codeception/function.php';
  3. include __DIR__.'/../vendor/autoload.php';
  4. class VerifyTest extends PHPUnit_Framework_TestCase {
  5. protected $xml;
  6. protected function setUp()
  7. {
  8. $this->xml = new DomDocument;
  9. $this->xml->loadXML('<foo><bar>Baz</bar><bar>Baz</bar></foo>');
  10. }
  11. public function testEquals()
  12. {
  13. verify(5)->equals(5);
  14. verify("hello")->equals("hello");
  15. verify("user have 5 posts", 5)->equals(5);
  16. verify(3.251)->equals(3.25, 0.01);
  17. verify("respects delta", 3.251)->equals(3.25, 0.01);
  18. verify_file(__FILE__)->equals(__FILE__);
  19. }
  20. public function testNotEquals()
  21. {
  22. verify(3)->notEquals(5);
  23. verify(3.252)->notEquals(3.25, 0.001);
  24. verify("respects delta", 3.252, 0.001);
  25. verify_file(__FILE__)->notEquals(__DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'composer.json');
  26. }
  27. public function testContains()
  28. {
  29. verify(array(3, 2))->contains(3);
  30. verify("user have 5 posts", array(3, 2))->notContains(5);
  31. }
  32. public function testGreaterLowerThan()
  33. {
  34. verify(7)->greaterThan(5);
  35. verify(7)->lessThan(10);
  36. verify(7)->lessOrEquals(7);
  37. verify(7)->lessOrEquals(8);
  38. verify(7)->greaterOrEquals(7);
  39. verify(7)->greaterOrEquals(5);
  40. }
  41. public function testTrueFalseNull()
  42. {
  43. verify(true)->true();
  44. verify(false)->false();
  45. verify(null)->null();
  46. verify(true)->notNull();
  47. verify('something should be false', false)->false();
  48. verify('something should be true', true)->true();
  49. }
  50. public function testEmptyNotEmpty()
  51. {
  52. verify(array('3', '5'))->notEmpty();
  53. verify(array())->isEmpty();
  54. }
  55. public function testVerifyThat()
  56. {
  57. verify_that(12);
  58. verify_that('hello world');
  59. verify_that(array('hello'));
  60. }
  61. public function testVerifyNot()
  62. {
  63. verify_not(false);
  64. verify_not(null);
  65. verify_not(array());
  66. }
  67. public function testExpectFunctions()
  68. {
  69. expect(12)->equals(12);
  70. expect_that(true);
  71. expect_not(false);
  72. }
  73. public function testArrayHasKey()
  74. {
  75. $errors = array('title' => 'You should add title');
  76. expect($errors)->hasKey('title');
  77. expect($errors)->hasntKey('body');
  78. }
  79. public function testIsInstanceOf()
  80. {
  81. $testClass = new DateTime();
  82. expect($testClass)->isInstanceOf('DateTime');
  83. expect($testClass)->isNotInstanceOf('DateTimeZone');
  84. }
  85. public function testInternalType()
  86. {
  87. $testVar = array();
  88. expect($testVar)->internalType('array');
  89. expect($testVar)->notInternalType('boolean');
  90. }
  91. public function testHasAttribute()
  92. {
  93. expect('Exception')->hasAttribute('message');
  94. expect('Exception')->notHasAttribute('fakeproperty');
  95. $testObject = (object) array('existingAttribute' => true);
  96. expect($testObject)->hasAttribute('existingAttribute');
  97. expect($testObject)->notHasAttribute('fakeproperty');
  98. }
  99. public function testHasStaticAttribute()
  100. {
  101. expect('FakeClassForTesting')->hasStaticAttribute('staticProperty');
  102. expect('FakeClassForTesting')->notHasStaticAttribute('fakeProperty');
  103. }
  104. public function testContainsOnly()
  105. {
  106. expect(array('1', '2', '3'))->containsOnly('string');
  107. expect(array('1', '2', 3))->notContainsOnly('string');
  108. }
  109. public function testContainsOnlyInstancesOf()
  110. {
  111. expect(array(new FakeClassForTesting(), new FakeClassForTesting(), new FakeClassForTesting()))
  112. ->containsOnlyInstancesOf('FakeClassForTesting');
  113. }
  114. public function testCount()
  115. {
  116. expect(array(1,2,3))->count(3);
  117. expect(array(1,2,3))->notCount(2);
  118. }
  119. public function testEqualXMLStructure()
  120. {
  121. $expected = new DOMElement('foo');
  122. $actual = new DOMElement('foo');
  123. expect($expected)->equalXMLStructure($actual);
  124. }
  125. public function testFileExists()
  126. {
  127. expect_file(__FILE__)->exists();
  128. expect_file('completelyrandomfilename.txt')->notExists();
  129. }
  130. public function testEqualsJsonFile()
  131. {
  132. expect_file(__DIR__ . DIRECTORY_SEPARATOR . 'assets' . DIRECTORY_SEPARATOR . 'json-test-file.json')
  133. ->equalsJsonFile(__DIR__ . DIRECTORY_SEPARATOR . 'assets' . DIRECTORY_SEPARATOR . 'equal-json-test-file.json');
  134. expect('{"some" : "data"}')->equalsJsonFile(__DIR__ . DIRECTORY_SEPARATOR . 'assets' . DIRECTORY_SEPARATOR . 'equal-json-test-file.json');
  135. }
  136. public function testEqualsJsonString()
  137. {
  138. expect('{"some" : "data"}')->equalsJsonString('{"some" : "data"}');
  139. }
  140. public function testRegExp()
  141. {
  142. expect('somestring')->regExp('/string/');
  143. }
  144. public function testMatchesFormat()
  145. {
  146. expect('somestring')->matchesFormat('%s');
  147. expect('somestring')->notMatchesFormat('%i');
  148. }
  149. public function testMatchesFormatFile()
  150. {
  151. expect('23')->matchesFormatFile(__DIR__ . DIRECTORY_SEPARATOR . 'assets' . DIRECTORY_SEPARATOR . 'format-file.txt');
  152. expect('asdfas')->notMatchesFormatFile(__DIR__ . DIRECTORY_SEPARATOR . 'assets' . DIRECTORY_SEPARATOR . 'format-file.txt');
  153. }
  154. public function testSame()
  155. {
  156. expect(1)->same(0+1);
  157. expect(1)->notSame(true);
  158. }
  159. public function testEndsWith()
  160. {
  161. expect('A completely not funny string')->endsWith('ny string');
  162. expect('A completely not funny string')->notEndsWith('A completely');
  163. }
  164. public function testEqualsFile()
  165. {
  166. expect('%i')->equalsFile(__DIR__ . DIRECTORY_SEPARATOR . 'assets' . DIRECTORY_SEPARATOR . 'format-file.txt');
  167. expect('Another string')->notEqualsFile(__DIR__ . DIRECTORY_SEPARATOR . 'assets' . DIRECTORY_SEPARATOR . 'format-file.txt');
  168. }
  169. public function testStartsWith()
  170. {
  171. expect('A completely not funny string')->startsWith('A completely');
  172. expect('A completely not funny string')->notStartsWith('string');
  173. }
  174. public function testEqualsXmlFile()
  175. {
  176. expect_file(__DIR__ . DIRECTORY_SEPARATOR . 'assets' . DIRECTORY_SEPARATOR . 'xml-test-file.xml')
  177. ->equalsXmlFile(__DIR__ . DIRECTORY_SEPARATOR . 'assets' . DIRECTORY_SEPARATOR . 'xml-test-file.xml');
  178. expect('<foo><bar>Baz</bar><bar>Baz</bar></foo>')
  179. ->equalsXmlFile(__DIR__ . DIRECTORY_SEPARATOR . 'assets' . DIRECTORY_SEPARATOR . 'xml-test-file.xml');
  180. }
  181. public function testEqualsXmlString()
  182. {
  183. expect('<foo><bar>Baz</bar><bar>Baz</bar></foo>')
  184. ->equalsXmlString('<foo><bar>Baz</bar><bar>Baz</bar></foo>');
  185. }
  186. }
  187. class FakeClassForTesting
  188. {
  189. static $staticProperty;
  190. }