123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\DB\Test\Unit\Ddl;
- class TriggerTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Framework\DB\Ddl\Trigger
- */
- protected $_object;
- protected function setUp()
- {
- $this->_object = new \Magento\Framework\DB\Ddl\Trigger();
- }
- /**
- * Test getListOfEvents() method
- */
- public function testGetListOfEvents()
- {
- $actualEventTypes = \Magento\Framework\DB\Ddl\Trigger::getListOfEvents();
- $this->assertInternalType('array', $actualEventTypes);
- $this->assertCount(3, $actualEventTypes);
- $this->assertTrue(in_array(\Magento\Framework\DB\Ddl\Trigger::EVENT_INSERT, $actualEventTypes));
- $this->assertTrue(in_array(\Magento\Framework\DB\Ddl\Trigger::EVENT_UPDATE, $actualEventTypes));
- $this->assertTrue(in_array(\Magento\Framework\DB\Ddl\Trigger::EVENT_DELETE, $actualEventTypes));
- }
- /**
- * Test getListOfTimes() method
- */
- public function testGetListOfTimes()
- {
- $actualTimeTypes = \Magento\Framework\DB\Ddl\Trigger::getListOfTimes();
- $this->assertInternalType('array', $actualTimeTypes);
- $this->assertCount(2, $actualTimeTypes);
- $this->assertTrue(in_array(\Magento\Framework\DB\Ddl\Trigger::TIME_AFTER, $actualTimeTypes));
- $this->assertTrue(in_array(\Magento\Framework\DB\Ddl\Trigger::TIME_BEFORE, $actualTimeTypes));
- }
- /**
- * Test case for getName() after setName()
- */
- public function testGetNameWithSetName()
- {
- $triggerName = 'TEST_TRIGGER_NAME' . mt_rand(100, 999);
- $this->_object->setName($triggerName);
- $this->assertEquals(strtolower($triggerName), $this->_object->getName());
- }
- /**
- * Test case for setName() with exception
- *
- * @expectedException \InvalidArgumentException
- * @expectedExceptionMessage Trigger name should be a string
- */
- public function testSetNameWithException()
- {
- $triggerName = new \stdClass();
- //non string
- $this->_object->setName($triggerName);
- }
- /**
- * Test case for setTable() with exception
- *
- * @expectedException \InvalidArgumentException
- * @expectedExceptionMessage Trigger table name should be a string
- */
- public function testSetTableWithException()
- {
- $tableName = new \stdClass();
- //non string
- $this->_object->setTable($tableName);
- }
- /**
- * Test for table name setter
- */
- public function testSetTableName()
- {
- $names = ['PREFIX_table', 'prefix_table'];
- foreach ($names as $name) {
- $this->_object->setTable($name);
- $this->assertEquals($name, $this->_object->getTable());
- }
- }
- /**
- * Test case for getName()
- *
- * @expectedException \Zend_Db_Exception
- * @expectedExceptionMessage Trigger name is not defined
- */
- public function testGetNameWithException()
- {
- $tableName = 'TEST_TABLE_NAME_' . mt_rand(100, 999);
- $event = \Magento\Framework\DB\Ddl\Trigger::EVENT_INSERT;
- $this->_object->setTable($tableName)->setTime(\Magento\Framework\DB\Ddl\Trigger::TIME_AFTER)->setEvent($event);
- $this->_object->getName();
- }
- /**
- * Test case for getTime() with Exception
- *
- * @expectedException \Zend_Db_Exception
- * @expectedExceptionMessage Trigger time is not defined
- */
- public function testGetTimeWithException()
- {
- $tableName = 'TEST_TABLE_NAME_' . mt_rand(100, 999);
- $event = \Magento\Framework\DB\Ddl\Trigger::EVENT_INSERT;
- $this->_object->setTable($tableName)->setEvent($event);
- $this->_object->getTime();
- }
- /**
- * Test case for getTable()
- *
- * @expectedException \Zend_Db_Exception
- * @expectedExceptionMessage Trigger table name is not defined
- */
- public function testGetTableWithException()
- {
- $event = \Magento\Framework\DB\Ddl\Trigger::EVENT_INSERT;
- $this->_object->setTime(\Magento\Framework\DB\Ddl\Trigger::TIME_AFTER)->setEvent($event);
- $this->_object->getTable();
- }
- /**
- * Test case for getEvent() with Exception
- *
- * @expectedException \Zend_Db_Exception
- * @expectedExceptionMessage Trigger event is not defined
- */
- public function testGetEventWithException()
- {
- $tableName = 'TEST_TABLE_NAME_' . mt_rand(100, 999);
- $this->_object->setTable($tableName)->setTime(\Magento\Framework\DB\Ddl\Trigger::TIME_AFTER);
- $this->_object->getEvent();
- }
- /**
- * @expectedException InvalidArgumentException
- * @expectedExceptionMessage Trigger unsupported event type
- */
- public function testWrongEventTypeException()
- {
- $this->_object->setEvent('UNSUPORT EVENT TYPE');
- }
- /**
- * @expectedException InvalidArgumentException
- * @expectedExceptionMessage Trigger unsupported time type
- */
- public function testWrongTimeTypeException()
- {
- $this->_object->setTime('UNSUPORT TIME TYPE');
- }
- /**
- * Test case for setTable() with exception
- *
- * @expectedException \InvalidArgumentException
- * @expectedExceptionMessage Trigger statement should be a string
- */
- public function testAddStatementWithException()
- {
- $statement = new \stdClass();
- //non string
- $this->_object->addStatement($statement);
- }
- /**
- * Data provider for setBody function
- */
- public function getStatementsDataProvider()
- {
- return [['SQL', ['SQL;']], ['SQL;', ['SQL;']]];
- }
- /**
- * Test addStatement and getStatements for trigger
- *
- * @dataProvider getStatementsDataProvider
- */
- public function testAddStatement($param, $expected)
- {
- $this->_object->addStatement($param);
- $this->assertEquals($expected, $this->_object->getStatements());
- }
- /**
- * Test getStatements method
- */
- public function testGetStatements()
- {
- $this->assertEquals([], $this->_object->getStatements());
- }
- }
|