diff options
| author | Sean Finney <seanius@debian.org> | 2009-04-10 14:09:48 +0200 |
|---|---|---|
| committer | Sean Finney <seanius@debian.org> | 2009-04-10 14:09:48 +0200 |
| commit | cd0b49c72aee33b3e44a9c589fcd93b9e1c7a64f (patch) | |
| tree | 1315c623bb7d9dfa8d366fa9cd2c6834ceeb5da5 /ext/mcrypt/tests/mcrypt_decrypt_error.phpt | |
| parent | 9ea47aab740772adf0c69d8c94b208a464e599ea (diff) | |
| download | php-upstream/5.2.9.dfsg.1.tar.gz | |
Imported Upstream version 5.2.9.dfsg.1upstream/5.2.9.dfsg.1
Diffstat (limited to 'ext/mcrypt/tests/mcrypt_decrypt_error.phpt')
| -rw-r--r-- | ext/mcrypt/tests/mcrypt_decrypt_error.phpt | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/ext/mcrypt/tests/mcrypt_decrypt_error.phpt b/ext/mcrypt/tests/mcrypt_decrypt_error.phpt new file mode 100644 index 000000000..c231c2871 --- /dev/null +++ b/ext/mcrypt/tests/mcrypt_decrypt_error.phpt @@ -0,0 +1,51 @@ +--TEST-- +Test mcrypt_decrypt() function : error conditions +--SKIPIF-- +<?php +if (!extension_loaded("mcrypt")) { + print "skip - mcrypt extension not loaded"; +} +?> +--FILE-- +<?php +/* Prototype : string mcrypt_decrypt(string cipher, string key, string data, string mode, string iv) + * Description: OFB crypt/decrypt data using key key with cipher cipher starting with iv + * Source code: ext/mcrypt/mcrypt.c + * Alias to functions: + */ + +echo "*** Testing mcrypt_decrypt() : error conditions ***\n"; + + +//Test mcrypt_decrypt with one more than the expected number of arguments +echo "\n-- Testing mcrypt_decrypt() function with more than expected no. of arguments --\n"; +$cipher = 'string_val'; +$key = 'string_val'; +$data = 'string_val'; +$mode = 'string_val'; +$iv = 'string_val'; +$extra_arg = 10; +var_dump( mcrypt_decrypt($cipher, $key, $data, $mode, $iv, $extra_arg) ); + +// Testing mcrypt_decrypt with one less than the expected number of arguments +echo "\n-- Testing mcrypt_decrypt() function with less than expected no. of arguments --\n"; +$cipher = 'string_val'; +$key = 'string_val'; +$data = 'string_val'; +var_dump( mcrypt_decrypt($cipher, $key, $data) ); + +?> +===DONE=== +--EXPECTF-- +*** Testing mcrypt_decrypt() : error conditions *** + +-- Testing mcrypt_decrypt() function with more than expected no. of arguments -- + +Warning: Wrong parameter count for mcrypt_decrypt() in %s on line %d +NULL + +-- Testing mcrypt_decrypt() function with less than expected no. of arguments -- + +Warning: Wrong parameter count for mcrypt_decrypt() in %s on line %d +NULL +===DONE=== |
