<?php

/*
 * This file is part of Composer.
 *
 * (c) Nils Adermann <naderman@naderman.de>
 *     Jordi Boggiano <j.boggiano@seld.be>
 *
 * 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\Request;
use Composer\Repository\ArrayRepository;
use Composer\TestCase;

class RequestTest extends TestCase
{
    public function testRequestInstallAndRemove()
    {
        $repo = new ArrayRepository;
        $foo = $this->getPackage('foo', '1');
        $bar = $this->getPackage('bar', '1');
        $foobar = $this->getPackage('foobar', '1');

        $repo->addPackage($foo);
        $repo->addPackage($bar);
        $repo->addPackage($foobar);

        $request = new Request();
        $request->install('foo');
        $request->fix('bar');
        $request->remove('foobar');

        $this->assertEquals(
            array(
                array('cmd' => 'install', 'packageName' => 'foo', 'constraint' => null, 'fixed' => false),
                array('cmd' => 'install', 'packageName' => 'bar', 'constraint' => null, 'fixed' => true),
                array('cmd' => 'remove', 'packageName' => 'foobar', 'constraint' => null, 'fixed' => false),
            ),
            $request->getJobs());
    }

    public function testRequestInstallSamePackageFromDifferentRepositories()
    {
        $repo1 = new ArrayRepository;
        $repo2 = new ArrayRepository;

        $foo1 = $this->getPackage('foo', '1');
        $foo2 = $this->getPackage('foo', '1');

        $repo1->addPackage($foo1);
        $repo2->addPackage($foo2);

        $request = new Request();
        $request->install('foo', $constraint = $this->getVersionConstraint('=', '1'));

        $this->assertEquals(
            array(
                    array('cmd' => 'install', 'packageName' => 'foo', 'constraint' => $constraint, 'fixed' => false),
            ),
            $request->getJobs()
        );
    }

    public function testUpdateAll()
    {
        $request = new Request();

        $request->updateAll();

        $this->assertEquals(
            array(array('cmd' => 'update-all')),
            $request->getJobs());
    }
}