CommandExceptionTest.php #1

  • //
  • guest/
  • thomas_gray/
  • jambox/
  • main/
  • swarm/
  • tests/
  • phpunit/
  • P4Test/
  • Connection/
  • Exception/
  • CommandExceptionTest.php
  • View
  • Commits
  • Open Download .zip Download (2 KB)
<?php
/**
 * Test methods for the P4\Connection\Connection class.
 *
 * @copyright   2012 Perforce Software. All rights reserved.
 * @license     Please see LICENSE.txt in top-level folder of this distribution.
 * @version     <release>/<patch>
 */

namespace P4Test\Connection\Exception;

use P4Test\TestCase;
use P4\Connection\Connection;
use P4\Connection\Exception\CommandException;

class CommandExceptionTest extends TestCase
{
    /**
     * Test connection handling.
     */
    public function testConnections()
    {
        $e = new CommandException('test');

        // set retrieving an unset connection.
        $connection = $e->getConnection();
        $this->assertSame(null, $connection, 'Expected null connection');

        // test setting a bogus connection
        try {
            $e->setConnection('bogus');
            $this->fail("Expected exception setting bogus connection");
        } catch (\Exception $exception) {
            $this->assertTrue(true);
        }

        // test setting a real connection
        $connection = Connection::factory(
            $this->getP4Params('port'),
            $this->getP4Params('user'),
            $this->getP4Params('client'),
            $this->getP4Params('password'),
            null
        );
        $e->setConnection($connection);
        $this->assertSame($connection, $e->getConnection(), 'Expected real connection');
    }

    /**
     * Test result handling.
     */
    public function testResult()
    {
        $e = new CommandException('another_test');

        // set retrieving an unset result.
        $result = $e->getResult();
        $this->assertSame(null, $result, 'Expected null result');

        // test setting a bogus result
        $e->setResult('bogus');
        $this->assertSame(null, $e->getResult(), 'Expected bogus result');

        // test setting a real result
        $result = $this->p4->run('info');
        $e->setResult($result);
        $this->assertSame($result, $e->getResult(), 'Expected real result');
    }
}
# Change User Description Committed
#1 18730 Liz Lam clean up code and move things around