* Jordi Boggiano * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Test\DependencyResolver; use Composer\DependencyResolver\GenericRule; use Composer\DependencyResolver\Rule; use Composer\DependencyResolver\RuleSet; use Composer\DependencyResolver\Pool; use Composer\Repository\ArrayRepository; use Composer\TestCase; class RuleSetTest extends TestCase { protected $pool; public function setUp() { $this->pool = new Pool; } public function testAdd() { $rules = array( RuleSet::TYPE_PACKAGE => array(), RuleSet::TYPE_JOB => array( new GenericRule(array(1), Rule::RULE_JOB_INSTALL, null), new GenericRule(array(2), Rule::RULE_JOB_INSTALL, null), ), RuleSet::TYPE_LEARNED => array( new GenericRule(array(), Rule::RULE_INTERNAL_ALLOW_UPDATE, null), ), ); $ruleSet = new RuleSet; $ruleSet->add($rules[RuleSet::TYPE_JOB][0], RuleSet::TYPE_JOB); $ruleSet->add($rules[RuleSet::TYPE_LEARNED][0], RuleSet::TYPE_LEARNED); $ruleSet->add($rules[RuleSet::TYPE_JOB][1], RuleSet::TYPE_JOB); $this->assertEquals($rules, $ruleSet->getRules()); } public function testAddIgnoresDuplicates() { $rules = array( RuleSet::TYPE_JOB => array( new GenericRule(array(), Rule::RULE_JOB_INSTALL, null), new GenericRule(array(), Rule::RULE_JOB_INSTALL, null), new GenericRule(array(), Rule::RULE_JOB_INSTALL, null), ), ); $ruleSet = new RuleSet; $ruleSet->add($rules[RuleSet::TYPE_JOB][0], RuleSet::TYPE_JOB); $ruleSet->add($rules[RuleSet::TYPE_JOB][1], RuleSet::TYPE_JOB); $ruleSet->add($rules[RuleSet::TYPE_JOB][2], RuleSet::TYPE_JOB); $this->assertCount(1, $ruleSet->getIteratorFor(array(RuleSet::TYPE_JOB))); } /** * @expectedException \OutOfBoundsException */ public function testAddWhenTypeIsNotRecognized() { $ruleSet = new RuleSet; $ruleSet->add(new GenericRule(array(), Rule::RULE_JOB_INSTALL, null), 7); } public function testCount() { $ruleSet = new RuleSet; $ruleSet->add(new GenericRule(array(1), Rule::RULE_JOB_INSTALL, null), RuleSet::TYPE_JOB); $ruleSet->add(new GenericRule(array(2), Rule::RULE_JOB_INSTALL, null), RuleSet::TYPE_JOB); $this->assertEquals(2, $ruleSet->count()); } public function testRuleById() { $ruleSet = new RuleSet; $rule = new GenericRule(array(), Rule::RULE_JOB_INSTALL, null); $ruleSet->add($rule, RuleSet::TYPE_JOB); $this->assertSame($rule, $ruleSet->ruleById[0]); } public function testGetIterator() { $ruleSet = new RuleSet; $rule1 = new GenericRule(array(1), Rule::RULE_JOB_INSTALL, null); $rule2 = new GenericRule(array(2), Rule::RULE_JOB_INSTALL, null); $ruleSet->add($rule1, RuleSet::TYPE_JOB); $ruleSet->add($rule2, RuleSet::TYPE_LEARNED); $iterator = $ruleSet->getIterator(); $this->assertSame($rule1, $iterator->current()); $iterator->next(); $this->assertSame($rule2, $iterator->current()); } public function testGetIteratorFor() { $ruleSet = new RuleSet; $rule1 = new GenericRule(array(1), Rule::RULE_JOB_INSTALL, null); $rule2 = new GenericRule(array(2), Rule::RULE_JOB_INSTALL, null); $ruleSet->add($rule1, RuleSet::TYPE_JOB); $ruleSet->add($rule2, RuleSet::TYPE_LEARNED); $iterator = $ruleSet->getIteratorFor(RuleSet::TYPE_LEARNED); $this->assertSame($rule2, $iterator->current()); } public function testGetIteratorWithout() { $ruleSet = new RuleSet; $rule1 = new GenericRule(array(1), Rule::RULE_JOB_INSTALL, null); $rule2 = new GenericRule(array(2), Rule::RULE_JOB_INSTALL, null); $ruleSet->add($rule1, RuleSet::TYPE_JOB); $ruleSet->add($rule2, RuleSet::TYPE_LEARNED); $iterator = $ruleSet->getIteratorWithout(RuleSet::TYPE_JOB); $this->assertSame($rule2, $iterator->current()); } public function testPrettyString() { $repo = new ArrayRepository; $repo->addPackage($p = $this->getPackage('foo', '2.1')); $this->pool->addRepository($repo); $ruleSet = new RuleSet; $literal = $p->getId(); $rule = new GenericRule(array($literal), Rule::RULE_JOB_INSTALL, null); $ruleSet->add($rule, RuleSet::TYPE_JOB); $this->assertContains('JOB : Install command rule (install foo 2.1)', $ruleSet->getPrettyString($this->pool)); } private function getRuleMock() { return $this->getMockBuilder('Composer\DependencyResolver\Rule') ->disableOriginalConstructor() ->getMock(); } }