| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531 |
- <?php
- /**
- * CakePHP : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP Project
- * @since 1.2.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\TestSuite;
- use Cake\Core\Plugin;
- use Cake\Datasource\ConnectionManager;
- use Cake\Event\Event;
- use Cake\Event\EventList;
- use Cake\Event\EventManager;
- use Cake\ORM\Entity;
- use Cake\ORM\Table;
- use Cake\TestSuite\Fixture\FixtureManager;
- use Cake\TestSuite\TestCase;
- use Cake\Test\Fixture\FixturizedTestCase;
- /**
- * Testing stub.
- */
- class SecondaryPostsTable extends Table
- {
- /**
- * @return string
- */
- public static function defaultConnectionName()
- {
- return 'secondary';
- }
- }
- /**
- * TestCaseTest
- */
- class TestCaseTest extends TestCase
- {
- /**
- * tests trying to assertEventFired without configuring an event list
- */
- public function testEventFiredMisconfiguredEventList()
- {
- $this->expectException(\PHPUnit\Framework\AssertionFailedError::class);
- $manager = EventManager::instance();
- $this->assertEventFired('my.event', $manager);
- }
- /**
- * tests trying to assertEventFired without configuring an event list
- */
- public function testEventFiredWithMisconfiguredEventList()
- {
- $this->expectException(\PHPUnit\Framework\AssertionFailedError::class);
- $manager = EventManager::instance();
- $this->assertEventFiredWith('my.event', 'some', 'data', $manager);
- }
- /**
- * tests assertEventFiredWith
- *
- * @return void
- */
- public function testEventFiredWith()
- {
- $manager = EventManager::instance();
- $manager->setEventList(new EventList());
- $manager->trackEvents(true);
- $event = new Event('my.event', $this, [
- 'some' => 'data',
- ]);
- $manager->dispatch($event);
- $this->assertEventFiredWith('my.event', 'some', 'data');
- $manager = new EventManager();
- $manager->setEventList(new EventList());
- $manager->trackEvents(true);
- $event = new Event('my.event', $this, [
- 'other' => 'data',
- ]);
- $manager->dispatch($event);
- $this->assertEventFiredWith('my.event', 'other', 'data', $manager);
- }
- /**
- * tests assertEventFired
- *
- * @return void
- */
- public function testEventFired()
- {
- $manager = EventManager::instance();
- $manager->setEventList(new EventList());
- $manager->trackEvents(true);
- $event = new Event('my.event');
- $manager->dispatch($event);
- $this->assertEventFired('my.event');
- $manager = new EventManager();
- $manager->setEventList(new EventList());
- $manager->trackEvents(true);
- $event = new Event('my.event');
- $manager->dispatch($event);
- $this->assertEventFired('my.event', $manager);
- }
- /**
- * testLoadFixturesOnDemand
- *
- * @return void
- */
- public function testLoadFixturesOnDemand()
- {
- $test = new FixturizedTestCase('testFixtureLoadOnDemand');
- $test->autoFixtures = false;
- $manager = $this->getMockBuilder('Cake\TestSuite\Fixture\FixtureManager')->getMock();
- $manager->fixturize($test);
- $test->fixtureManager = $manager;
- $manager->expects($this->once())->method('loadSingle');
- $result = $test->run();
- $this->assertEquals(0, $result->errorCount());
- }
- /**
- * tests loadFixtures loads all fixtures on the test
- *
- * @return void
- */
- public function testLoadAllFixtures()
- {
- $test = new FixturizedTestCase('testLoadAllFixtures');
- $test->autoFixtures = false;
- $manager = new FixtureManager();
- $manager->fixturize($test);
- $test->fixtureManager = $manager;
- $result = $test->run();
- $this->assertEquals(0, $result->errorCount());
- $this->assertCount(1, $result->passed());
- $this->assertFalse($test->autoFixtures);
- }
- /**
- * testSkipIf
- *
- * @return void
- */
- public function testSkipIf()
- {
- $test = new FixturizedTestCase('testSkipIfTrue');
- $result = $test->run();
- $this->assertEquals(1, $result->skippedCount());
- $test = new FixturizedTestCase('testSkipIfFalse');
- $result = $test->run();
- $this->assertEquals(0, $result->skippedCount());
- }
- /**
- * test withErrorReporting
- *
- * @return void
- */
- public function testWithErrorReporting()
- {
- $errorLevel = error_reporting();
- $this->withErrorReporting(E_USER_WARNING, function () {
- $this->assertSame(E_USER_WARNING, error_reporting());
- });
- $this->assertSame($errorLevel, error_reporting());
- }
- /**
- * test withErrorReporting with exceptions
- *
- * @expectedException \PHPUnit\Framework\AssertionFailedError
- * @return void
- */
- public function testWithErrorReportingWithException()
- {
- $errorLevel = error_reporting();
- try {
- $this->withErrorReporting(E_USER_WARNING, function () {
- $this->assertSame(1, 2);
- });
- } finally {
- $this->assertSame($errorLevel, error_reporting());
- }
- }
- /**
- * testDeprecated
- *
- * @return void
- */
- public function testDeprecated()
- {
- $value = 'custom';
- $setter = 'setLayout';
- $getter = 'getLayout';
- $property = 'layout';
- $controller = new \Cake\Controller\Controller();
- $controller->viewBuilder()->{$setter}($value);
- $this->deprecated(function () use ($value, $getter, $controller, $property) {
- $this->assertSame($value, $controller->$property);
- $this->assertSame($value, $controller->viewBuilder()->{$getter}());
- });
- }
- /**
- * testDeprecated
- *
- * @expectedException \PHPUnit\Framework\AssertionFailedError
- * @return void
- */
- public function testDeprecatedWithException()
- {
- $value = 'custom';
- $setter = 'setLayout';
- $getter = 'getLayout';
- $property = 'layout';
- $controller = new \Cake\Controller\Controller();
- $controller->viewBuilder()->{$setter}($value);
- $this->deprecated(function () use ($value, $getter, $controller, $property) {
- $this->assertSame($value, $controller->$property);
- $this->assertSame('Derp', $controller->viewBuilder()->{$getter}());
- });
- }
- /**
- * Test that TestCase::setUp() backs up values.
- *
- * @return void
- */
- public function testSetupBackUpValues()
- {
- $this->assertArrayHasKey('debug', $this->_configure);
- }
- /**
- * test assertTextNotEquals()
- *
- * @return void
- */
- public function testAssertTextNotEquals()
- {
- $one = "\r\nOne\rTwooo";
- $two = "\nOne\nTwo";
- $this->assertTextNotEquals($one, $two);
- }
- /**
- * test assertTextEquals()
- *
- * @return void
- */
- public function testAssertTextEquals()
- {
- $one = "\r\nOne\rTwo";
- $two = "\nOne\nTwo";
- $this->assertTextEquals($one, $two);
- }
- /**
- * test assertTextStartsWith()
- *
- * @return void
- */
- public function testAssertTextStartsWith()
- {
- $stringDirty = "some\nstring\r\nwith\rdifferent\nline endings!";
- $stringClean = "some\nstring\nwith\ndifferent\nline endings!";
- $this->assertStringStartsWith("some\nstring", $stringDirty);
- $this->assertStringStartsNotWith("some\r\nstring\r\nwith", $stringDirty);
- $this->assertStringStartsNotWith("some\nstring\nwith", $stringDirty);
- $this->assertTextStartsWith("some\nstring\nwith", $stringDirty);
- $this->assertTextStartsWith("some\r\nstring\r\nwith", $stringDirty);
- }
- /**
- * test assertTextStartsNotWith()
- *
- * @return void
- */
- public function testAssertTextStartsNotWith()
- {
- $stringDirty = "some\nstring\r\nwith\rdifferent\nline endings!";
- $stringClean = "some\nstring\nwith\ndifferent\nline endings!";
- $this->assertTextStartsNotWith("some\nstring\nwithout", $stringDirty);
- }
- /**
- * test assertTextEndsWith()
- *
- * @return void
- */
- public function testAssertTextEndsWith()
- {
- $stringDirty = "some\nstring\r\nwith\rdifferent\nline endings!";
- $stringClean = "some\nstring\nwith\ndifferent\nline endings!";
- $this->assertTextEndsWith("string\nwith\r\ndifferent\rline endings!", $stringDirty);
- $this->assertTextEndsWith("string\r\nwith\ndifferent\nline endings!", $stringDirty);
- }
- /**
- * test assertTextEndsNotWith()
- *
- * @return void
- */
- public function testAssertTextEndsNotWith()
- {
- $stringDirty = "some\nstring\r\nwith\rdifferent\nline endings!";
- $stringClean = "some\nstring\nwith\ndifferent\nline endings!";
- $this->assertStringEndsNotWith("different\nline endings", $stringDirty);
- $this->assertTextEndsNotWith("different\rline endings", $stringDirty);
- }
- /**
- * test assertTextContains()
- *
- * @return void
- */
- public function testAssertTextContains()
- {
- $stringDirty = "some\nstring\r\nwith\rdifferent\nline endings!";
- $stringClean = "some\nstring\nwith\ndifferent\nline endings!";
- $this->assertContains('different', $stringDirty);
- $this->assertNotContains("different\rline", $stringDirty);
- $this->assertTextContains("different\rline", $stringDirty);
- }
- /**
- * test assertTextNotContains()
- *
- * @return void
- */
- public function testAssertTextNotContains()
- {
- $stringDirty = "some\nstring\r\nwith\rdifferent\nline endings!";
- $stringClean = "some\nstring\nwith\ndifferent\nline endings!";
- $this->assertTextNotContains("different\rlines", $stringDirty);
- }
- /**
- * test testAssertWithinRange()
- *
- * @return void
- */
- public function testAssertWithinRange()
- {
- $this->assertWithinRange(21, 22, 1, 'Not within range');
- $this->assertWithinRange(21.3, 22.2, 1.0, 'Not within range');
- }
- /**
- * test testAssertNotWithinRange()
- *
- * @return void
- */
- public function testAssertNotWithinRange()
- {
- $this->assertNotWithinRange(21, 23, 1, 'Within range');
- $this->assertNotWithinRange(21.3, 22.2, 0.7, 'Within range');
- }
- /**
- * test getMockForModel()
- *
- * @return void
- */
- public function testGetMockForModel()
- {
- static::setAppNamespace();
- $Posts = $this->getMockForModel('Posts');
- $entity = new Entity([]);
- $this->assertInstanceOf('TestApp\Model\Table\PostsTable', $Posts);
- $this->assertNull($Posts->save($entity));
- $this->assertNull($Posts->getTable());
- $Posts = $this->getMockForModel('Posts', ['save']);
- $Posts->expects($this->at(0))
- ->method('save')
- ->will($this->returnValue('mocked'));
- $this->assertEquals('mocked', $Posts->save($entity));
- $this->assertEquals('Cake\ORM\Entity', $Posts->getEntityClass());
- $Posts = $this->getMockForModel('Posts', ['doSomething']);
- $this->assertInstanceOf('Cake\Database\Connection', $Posts->getConnection());
- $this->assertEquals('test', $Posts->getConnection()->configName());
- $Tags = $this->getMockForModel('Tags', ['doSomething']);
- $this->assertEquals('TestApp\Model\Entity\Tag', $Tags->getEntityClass());
- }
- /**
- * Test getMockForModel on secondary datasources.
- *
- * @return void
- */
- public function testGetMockForModelSecondaryDatasource()
- {
- ConnectionManager::alias('test', 'secondary');
- $post = $this->getMockForModel(__NAMESPACE__ . '\SecondaryPostsTable', ['save']);
- $this->assertEquals('test', $post->getConnection()->configName());
- }
- /**
- * test getMockForModel() with plugin models
- *
- * @return void
- */
- public function testGetMockForModelWithPlugin()
- {
- static::setAppNamespace();
- $this->loadPlugins(['TestPlugin']);
- $TestPluginComment = $this->getMockForModel('TestPlugin.TestPluginComments');
- $result = $this->getTableLocator()->get('TestPlugin.TestPluginComments');
- $this->assertInstanceOf('TestPlugin\Model\Table\TestPluginCommentsTable', $result);
- $this->assertSame($TestPluginComment, $result);
- $TestPluginComment = $this->getMockForModel('TestPlugin.TestPluginComments', ['save']);
- $this->assertInstanceOf('TestPlugin\Model\Table\TestPluginCommentsTable', $TestPluginComment);
- $this->assertEquals('Cake\ORM\Entity', $TestPluginComment->getEntityClass());
- $TestPluginComment->expects($this->at(0))
- ->method('save')
- ->will($this->returnValue(true));
- $TestPluginComment->expects($this->at(1))
- ->method('save')
- ->will($this->returnValue(false));
- $entity = new Entity([]);
- $this->assertTrue($TestPluginComment->save($entity));
- $this->assertFalse($TestPluginComment->save($entity));
- $TestPluginAuthors = $this->getMockForModel('TestPlugin.Authors', ['doSomething']);
- $this->assertInstanceOf('TestPlugin\Model\Table\AuthorsTable', $TestPluginAuthors);
- $this->assertEquals('TestPlugin\Model\Entity\Author', $TestPluginAuthors->getEntityClass());
- $this->clearPlugins();
- }
- /**
- * testGetMockForModelTable
- *
- * @return void
- */
- public function testGetMockForModelTable()
- {
- $Mock = $this->getMockForModel(
- 'Table',
- ['save'],
- ['alias' => 'Comments', 'className' => '\Cake\ORM\Table']
- );
- $result = $this->getTableLocator()->get('Comments');
- $this->assertInstanceOf('Cake\ORM\Table', $result);
- $this->assertEquals('Comments', $Mock->getAlias());
- $Mock->expects($this->at(0))
- ->method('save')
- ->will($this->returnValue(true));
- $Mock->expects($this->at(1))
- ->method('save')
- ->will($this->returnValue(false));
- $entity = new Entity([]);
- $this->assertTrue($Mock->save($entity));
- $this->assertFalse($Mock->save($entity));
- $allMethodsStubs = $this->getMockForModel(
- 'Table',
- [],
- ['alias' => 'Comments', 'className' => '\Cake\ORM\Table']
- );
- $result = $this->getTableLocator()->get('Comments');
- $this->assertInstanceOf('Cake\ORM\Table', $result);
- $this->assertEmpty([], $allMethodsStubs->getAlias());
- $allMethodsMocks = $this->getMockForModel(
- 'Table',
- null,
- ['alias' => 'Comments', 'className' => '\Cake\ORM\Table']
- );
- $result = $this->getTableLocator()->get('Comments');
- $this->assertInstanceOf('Cake\ORM\Table', $result);
- $this->assertEquals('Comments', $allMethodsMocks->getAlias());
- $this->assertNotEquals($allMethodsStubs, $allMethodsMocks);
- }
- /**
- * Test getting a table mock that doesn't have a preset table name sets the proper name
- *
- * @return void
- */
- public function testGetMockForModelSetTable()
- {
- static::setAppNamespace();
- $I18n = $this->getMockForModel('I18n', ['doSomething']);
- $this->assertEquals('custom_i18n_table', $I18n->getTable());
- $Tags = $this->getMockForModel('Tags', ['doSomething']);
- $this->assertEquals('tags', $Tags->getTable());
- }
- }
|