Skip to content
This repository has been archived by the owner on Sep 24, 2020. It is now read-only.

Add core unit tests (#170) #183

Merged
merged 5 commits into from
Nov 21, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions tests/PHPSA/ApplicationTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

namespace Tests\PHPSA;

use PHPSA\Application;

class ApplicationTest extends TestCase
{
/**
* @covers \PHPSA\Application::getConfiguration
*/
public function testGetConfiguration()
{
$application = new Application();

$this->assertInstanceOf('\PHPSA\Configuration', $application->getConfiguration());
}

/**
* @covers \PHPSA\Application::getIssuesCollector
*/
public function testGetIssueCollector()
{
$application = new Application();

$this->assertInstanceOf('\PHPSA\IssuesCollector', $application->getIssuesCollector());
}
}
24 changes: 24 additions & 0 deletions tests/PHPSA/IssuesCollectorTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

namespace Tests\PHPSA;

use PHPSA\IssueLocation;
use PHPSA\IssuesCollector;
use PHPSA\Issue;

class IssuesCollectorTest extends \PHPUnit_Framework_TestCase
{
/**
* @covers \PHPSA\IssuesCollector::addIssue()
* @covers \PHPSA\IssuesCollector::getIssues()
*/
public function testAddingIssue()
{
$collector = new IssuesCollector();
$issue = new Issue(__FUNCTION__, 'Test issue', new IssueLocation(__FILE__, 26));

$this->assertNull($collector->addIssue($issue));
$this->assertCount(1, $collector->getIssues());
$this->assertSame([$issue], $collector->getIssues());
}
}
97 changes: 97 additions & 0 deletions tests/PHPSA/ScopePointerTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
<?php

namespace Tests\PHPSA;

use PHPSA\ScopePointer;

class ScopePointerTest extends TestCase
{
/**
* @covers \PHPSA\ScopePointer::getObject
*/
public function testGetObject()
{
$object = new \stdClass;
$scopePointer = new ScopePointer($object);

$this->assertSame($object, $scopePointer->getObject());
}

/**
* @covers \PHPSA\ScopePointer::isClassMethod()
*/
public function testIsClassMethod()
{
$class = $this->getMockBuilder('\PHPSA\Definition\ClassMethod')
->disableOriginalConstructor()
->getMock();
$scopePointer = new ScopePointer($class);

$this->assertTrue($scopePointer->isClassMethod());
}

/**
* @covers \PHPSA\ScopePointer::isClassMethod()
* @dataProvider notClassMethodDataProvider
*/
public function testIsNotClassMethod($object)
{
$scopePointer = new ScopePointer($object);

$this->assertFalse($scopePointer->isClassMethod());
}

/**
* @covers \PHPSA\ScopePointer::isFunction()
*/
public function testIsFunction()
{
$function = $this->getMockBuilder('\PHPSA\Definition\FunctionDefinition')
->disableOriginalConstructor()
->getMock();
$scopePointer = new ScopePointer($function);

$this->assertTrue($scopePointer->isFunction());
}

/**
* @covers \PHPSA\ScopePointer::isFunction()
* @dataProvider notFunctionDataProvider
*/
public function testIsNotFunction($object)
{
$scopePointer = new ScopePointer($object);

$this->assertFalse($scopePointer->isFunction());
}

public function notClassMethodDataProvider()
{
$function = $this->getMockBuilder('\PHPSA\Definition\FunctionDefinition')
->disableOriginalConstructor()
->getMock();

return [
'String' => ['Random characters'],
'Integer' => [42],
'Float' => [pi()],
'StdClass' => [new \StdClass],
'FunctionDefinition' => [$function]
];
}

public function notFunctionDataProvider()
{
$class = $this->getMockBuilder('\PHPSA\Definition\ClassMethod')
->disableOriginalConstructor()
->getMock();

return [
'String' => ['Random characters'],
'Integer' => [42],
'Float' => [pi()],
'StdClass' => [new \StdClass],
'ClassMethod' => [$class]
];
}
}