1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
--TEST--
FTP with bogus resource
--CREDITS--
Michael Paul da Rosa <michael [at] michaelpaul [dot] com [dot] br>
PHP TestFest Dublin 2017
--EXTENSIONS--
ftp
pcntl
--FILE--
<?php
$ftp = tmpfile();
try {
var_dump(ftp_login($ftp, 'user', 'pass'));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_pwd($ftp));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_cdup($ftp));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_chdir($ftp, '~'));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_exec($ftp, 'x'));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_raw($ftp, 'x'));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_mkdir($ftp, '/'));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_rmdir($ftp, '/'));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_chmod($ftp, 7777, '/'));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_alloc($ftp, 7777));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_nlist($ftp, '/'));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_rawlist($ftp, '~'));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_mlsd($ftp, '~'));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_systype($ftp));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_fget($ftp, $ftp, 'remote', 7777));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_nb_fget($ftp, $ftp, 'remote', 7777));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_pasv($ftp, false));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_get($ftp, 'local', 'remote', 7777));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_nb_get($ftp, 'local', 'remote', 7777));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_nb_continue($ftp));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_fput($ftp, 'remote', $ftp, 9999));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_nb_fput($ftp, 'remote', $ftp, 9999));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_put($ftp, 'remote', 'local', 9999));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_append($ftp, 'remote', 'local', 9999));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_nb_put($ftp, 'remote', 'local', 9999));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_size($ftp, '~'));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_mdtm($ftp, '~'));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_rename($ftp, 'old', 'new'));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_delete($ftp, 'gone'));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_site($ftp, 'localhost'));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_close($ftp));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_set_option($ftp, 1, 2));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
try {
var_dump(ftp_get_option($ftp, 1));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
fclose($ftp);
?>
--EXPECT--
ftp_login(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_pwd(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_cdup(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_chdir(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_exec(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_raw(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_mkdir(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_rmdir(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_chmod(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_alloc(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_nlist(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_rawlist(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_mlsd(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_systype(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_fget(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_nb_fget(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_pasv(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_get(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_nb_get(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_nb_continue(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_fput(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_nb_fput(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_put(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_append(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_nb_put(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_size(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_mdtm(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_rename(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_delete(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_site(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_close(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_set_option(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
ftp_get_option(): Argument #1 ($ftp) must be of type FTP\Connection, resource given
|