1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<?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());
}
}