This commit is contained in:
2020-10-06 14:27:47 +07:00
commit 586be80cf6
16613 changed files with 3274099 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
<?php
class ConfigTest extends \SpecifyUnitTest
{
/**
* @var \Codeception\Specify\Config
*/
protected $config;
protected function setUp()
{
$this->config = \Codeception\Specify\Config::create();
}
public function testDefaults()
{
$this->assertTrue($this->config->propertyIgnored('backupGlobals'));
$this->assertTrue($this->config->propertyIgnored('dependencies'));
$this->assertTrue($this->config->propertyIsDeeplyCloned('user'));
$this->assertFalse($this->config->propertyIsShallowCloned('user'));
}
public function testCloneModes()
{
$this->config->is_deep = false;
$this->config->deep[] = 'user';
$this->assertTrue($this->config->propertyIsShallowCloned('profile'));
$this->assertFalse($this->config->propertyIsShallowCloned('user'));
$this->assertTrue($this->config->propertyIsDeeplyCloned('user'));
}
public function testConfigOnly()
{
$this->config->deep = ['user', 'post', 'tag'];
$this->config->only = ['user'];
// $this->assertFalse($this->config->propertyIgnored('user'));
// $this->assertTrue($this->config->propertyIgnored('post'));
}
}

View File

@@ -0,0 +1,65 @@
<?php
class ObjectPropertyTest extends \SpecifyUnitTest
{
private $private = 'private';
public function testConstruction()
{
$this->prop = 'test';
$prop = new \Codeception\Specify\ObjectProperty($this, 'prop');
$this->assertEquals('prop', $prop->getName());
$this->assertEquals('test', $prop->getValue());
$prop = new \Codeception\Specify\ObjectProperty($this, 'private');
$this->assertEquals('private', $prop->getName());
$this->assertEquals('private', $prop->getValue());
$prop = new \Codeception\Specify\ObjectProperty(
$this, new ReflectionProperty($this, 'private')
);
$this->assertEquals('private', $prop->getName());
$this->assertEquals('private', $prop->getValue());
}
public function testRestore()
{
$this->prop = 'test';
$prop = new \Codeception\Specify\ObjectProperty($this, 'prop');
$prop->setValue('another value');
$this->assertEquals('another value', $this->prop);
$prop->restoreValue();
$this->assertEquals('test', $this->prop);
$prop = new \Codeception\Specify\ObjectProperty($this, 'private');
$prop->setValue('another private value');
$this->assertEquals('another private value', $this->private);
$prop->restoreValue();
$this->assertEquals('private', $this->private);
$prop = new \Codeception\Specify\ObjectProperty($this, 'prop', 'testing');
$this->assertEquals('test', $prop->getValue());
$prop->setValue('Hello, World!');
$this->assertEquals($prop->getValue(), $this->prop);
$this->assertEquals('Hello, World!', $prop->getValue());
$prop->restoreValue();
$this->assertEquals($prop->getValue(), $this->prop);
$this->assertEquals('testing', $prop->getValue());
}
}

View File

@@ -0,0 +1,328 @@
<?php
class SpecifyTest extends \SpecifyUnitTest
{
protected $user;
protected $a;
private $private = false;
public function testSpecification()
{
$this->user = new stdClass();
$this->user->name = 'davert';
$this->specify("i can change my name", function() {
$this->user->name = 'jon';
$this->assertEquals('jon', $this->user->name);
});
$this->assertEquals('davert', $this->user->name);
$this->specify('i can fail here but test goes on', function() {
$this->markTestIncomplete();
});
$this->assertTrue(true);
}
function testBeforeCallback()
{
$this->beforeSpecify(function() {
$this->user = "davert";
});
$this->specify("user should be davert", function() {
$this->assertEquals('davert', $this->user);
});
}
function testMultiBeforeCallback()
{
$this->beforeSpecify(function() {
$this->user = "davert";
});
$this->beforeSpecify(function() {
$this->user .= "jon";
});
$this->specify("user should be davertjon", function() {
$this->assertEquals('davertjon', $this->user);
});
}
function testAfterCallback()
{
$this->afterSpecify(function() {
$this->user = "davert";
});
$this->specify("user should be davert", function() {
$this->user = "jon";
});
$this->assertEquals('davert', $this->user);
}
function testMultiAfterCallback()
{
$this->afterSpecify(function() {
$this->user = "davert";
});
$this->afterSpecify(function() {
$this->user .= "jon";
});
$this->specify("user should be davertjon", function() {
$this->user = "jon";
});
$this->assertEquals('davertjon', $this->user);
}
function testCleanSpecifyCallbacks()
{
$this->afterSpecify(function() {
$this->user = "davert";
});
$this->cleanSpecify();
$this->specify("user should be davert", function() {
$this->user = "jon";
});
$this->assertNull($this->user);
}
public function testExceptions()
{
$this->specify('user is invalid', function() {
throw new Exception;
}, ['throws' => 'Exception']);
$this->specify('user is invalid', function() {
throw new RuntimeException;
}, ['throws' => 'RuntimeException']);
$this->specify('user is invalid', function() {
throw new RuntimeException;
}, ['throws' => new RuntimeException()]);
$this->specify('i can handle fails', function() {
$this->fail("Ok, I'm failing");
}, ['throws' => 'fail']);
}
public function testExceptionsWithMessages()
{
$this->specify('user is invalid', function() {
throw new Exception("test message");
}, ['throws' => ['Exception', 'test message']]);
$this->specify('user is invalid', function() {
throw new RuntimeException("test message");
}, ['throws' => ['RuntimeException', 'test message']]);
$this->specify('user is invalid', function() {
throw new RuntimeException("test message");
}, ['throws' => [new RuntimeException(), "test message"]]);
$this->specify('i can handle fails', function() {
$this->fail("test message");
}, ['throws' => ['fail', 'test message']]);
$this->specify('ignores an empty message', function() {
$this->fail("test message");
}, ['throws' => ['fail']]);
$this->specify('mixed case exception messages', function() {
throw new RuntimeException("teSt mESSage");
}, ['throws' => ['RuntimeException', 'Test MessaGE']]);
}
/**
* @expectedException RuntimeException
*/
public function testFailWhenUnexpectedExceptionHappens()
{
$this->specify('i bubble exception up if no throws is defined', function() {
throw new RuntimeException;
});
}
public function testExamples()
{
$this->specify('specify may contain examples', function($a, $b) {
$this->assertEquals($b, $a*$a);
}, ['examples' => [
['2', '4'],
['3', '9']
]]);
}
function testOnlySpecifications()
{
$this->specify('should be valid');
}
public function testDeepCopy()
{
$this->a = new TestOne();
$this->a->prop = new TestOne();
$this->a->prop->prop = 1;
$this->specify('nested object can be changed', function() {
$this->assertEquals(1, $this->a->prop->prop);
$this->a->prop->prop = 2;
$this->assertEquals(2, $this->a->prop->prop);
});
$this->assertEquals(1, $this->a->prop->prop);
}
public function testConfiguration()
{
$this->specifyConfig()
->ignore('user');
$this->specify("user should be jon", function() {
$this->user = "jon";
});
$this->specifyConfig()
->ignore(['user']);
$this->specify("user should be davert", function() {
$this->user = "davert";
});
$this->a = new TestOne();
$this->a->prop = new TestOne();
$this->a->prop->prop = 1;
$this->specifyConfig()
->shallowClone('a');
$this->specify("user should be davert", function() {
$this->a->prop->prop = "davert";
});
$this->assertEquals("davert", $this->a->prop->prop);
}
public function testCloneOnly()
{
$this->specifyConfig()
->cloneOnly('user');
$this->user = "bob";
$this->a = "rob";
$this->specify("user should be jon", function() {
$this->user = "jon";
$this->a = 'alice';
});
$this->assertEquals('bob', $this->user);
$this->assertEquals('alice', $this->a);
}
/**
* @Issue https://github.com/Codeception/Specify/issues/6
*/
function testPropertyRestore()
{
$this->testOne = new testOne();
$this->testOne->prop = ['hello', 'world'];
$this->specify('array contains hello+world', function ($testData) {
$this->testOne->prop = ['bye', 'world'];
$this->assertContains($testData, $this->testOne->prop);
}, ['examples' => [
['bye'],
['world'],
]]);
$this->assertEquals(['hello', 'world'], $this->testOne->prop);
$this->assertFalse($this->private);
$this->assertTrue($this->getPrivateProperty());
$this->specify('property $private should be restored properly', function() {
$this->private = 'i\'m protected';
$this->setPrivateProperty('i\'m private');
$this->assertEquals('i\'m private', $this->getPrivateProperty());
});
$this->assertFalse($this->private);
$this->assertTrue($this->getPrivateProperty());
}
public function testExamplesIndexInName()
{
$name = $this->getName();
$this->specify('it appends index of an example to a test case name', function ($idx, $example) use ($name) {
$name .= ' | it appends index of an example to a test case name';
$this->assertEquals($name . ' | examples index ' . $idx, $this->getName());
$this->specify('nested specification without examples', function () use ($idx, $name) {
$name .= ' | examples index ' . $idx;
$name .= ' | nested specification without examples';
$this->assertEquals($name, $this->getName());
});
$this->specify('nested specification with examples', function () use ($idx, $name) {
$name .= ' | examples index ' . $idx;
$name .= ' | nested specification with examples';
$name .= ' | examples index 0';
$this->assertEquals($name, $this->getName());
}, ['examples' => [
[$example]
]]);
}, ['examples' => [
[0, ''],
[1, '0'],
[2, null],
[3, 'bye'],
[4, 'world'],
]]);
$this->specify('it does not append index to a test case name if there are no examples', function () use ($name) {
$name .= ' | it does not append index to a test case name if there are no examples';
$this->assertEquals($name, $this->getName());
$this->specify('nested specification without examples', function () use ($name) {
$this->assertEquals($name . ' | nested specification without examples', $this->getName());
});
$this->specify('nested specification with examples', function () use ($name) {
$this->assertEquals($name . ' | nested specification with examples | examples index 0', $this->getName());
}, ['examples' => [
[null]
]]);
});
}
public function testMockObjectsIsolation()
{
$mock = $this->getMock(get_class($this), ['testMockObjectsIsolation']);
$mock->expects($this->once())->method('testMockObjectsIsolation');
$this->specify('this should fail', function () {
$mock = $this->getMock(get_class($this), ['testMockObjectsIsolation']);
$mock->expects($this->exactly(100500))->method('testMockObjectsIsolation');
}, ['throws' => 'PHPUnit_Framework_ExpectationFailedException']);
$this->specify('this should not fail', function () {
$mock = $this->getMock(get_class($this), ['testMockObjectsIsolation']);
$mock->expects($this->never())->method('testMockObjectsIsolation');
});
$mock->testMockObjectsIsolation();
}
// public function testFail()
// {
// $this->specify('this will fail', function(){
// $this->assertTrue(false);
// });
//
// $this->specify('this will fail too', function(){
// echo "executed";
// $this->assertTrue(true);
// }, ['throws' => 'Exception']);
// }
}
class TestOne
{
public $prop;
}

View File

@@ -0,0 +1,3 @@
<?php
require_once __DIR__.'/../vendor/autoload.php';
require_once __DIR__ . '/_support/SpecifyUnitTest.php';

View File

@@ -0,0 +1,23 @@
<?php
class SpecifyUnitTest extends \PHPUnit_Framework_TestCase
{
use Codeception\Specify;
private $private = true;
/**
* @param mixed $private
*/
protected function setPrivateProperty($private)
{
$this->private = $private;
}
/**
* @return mixed
*/
protected function getPrivateProperty()
{
return $this->private;
}
}