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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
|
--TEST--
install command, complex test
--SKIPIF--
<?php
if (!getenv('PHP_PEAR_RUNTESTS')) {
echo 'skip';
}
if (strolower(substr(php_uname('s'), 0, 3)) == 'win') {
echo 'skip';
}
?>
--FILE--
<?php
require_once dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'setup.php.inc';
$ch = new PEAR_ChannelFile;
$ch->setName('smork');
$ch->setSummary('smork');
$ch->setBaseURL('REST1.0', 'http://smork/rest/');
$reg = &$config->getRegistry();
$phpunit->assertTrue($reg->addChannel($ch), 'smork setup');
$chan = $reg->getChannel('pear.php.net');
$chan->setBaseURL('REST1.0', 'http://pear.php.net/rest/');
$reg->updateChannel($chan);
$packageDir = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'packages' . DIRECTORY_SEPARATOR;
$pathtopackagexml = $packageDir . 'package2.xml';
$pathtobarxml = $packageDir . 'Bar-1.5.2.tgz';
$pathtofoobarxml = $packageDir . 'Foobar-1.5.0a1.tgz';
$GLOBALS['pearweb']->addHtmlConfig('http://www.example.com/Bar-1.5.2.tgz', $pathtobarxml);
$GLOBALS['pearweb']->addHtmlConfig('http://www.example.com/Foobar-1.5.0a1.tgz', $pathtofoobarxml);
$pearweb->addRESTConfig("http://pear.php.net/rest/r/bar/allreleases.xml",
'<?xml version="1.0"?>
<a xmlns="http://pear.php.net/dtd/rest.allreleases"
xsi:schemaLocation="http://pear.php.net/dtd/rest.allreleases
http://pear.php.net/dtd/rest.allreleases.xsd">
<p>Bar</p>
<c>pear.php.net</c>
<r><v>1.5.2</v><s>stable</s></r>
</a>', 'text/xml');
$pearweb->addRESTConfig("http://pear.php.net/rest/r/bar/deps.1.5.2.txt",
'a:1:{s:8:"required";a:3:{s:3:"php";a:2:{s:3:"min";s:5:"4.3.6";s:3:"max";s:5:"6.0.0";}s:13:"pearinstaller";a:1:{s:3:"min";s:7:"1.4.0a1";}s:7:"package";a:2:{s:4:"name";s:6:"Foobar";s:7:"channel";s:5:"smork";}}}',
'text/plain');
$pearweb->addRESTConfig("http://pear.php.net/rest/r/bar/1.5.2.xml",
'<?xml version="1.0"?>
<r xmlns="http://pear.php.net/dtd/rest.release"
xsi:schemaLocation="http://pear.php.net/dtd/rest.release
http://pear.php.net/dtd/rest.release.xsd">
<p xlink:href="/rest/p/bar">Bar</p>
<c>pear.php.net</c>
<v>1.5.2</v>
<st>stable</st>
<l>PHP License</l>
<m>cellog</m>
<s>PEAR Base System</s>
<d>The PEAR package contains:
* the PEAR installer, for creating, distributing
and installing packages
* the alpha-quality PEAR_Exception PHP5 error handling mechanism
* the beta-quality PEAR_ErrorStack advanced error handling mechanism
* the PEAR_Error error handling mechanism
* the OS_Guess class for retrieving info about the OS
where PHP is running on
* the System class for quick handling of common operations
with files and directories
* the PEAR base class</d>
<da>2005-04-17 18:40:51</da>
<n>Release notes</n>
<f>252733</f>
<g>http://www.example.com/Bar-1.5.2</g>
<x xlink:href="package.1.5.2.xml"/>
</r>', 'text/xml');
$pearweb->addRESTConfig("http://smork/rest/r/foobar/allreleases.xml",
'<?xml version="1.0"?>
<a xmlns="http://pear.php.net/dtd/rest.allreleases"
xsi:schemaLocation="http://pear.php.net/dtd/rest.allreleases
http://pear.php.net/dtd/rest.allreleases.xsd">
<p>Foobar</p>
<c>smork</c>
<r><v>1.5.0a1</v><s>stable</s></r>
</a>', 'text/xml');
$pearweb->addRESTConfig("http://smork/rest/r/foobar/deps.1.5.0a1.txt",
'a:1:{s:8:"required";a:2:{s:3:"php";a:2:{s:3:"min";s:5:"4.3.6";s:3:"max";s:5:"6.0.0";}s:13:"pearinstaller";a:1:{s:3:"min";s:7:"1.4.0a1";}}}',
'text/plain');
$pearweb->addRESTConfig("http://smork/rest/r/foobar/1.5.0a1.xml",
'<?xml version="1.0"?>
<r xmlns="http://pear.php.net/dtd/rest.release"
xsi:schemaLocation="http://pear.php.net/dtd/rest.release
http://pear.php.net/dtd/rest.release.xsd">
<p xlink:href="/rest/p/foobar">Foobar</p>
<c>smork</c>
<v>1.5.0a1</v>
<st>alpha</st>
<l>PHP License</l>
<m>cellog</m>
<s>PEAR Base System</s>
<d>The PEAR package contains:
* the PEAR installer, for creating, distributing
and installing packages
* the alpha-quality PEAR_Exception PHP5 error handling mechanism
* the beta-quality PEAR_ErrorStack advanced error handling mechanism
* the PEAR_Error error handling mechanism
* the OS_Guess class for retrieving info about the OS
where PHP is running on
* the System class for quick handling of common operations
with files and directories
* the PEAR base class</d>
<da>2005-04-17 18:40:51</da>
<n>Release notes</n>
<f>252733</f>
<g>http://www.example.com/Foobar-1.5.0a1</g>
<x xlink:href="package.1.5.0a1.xml"/>
</r>',
'text/xml');
$pearweb->addRESTConfig("http://pear.php.net/rest/p/bar/info.xml",
'<?xml version="1.0" encoding="UTF-8" ?>
<p xmlns="http://pear.php.net/dtd/rest.package" xsi:schemaLocation="http://pear.php.net/dtd/rest.package http://pear.php.net/dtd/rest.package.xsd">
<n>bar</n>
<c>pear.php.net</c>
<ca xlink:href="/rest/c/PEAR">PEAR</ca>
<l>PHP License 3.0</l>
<s>PEAR_PackageFileManager takes an existing package.xml file and updates it with a new filelist and changelog</s>
<d>This package revolutionizes the maintenance of PEAR packages. With a few parameters,
the entire package.xml is automatically updated with a listing of all files in a package.
Features include
- manages the new package.xml 2.0 format in PEAR 1.4.0
- can detect PHP and extension dependencies using PHP_CompatInfo
- reads in an existing package.xml file, and only changes the release/changelog
- a plugin system for retrieving files in a directory. Currently two plugins
exist, one for standard recursive directory content listing, and one that
reads the CVS/Entries files and generates a file listing based on the contents
of a checked out CVS repository
- incredibly flexible options for assigning install roles to files/directories
- ability to ignore any file based on a * ? wildcard-enabled string(s)
- ability to include only files that match a * ? wildcard-enabled string(s)
- ability to manage dependencies
- can output the package.xml in any directory, and read in the package.xml
file from any directory.
- can specify a different name for the package.xml file
PEAR_PackageFileManager is fully unit tested.
The new PEAR_PackageFileManager2 class is not.</d>
<r xlink:href="/rest/r/pear_packagefilemanager"/>
</p>',
'text/xml');
$pearweb->addRESTConfig("http://pear.php.net/rest/p/foobar/info.xml",
'<?xml version="1.0" encoding="UTF-8" ?>
<p xmlns="http://pear.php.net/dtd/rest.package" xsi:schemaLocation="http://pear.php.net/dtd/rest.package http://pear.php.net/dtd/rest.package.xsd">
<n>foobar</n>
<c>pear.php.net</c>
<ca xlink:href="/rest/c/PEAR">PEAR</ca>
<l>PHP License 3.0</l>
<s>PEAR_PackageFileManager takes an existing package.xml file and updates it with a new filelist and changelog</s>
<d>This package revolutionizes the maintenance of PEAR packages. With a few parameters,
the entire package.xml is automatically updated with a listing of all files in a package.
Features include
- manages the new package.xml 2.0 format in PEAR 1.4.0
- can detect PHP and extension dependencies using PHP_CompatInfo
- reads in an existing package.xml file, and only changes the release/changelog
- a plugin system for retrieving files in a directory. Currently two plugins
exist, one for standard recursive directory content listing, and one that
reads the CVS/Entries files and generates a file listing based on the contents
of a checked out CVS repository
- incredibly flexible options for assigning install roles to files/directories
- ability to ignore any file based on a * ? wildcard-enabled string(s)
- ability to include only files that match a * ? wildcard-enabled string(s)
- ability to manage dependencies
- can output the package.xml in any directory, and read in the package.xml
file from any directory.
- can specify a different name for the package.xml file
PEAR_PackageFileManager is fully unit tested.
The new PEAR_PackageFileManager2 class is not.</d>
<r xlink:href="/rest/r/pear_packagefilemanager"/>
</p>',
'text/xml');
$pearweb->addRESTConfig("http://smork/rest/p/foobar/info.xml",
'<?xml version="1.0" encoding="UTF-8" ?>
<p xmlns="http://pear.php.net/dtd/rest.package" xsi:schemaLocation="http://pear.php.net/dtd/rest.package http://pear.php.net/dtd/rest.package.xsd">
<n>foobar</n>
<c>smork</c>
<ca xlink:href="/rest/c/PEAR">PEAR</ca>
<l>PHP License 3.0</l>
<s>PEAR_PackageFileManager takes an existing package.xml file and updates it with a new filelist and changelog</s>
<d>This package revolutionizes the maintenance of PEAR packages. With a few parameters,
the entire package.xml is automatically updated with a listing of all files in a package.
Features include
- manages the new package.xml 2.0 format in PEAR 1.4.0
- can detect PHP and extension dependencies using PHP_CompatInfo
- reads in an existing package.xml file, and only changes the release/changelog
- a plugin system for retrieving files in a directory. Currently two plugins
exist, one for standard recursive directory content listing, and one that
reads the CVS/Entries files and generates a file listing based on the contents
of a checked out CVS repository
- incredibly flexible options for assigning install roles to files/directories
- ability to ignore any file based on a * ? wildcard-enabled string(s)
- ability to include only files that match a * ? wildcard-enabled string(s)
- ability to manage dependencies
- can output the package.xml in any directory, and read in the package.xml
file from any directory.
- can specify a different name for the package.xml file
PEAR_PackageFileManager is fully unit tested.
The new PEAR_PackageFileManager2 class is not.</d>
<r xlink:href="/rest/r/pear_packagefilemanager"/>
</p>',
'text/xml');
$_test_dep->setPHPVersion('4.3.11');
$_test_dep->setPEARVersion('1.4.0a1');
$config->set('preferred_state', 'alpha');
$res = $command->run('install', array(), array($pathtopackagexml));
$phpunit->assertNoErrors('after install');
$phpunit->assertTrue($res, 'result');
$dummy = null;
$dl = &$command->getDownloader($dummy, array());
$tmpdir = $temp_path . DIRECTORY_SEPARATOR . 'php' . DIRECTORY_SEPARATOR;
// Don't forget umask ! permission of new file is 0666
$umask = decoct(0666 & ( 0777 - umask()));
echoFakelog($fakelog);
$phpunit->assertEquals(array (
array (
0 => 'http://pear.php.net/rest/r/bar/allreleases.xml',
1 => '200',
),
array (
0 => 'http://pear.php.net/rest/p/bar/info.xml',
1 => '200',
),
array (
0 => 'http://pear.php.net/rest/r/bar/1.5.2.xml',
1 => '200',
),
array (
0 => 'http://pear.php.net/rest/r/bar/deps.1.5.2.txt',
1 => '200',
),
array (
0 => 'http://smork/rest/r/foobar/allreleases.xml',
1 => '200',
),
array (
0 => 'http://smork/rest/p/foobar/info.xml',
1 => '200',
),
array (
0 => 'http://smork/rest/r/foobar/1.5.0a1.xml',
1 => '200',
),
array (
0 => 'http://smork/rest/r/foobar/deps.1.5.0a1.txt',
1 => '200',
),
), $pearweb->getRESTCalls(), 'rest');
echo 'tests done';
?>
--CLEAN--
<?php
require_once dirname(dirname(__FILE__)) . '/teardown.php.inc';
?>
--EXPECTF--
3;Downloading "http://www.example.com/Bar-1.5.2.tgz"
1;downloading Bar-1.5.2.tgz ...
1;Starting to download Bar-1.5.2.tgz (2,213 bytes)
1;.
1;...done: 2,213 bytes
3;Downloading "http://www.example.com/Foobar-1.5.0a1.tgz"
1;downloading Foobar-1.5.0a1.tgz ...
1;Starting to download Foobar-1.5.0a1.tgz (2,208 bytes)
1;...done: 2,208 bytes
3;+ cp %s/Foobar-1.5.0a1/foo12.php %s/php/.tmpfoo12.php
2;md5sum ok: %s/php/foo12.php
3;adding to transaction: chmod 6%d4 %s/php/.tmpfoo12.php
3;adding to transaction: rename %s/php/.tmpfoo12.php %s/php/foo12.php
3;adding to transaction: installed_as foo12.php %s/php/foo12.php %s/php /
2;about to commit 3 file operations for Foobar
3;+ chmod 6%d4 %s/php/.tmpfoo12.php
3;+ mv %s/php/.tmpfoo12.php %s/php/foo12.php
2;successfully committed 3 file operations
array (
'info' =>
array (
'data' => 'install ok: channel://smork/Foobar-1.5.0a1',
),
'cmd' => 'install',
)
3;+ cp %s/Bar-1.5.2/foo1.php %s/php/.tmpfoo1.php
2;md5sum ok: %s/php/foo1.php
3;adding to transaction: chmod 6%d4 %s/php/.tmpfoo1.php
3;adding to transaction: rename %s/php/.tmpfoo1.php %s/php/foo1.php
3;adding to transaction: installed_as foo1.php %s/php/foo1.php %s/php /
2;about to commit 3 file operations for Bar
3;+ chmod 6%d4 %s/php/.tmpfoo1.php
3;+ mv %s/php/.tmpfoo1.php %s/php/foo1.php
2;successfully committed 3 file operations
array (
'info' =>
array (
'data' => 'install ok: channel://pear.php.net/Bar-1.5.2',
),
'cmd' => 'install',
)
3;+ cp %s/PEAR_Command_Install/install/packages/foo.php %s/php/.tmpfoo.php
3;adding to transaction: chmod 6%d4 %s/php/.tmpfoo.php
3;adding to transaction: rename %s/php/.tmpfoo.php %s/php/foo.php
3;adding to transaction: installed_as foo.php %s/php/foo.php %s/php /
2;about to commit 3 file operations for PEAR1
3;+ chmod 6%d4 %s/php/.tmpfoo.php
3;+ mv %s/php/.tmpfoo.php %s/php/foo.php
2;successfully committed 3 file operations
array (
'info' =>
array (
'data' => 'install ok: channel://pear.php.net/PEAR1-1.5.0a1',
),
'cmd' => 'install',
)
tests done
|