File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / curl / tests / curl_setopt_error.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:47:53 2012 UTC (12 years, 5 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--TEST--
curl_setopt() basic parameter test
--CREDITS--
Paul Sohier
#phptestfest utrecht
--SKIPIF--
<?php if (!extension_loaded("curl")) print "skip"; ?>
--FILE--
<?php
echo "*** curl_setopt() call with incorrect parameters\n";
$ch = curl_init();
curl_setopt();
curl_setopt(false);

curl_setopt($ch);
curl_setopt($ch, false);
curl_setopt($ch, -1);
curl_setopt($ch, '');
curl_setopt($ch, 1, false);

curl_setopt(false, false, false);
curl_setopt($ch, '', false);
curl_setopt($ch, 1, '');
curl_setopt($ch, -1, 0);
?>
--EXPECTF--
*** curl_setopt() call with incorrect parameters

Warning: curl_setopt() expects exactly 3 parameters, 0 given in %s on line %d

Warning: curl_setopt() expects exactly 3 parameters, 1 given in %s on line %d

Warning: curl_setopt() expects exactly 3 parameters, 1 given in %s on line %d

Warning: curl_setopt() expects exactly 3 parameters, 2 given in %s on line %d

Warning: curl_setopt() expects exactly 3 parameters, 2 given in %s on line %d

Warning: curl_setopt() expects exactly 3 parameters, 2 given in %s on line %d

Warning: curl_setopt() expects parameter 1 to be resource, boolean given in %s on line %d

Warning: curl_setopt() expects parameter 2 to be long, %unicode_string_optional% given in %s on line %d

Warning: curl_setopt(): Invalid curl configuration option in %scurl_setopt_error.php on line %d

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>