]> Raphaël G. Git Repositories - bbcode/commitdiff
Add basic tests
authorRaphaël Gertz <git@rapsys.eu>
Sun, 10 Feb 2019 04:46:39 +0000 (05:46 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Sun, 10 Feb 2019 04:46:39 +0000 (05:46 +0100)
Add README for tests

tests/001.phpt
tests/002.phpt
tests/003.phpt
tests/004.phpt [new file with mode: 0644]
tests/005.phpt [new file with mode: 0644]
tests/006.phpt [new file with mode: 0644]
tests/README [new file with mode: 0644]

index 1abb88f075143ec42abc20188a7016aa6595e372..15d10631da21da832d7f01898eba0aaf40cade4c 100644 (file)
@@ -4,18 +4,18 @@ Check for bbcode presence
 <?php if (!extension_loaded("bbcode")) print "skip"; ?>
 --FILE--
 <?php 
 <?php if (!extension_loaded("bbcode")) print "skip"; ?>
 --FILE--
 <?php 
-echo "bbcode extension is available";
-/*
-       you can add regression tests for your extension here
-
-  the output of your test code has to be equal to the
-  text in the --EXPECT-- section below for the tests
-  to pass, differences between the output and the
-  expected text are interpreted as failure
-
-       see php7/README.TESTING for further information on
-  writing regression tests
-*/
-?>
+if (class_exists('BBCode')) {
+       echo 'bbcode class is available'."\n";
+}
+if ($methods = get_class_methods('BBCode')) {
+       echo 'bbcode class methods are available'."\n";
+}
+foreach($methods as $method) {
+       echo 'bbcode class method '.$method.' is available'."\n";
+}
 --EXPECT--
 --EXPECT--
-bbcode extension is available
+bbcode class is available
+bbcode class methods are available
+bbcode class method __construct is available
+bbcode class method __destruct is available
+bbcode class method parse is available
index b9d101a6d84d299581a2f417a39e232eb14a9c85..f6414a31413694d4fb232bdeadf8df7003bb8fe6 100644 (file)
@@ -1,63 +1,20 @@
 --TEST--
 --TEST--
-Check for bbcode functions
+Check for missing tag in child
 --SKIPIF--
 <?php if (!extension_loaded("bbcode")) print "skip"; ?>
 --FILE--
 <?php
 --SKIPIF--
 <?php if (!extension_loaded("bbcode")) print "skip"; ?>
 --FILE--
 <?php
-$obj = new bbcode(
-       [
-               'img' => [
-               ],
-               '' => [
-                       'type' => BBCODE::TYPE_ROOT,
-                       'child' => ['ul','url','img','b','i']
-               ],
-               'i' => [
-                       'type' => BBCODE::TYPE_MULTI
-                       //TODO: by default open tag = <KEY> and close tag = </KEY>
-               ],
-               'b' => [
-                       'type' => BBCODE::TYPE_MULTI
-               ],
-               'ul' => [
-                       'type' => BBCODE::TYPE_MULTI,
-                       'child' => ['li']
-               ],
-               'li' => [
-                       'type' => BBCODE::TYPE_MULTI,
-                       'parent' => ['ul'],
-                       'child' => ['url','img','b','i']
-               ],
-               'url' => [
-                       'type' => BBCODE::TYPE_MULTI,
-                       'parent' => ['','li','b','i'],
-                       'open' => '<a%s>',
-                       'close' => '</a>',
-                       'arg' => 'href'
-               ],
-       ],
-       [
-               ':)' => '<img src="smiley.gif" alt=":)" />',
-               ':(' => '<img src="sad.gif" alt=":(" />',
-               ':D' => '<img src="happy.gif" alt=":D" />',
-               ':p' => '<img src="tong.gif" alt=":p" />',
-               ':|' => '<img src="special.gif" alt=":|" />',
-               ':6:' => '<img src="six.gif" alt=":6:" />'
-       ],
-       BBCODE::REMOVE_EMPTY
-);
-echo $obj->parse('[ul][li][url=https://rapsys.eu]Rapsys[/url][/li][li][url=https://google.fr]Google[/url][/li][/ul]');
-/*
-       you can add regression tests for your extension here
-
-  the output of your test code has to be equal to the
-  text in the --EXPECT-- section below for the tests
-  to pass, differences between the output and the
-  expected text are interpreted as failure
-
-       see php7/README.TESTING for further information on
-  writing regression tests
-*/
-?>
+try {
+       $obj = new bbcode(
+               [
+                       '' => [
+                               'type' => BBCODE::TYPE_ROOT,
+                               'child' => ['missing']
+                       ]
+               ]
+       );
+} catch (Exception $e) {
+       echo $e->getMessage();
+}
 --EXPECT--
 --EXPECT--
-[ul][li][url=https://rapsys.eu]Rapsys[/url][/li][li][url=https://google.fr]Google[/url][/li][/ul]
+BBCode::__construct(): Child value missing for key [0]/child[1] is not present in tag keys
index 36c39318bd512a37c2abf27781947639b58dd66b..f9b036236ebde8a203c14f7d240d08ca5ef2475f 100644 (file)
@@ -1,51 +1,13 @@
 --TEST--
 --TEST--
-Check for bbcode clone
+Check for missing tag arg
 --SKIPIF--
 <?php if (!extension_loaded("bbcode")) print "skip"; ?>
 --FILE--
 <?php
 --SKIPIF--
 <?php if (!extension_loaded("bbcode")) print "skip"; ?>
 --FILE--
 <?php
-$obj = new bbcode(
-       [
-               '' => [
-                       'type' => BBCODE::TYPE_ROOT,
-                       'child' => ['ul','url','img','b','i']
-               ],
-               'i' => [
-                       'type' => BBCODE::TYPE_MULTI
-                       //TODO: by default open tag = <KEY> and close tag = </KEY>
-               ],
-               'b' => [
-                       'type' => BBCODE::TYPE_MULTI
-               ],
-               'ul' => [
-                       'type' => BBCODE::TYPE_MULTI,
-                       'child' => [ 'li' ]
-               ],
-               'li' => [
-                       'type' => BBCODE::TYPE_MULTI,
-                       'parent' => 'ul',
-                       'child' => ['url','img','b','i']
-               ],
-               'url' => [
-                       'type' => BBCODE::TYPE_MULTI,
-                       'parent' => [ '', 'li', 'b', 'i', null, 'toto', 0, 42 ],
-                       'open' => '<a href="{PARAM}">',
-                       'close' => '</a>',
-                       'default' => '{CONTENT}'
-               ]
-       ],
-       [
-               ':)' => '<img src="smiley.gif" alt=":)" />',
-               ':(' => '<img src="sad.gif" alt=":(" />',
-               ':D' => '<img src="happy.gif" alt=":D" />',
-               ':p' => '<img src="tong.gif" alt=":p" />',
-               ':|' => '<img src="special.gif" alt=":|" />',
-               ':6:' => '<img src="six.gif" alt=":6:" />',
-       ],
-       BBCODE::REMOVE_EMPTY
-);
-$cln = clone $obj;
-echo $cln->parse('[ul][li][url=https://rapsys.eu]Rapsys[/url][/li][li][url=https://google.fr]Google[/url][/li][/ul]');
-?>
+try {
+       $obj = new bbcode();
+} catch (Exception $e) {
+       echo $e->getMessage();
+}
 --EXPECT--
 --EXPECT--
-[ul][li][url=https://rapsys.eu]Rapsys[/url][/li][li][url=https://google.fr]Google[/url][/li][/ul]
+BBCode::__construct() expects at least 1 parameter, 0 given
diff --git a/tests/004.phpt b/tests/004.phpt
new file mode 100644 (file)
index 0000000..04cee5d
--- /dev/null
@@ -0,0 +1,13 @@
+--TEST--
+Check for empty tag arg
+--SKIPIF--
+<?php if (!extension_loaded("bbcode")) print "skip"; ?>
+--FILE--
+<?php
+try {
+       $obj = new bbcode([]);
+} catch (Exception $e) {
+       echo $e->getMessage();
+}
+--EXPECT--
+BBCode::__construct(): Tag array has 0 BBCODE::TYPE_ROOT entry instead of expected unique one
diff --git a/tests/005.phpt b/tests/005.phpt
new file mode 100644 (file)
index 0000000..2c694c2
--- /dev/null
@@ -0,0 +1,12 @@
+--TEST--
+Check for minimal call
+--SKIPIF--
+<?php if (!extension_loaded("bbcode")) print "skip"; ?>
+--FILE--
+<?php
+$obj = new bbcode(
+       [
+               '' => []
+       ]
+);
+--EXPECT--
diff --git a/tests/006.phpt b/tests/006.phpt
new file mode 100644 (file)
index 0000000..2853e3f
--- /dev/null
@@ -0,0 +1,16 @@
+--TEST--
+Check for object clone
+--SKIPIF--
+<?php if (!extension_loaded("bbcode")) print "skip"; ?>
+--FILE--
+<?php
+$obj = new bbcode(
+       [
+               '' => []
+       ]
+);
+$cln = clone $obj;
+var_dump($cln);
+--EXPECT--
+object(BBCode)#2 (0) {
+}
diff --git a/tests/README b/tests/README
new file mode 100644 (file)
index 0000000..7e7d38c
--- /dev/null
@@ -0,0 +1,20 @@
+--TEST--
+Success test
+--SKIPIF--
+<?php if (!extension_loaded("bbcode")) print "skip"; ?>
+--FILE--
+<?php 
+/*
+ * you can add regression tests for your extension here
+ * 
+ * the output of your test code has to be equal to the
+ * text in the --EXPECT-- section below for the tests
+ * to pass, differences between the output and the
+ * expected text are interpreted as failure
+ * 
+ * see php7/README.TESTING for further information on
+ * writing regression tests
+ */
+echo "Success";
+--EXPECT--
+Success