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
|
--TEST--
PEAR_PackageFile_Parser_v2->addPackageDepWithChannel
--SKIPIF--
<?php
if (!getenv('PHP_PEAR_RUNTESTS')) {
echo 'skip';
}
?>
--FILE--
<?php
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'setup.php.inc';
$pathtopackagexml = dirname(__FILE__) . DIRECTORY_SEPARATOR .
'Parser'. DIRECTORY_SEPARATOR .
'test_basicparse'. DIRECTORY_SEPARATOR . 'package2.xml';
$pf = $parser->parse(implode('', file($pathtopackagexml)), $pathtopackagexml);
$pf->flattenFilelist();
$phpunit->assertNoErrors('valid xml parse');
$phpunit->assertIsa('PEAR_PackageFile_v2', $pf, 'return of valid parse');
$pfa = &$pf->getRW();
$pf = &$pfa;
$phpunit->assertEquals(array (
'required' =>
array (
'php' =>
array (
'min' => '4.3.6',
'max' => '6.0.0',
),
'pearinstaller' =>
array (
'min' => '1.4.0a1',
),
),
), $pf->getDeps(true), 'basic');
$pf->addPackageDepWithChannel('required', 'first', 'test');
$phpunit->assertEquals(array (
'required' =>
array (
'php' =>
array (
'min' => '4.3.6',
'max' => '6.0.0',
),
'pearinstaller' =>
array (
'min' => '1.4.0a1',
),
'package' =>
array (
'name' => 'first',
'channel' => 'test',
),
),
), $pf->getDeps(true), 'add required');
$pf->addPackageDepWithChannel('optional', 'second', 'test');
$phpunit->assertEquals(array (
'required' =>
array (
'php' =>
array (
'min' => '4.3.6',
'max' => '6.0.0',
),
'pearinstaller' =>
array (
'min' => '1.4.0a1',
),
'package' =>
array (
'name' => 'first',
'channel' => 'test',
),
),
'optional' =>
array (
'package' =>
array (
'name' => 'second',
'channel' => 'test',
),
),
), $pf->getDeps(true), 'add optional');
//$pf = new PEAR_PackageFile_v2;
$pf->addPackageDepWithChannel('required', 'gronk', 'foo', '1.0', '2.0', '1.3', array('1.5', '2.4'));
$phpunit->assertEquals(array (
'required' =>
array (
'php' =>
array (
'min' => '4.3.6',
'max' => '6.0.0',
),
'pearinstaller' =>
array (
'min' => '1.4.0a1',
),
'package' =>
array (
array(
'name' => 'first',
'channel' => 'test',
),
array(
'name' => 'gronk',
'channel' => 'foo',
'min' => '1.0',
'max' => '2.0',
'recommended' => '1.3',
'exclude' =>
array(
0 => '1.5',
1 => '2.4',
),
),
),
),
'optional' =>
array (
'package' =>
array (
'name' => 'second',
'channel' => 'test',
),
),
), $pf->getDeps(true), 'add required with the works');
$pf->addPackageDepWithChannel('optional', 'gronko', 'fooo', '1.0', '2.0', '1.3', array('2.4'), 'bloba');
$phpunit->assertEquals(array (
'required' =>
array (
'php' =>
array (
'min' => '4.3.6',
'max' => '6.0.0',
),
'pearinstaller' =>
array (
'min' => '1.4.0a1',
),
'package' =>
array (
array(
'name' => 'first',
'channel' => 'test',
),
array(
'name' => 'gronk',
'channel' => 'foo',
'min' => '1.0',
'max' => '2.0',
'recommended' => '1.3',
'exclude' =>
array(
0 => '1.5',
1 => '2.4',
),
),
),
),
'optional' =>
array (
'package' =>
array(
array (
'name' => 'second',
'channel' => 'test',
),
array(
'name' => 'gronko',
'channel' => 'fooo',
'min' => '1.0',
'max' => '2.0',
'recommended' => '1.3',
'exclude' => '2.4',
'providesextension' => 'bloba',
),
),
),
), $pf->getDeps(true), 'add optional with the works');
$result = $pf->validate(PEAR_VALIDATE_NORMAL);
$phpunit->assertEquals(array(), $fakelog->getLog(), 'normal validate empty log');
$phpunit->assertNoErrors('after validation');
$result = $pf->validate(PEAR_VALIDATE_INSTALLING);
$phpunit->assertEquals(array(), $fakelog->getLog(), 'installing validate empty log');
$phpunit->assertNoErrors('after validation');
$result = $pf->validate(PEAR_VALIDATE_DOWNLOADING);
$phpunit->assertEquals(array(), $fakelog->getLog(), 'downloading validate empty log');
$phpunit->assertNoErrors('after validation');
$result = $pf->validate(PEAR_VALIDATE_PACKAGING);
$phpunit->assertErrors(array(
array('package' => 'PEAR_PackageFile_v2', 'message' => 'Channel validator warning: field "date" - Release Date "2004-10-10" is not today')
), 'after full packaging validation');
$phpunit->assertEquals(array (
0 =>
array (
0 => 1,
1 => 'Analyzing test/test.php',
),
1 =>
array (
0 => 1,
1 => 'Analyzing test/test2.php',
),
2 =>
array (
0 => 1,
1 => 'Analyzing test/test3.php',
),
), $fakelog->getLog(), 'packaging validate full log');
echo 'tests done';
?>
--CLEAN--
<?php
require_once dirname(__FILE__) . '/teardown.php.inc';
?>
--EXPECT--
tests done
|