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
|
--TEST--
PEAR_PackageFile_Generator_v1->toTgz() failure
--SKIPIF--
<?php
if (!getenv('PHP_PEAR_RUNTESTS')) {
echo 'skip';
}
?>
--FILE--
<?php
$save____dir = getcwd();
require_once dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'setup.php.inc';
chdir($temp_path);
require_once 'PEAR/Packager.php';
$pf = new PEAR_PackageFile_v1;
$pf->setConfig($config);
$generator = &$pf->getDefaultGenerator();
$packager = new PEAR_Packager;
$e = $generator->toTgz($packager, true, $temp_path);
$phpunit->assertErrors(array(
array('package' => 'PEAR_PackageFile_v1', 'message' => 'Missing Package Name'),
array('package' => 'PEAR_PackageFile_v1', 'message' => 'No summary found'),
array('package' => 'PEAR_PackageFile_v1', 'message' => 'Missing description'),
array('package' => 'PEAR_PackageFile_v1', 'message' => 'Missing license'),
array('package' => 'PEAR_PackageFile_v1', 'message' => 'No release version found'),
array('package' => 'PEAR_PackageFile_v1', 'message' => 'No release state found'),
array('package' => 'PEAR_PackageFile_v1', 'message' => 'No release date found'),
array('package' => 'PEAR_PackageFile_v1', 'message' => 'No maintainers found, at least one must be defined'),
array('package' => 'PEAR_PackageFile_v1', 'message' => 'No files in <filelist> section of package.xml'),
array('package' => 'PEAR_PackageFile_v1', 'message' => 'No release notes found'),
array('package' => 'PEAR_Error', 'message' => 'PEAR_Packagefile_v1::toTgz: invalid package file'),
), 'bad');
$phpunit->assertIsa('PEAR_Error', $e, 'error');
$pf = &$parser->parse('<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE package SYSTEM "http://pear.php.net/dtd/package-1.0">
<package version="1.0" packagerversion="' . $generator->getPackagerVersion() . '">
<name>foo</name>
<summary>foo</summary>
<description>foo
hi there
</description>
<maintainers>
<maintainer>
<user>single</user>
<name>person</name>
<email>joe@example.com</email>
<role>lead</role>
</maintainer>
</maintainers>
<release>
<version>1.2.0a1</version>
<date>2004-12-25</date>
<license>PHP License</license>
<state>alpha</state>
<notes>here are the
multi-line
release notes
</notes>
<filelist>
<file role="php" name="foo.php"/>
</filelist>
</release>
</package>
', 'boo.xml');
$generator = &$pf->getDefaultGenerator();
touch ($temp_path . DIRECTORY_SEPARATOR . 'floub');
$e = $generator->toTgz($packager, true, $temp_path . DIRECTORY_SEPARATOR . 'floub');
$phpunit->assertErrors(array(
array('package' => 'PEAR_Error', 'message' => 'PEAR_Packagefile_v1::toTgz: "' .
$temp_path . DIRECTORY_SEPARATOR . 'floub" could not be created'),
), 'bad');
$phpunit->assertIsa('PEAR_Error', $e, 'error');
unlink($temp_path . DIRECTORY_SEPARATOR . 'floub');
mkdir($temp_path . DIRECTORY_SEPARATOR . 'floub');
mkdir($temp_path . DIRECTORY_SEPARATOR . 'floub' . DIRECTORY_SEPARATOR . 'package.xml');
$e = $generator->toTgz($packager, true, $temp_path . DIRECTORY_SEPARATOR . 'floub');
$phpunit->assertErrors(array(
array('package' => 'PEAR_Error', 'message' => 'PEAR_Packagefile_v1::toTgz: unable to save package.xml as "' .
$temp_path . DIRECTORY_SEPARATOR . 'floub' . DIRECTORY_SEPARATOR . 'package.xml"'),
), 'bad');
$phpunit->assertIsa('PEAR_Error', $e, 'error');
rmdir($temp_path . DIRECTORY_SEPARATOR . 'floub' . DIRECTORY_SEPARATOR . 'package.xml');
rmdir($temp_path . DIRECTORY_SEPARATOR . 'floub');
mkdir($temp_path . DIRECTORY_SEPARATOR . 'foo-1.2.0a1.tgz');
touch($temp_path . DIRECTORY_SEPARATOR . 'foo.php');
$e = $generator->toTgz($packager, true, $temp_path . DIRECTORY_SEPARATOR . 'floub');
$phpunit->assertErrors(array(
array('package' => 'PEAR_PackageFile_v1', 'message' => 'Channel validator error: field "date" - Release Date "2004-12-25" is not today'),
array('package' => 'PEAR_Error', 'message' => 'PEAR_Packagefile_v1::toTgz: cannot create tgz file "' .
$temp_path . DIRECTORY_SEPARATOR . 'foo-1.2.0a1.tgz"'),
), 'bad');
$phpunit->assertIsa('PEAR_Error', $e, 'error');
chdir($save____dir);
echo 'tests done';
?>
--CLEAN--
<?php
require_once dirname(dirname(__FILE__)) . '/teardown.php.inc';
?>
--EXPECT--
tests done
|