]> granicus.if.org Git - php/commitdiff
- Tests from TestFest
authorJosie Messa <jmessa@php.net>
Mon, 14 Jul 2008 15:27:19 +0000 (15:27 +0000)
committerJosie Messa <jmessa@php.net>
Mon, 14 Jul 2008 15:27:19 +0000 (15:27 +0000)
- Have slightly modified similar_text_error.phpt from original file

ext/standard/tests/strings/similar_text_basic.phpt [new file with mode: 0644]
ext/standard/tests/strings/similar_text_error.phpt [new file with mode: 0644]

diff --git a/ext/standard/tests/strings/similar_text_basic.phpt b/ext/standard/tests/strings/similar_text_basic.phpt
new file mode 100644 (file)
index 0000000..0eaf5c1
--- /dev/null
@@ -0,0 +1,39 @@
+--TEST--
+similar_text(), basic tests
+--CREDITS--
+Mats Lindh <mats at lindh.no>
+#Testfest php.no
+--INIT--
+precision=14
+--FILE--
+<?php
+/* Prototype  : proto int similar_text(string str1, string str2 [, float percent])
+* Description: Calculates the similarity between two strings
+* Source code: ext/standard/string.c
+*/
+var_dump(similar_text("abcdefgh", "efg"));
+var_dump(similar_text("abcdefgh", "mno"));
+var_dump(similar_text("abcdefghcc", "c"));
+var_dump(similar_text("abcdefghabcdef", "zzzzabcdefggg"));
+
+$percent = 0;
+similar_text("abcdefgh", "efg", $percent);
+var_dump($percent);
+similar_text("abcdefgh", "mno", $percent);
+var_dump($percent);
+similar_text("abcdefghcc", "c", $percent);
+var_dump($percent);
+similar_text("abcdefghabcdef", "zzzzabcdefggg", $percent);
+var_dump($percent);
+?>
+===DONE===
+--EXPECTF--
+int(3)
+int(0)
+int(1)
+int(7)
+float(54.545454545455)
+float(0)
+float(18.181818181818)
+float(51.851851851852)
+===DONE===
diff --git a/ext/standard/tests/strings/similar_text_error.phpt b/ext/standard/tests/strings/similar_text_error.phpt
new file mode 100644 (file)
index 0000000..a5e9501
--- /dev/null
@@ -0,0 +1,29 @@
+--TEST--
+similar_text(), error tests for missing parameters
+--CREDITS--
+Mats Lindh <mats at lindh.no>
+#Testfest php.no
+--FILE--
+<?php
+/* Prototype  : proto int similar_text(string str1, string str2 [, float percent])
+* Description: Calculates the similarity between two strings
+* Source code: ext/standard/string.c
+*/
+
+$extra_arg = 10;
+echo "\n-- Testing similar_text() function with more than expected no. of arguments --\n";
+similar_text("abc", "def", $percent, $extra_arg);
+
+echo "\n-- Testing similar_text() function with less than expected no. of arguments --\n";
+similar_text("abc");
+?>
+===DONE===
+--EXPECTF--
+-- Testing similar_text() function with more than expected no. of arguments --
+
+Warning: similar_text() expects at most 3 parameters, 4 given in %s on line %d
+
+-- Testing similar_text() function with less than expected no. of arguments --
+
+Warning: similar_text() expects at least 2 parameters, 1 given in %s on line %d
+===DONE===