forked from phpbb/ideas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathidea_attributes_test.php
More file actions
257 lines (229 loc) · 5.42 KB
/
idea_attributes_test.php
File metadata and controls
257 lines (229 loc) · 5.42 KB
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
<?php
/**
*
* Ideas extension for the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/
namespace phpbb\ideas\tests\ideas;
use phpbb\ideas\ext;
class idea_attributes_test extends ideas_base
{
/**
* Test get_status_from_id() data
*
* @return array
*/
public function get_status_from_id_test_data()
{
return array(
array(1, 'NEW'),
array(2, 'IN_PROGRESS'),
array(3, 'IMPLEMENTED'),
array(4, 'DUPLICATE'),
array(5, 'INVALID'),
);
}
/**
* Test get_status_from_id()
*
* @dataProvider get_status_from_id_test_data
*/
public function test_get_status_from_id($id, $expected)
{
self::assertEquals($expected, \phpbb\ideas\ext::status_name($id));
}
/**
* Test set_status() data
*
* @return array
*/
public function set_status_test_data()
{
return array(
array(1, 1),
array(1, 2),
array(2, 3),
array(2, 4),
array(3, 5),
);
}
/**
* Test set_status()
*
* @dataProvider set_status_test_data
*/
public function test_set_status($idea_id, $status)
{
$object = $this->get_idea_object();
$object->set_status($idea_id, $status);
$idea = $object->get_idea($idea_id);
self::assertEquals($status, $idea['idea_status']);
}
public function set_status_notification_data()
{
return [
[1, 1, [], 'add_notifications'],
[1, 2, [2], 'update_notifications'],
[2, 3, [], 'add_notifications'],
[2, 4, [3], 'update_notifications'],
];
}
/**
* @dataProvider set_status_notification_data
*/
public function test_set_status_notification($idea_id, $status, $notified_users, $expected)
{
$this->notification_manager->expects($this->once())
->method('get_notified_users')
->with(ext::NOTIFICATION_TYPE_STATUS, ['item_id' => $idea_id])
->willReturn($notified_users);
$this->notification_manager->expects($this->once())
->method($expected);
$object = $this->get_idea_object();
$object->set_status($idea_id, $status);
}
/**
* Data for idea attribute tests
*
* @return array
*/
public function idea_attribute_test_data()
{
return array(
array(
array(
'idea_id' => 1,
'idea_author' => 2,
'duplicate_id' => 2,
'rfc_link' => 'https://area51.phpbb.com/phpBB/viewtopic.php?foo&bar',
'implemented_version' => '3.1.0',
'ticket_id' => 1111,
'idea_title' => 'Foo Idea 1',
), true
),
array(
array(
'idea_id' => 2,
'idea_author' => 3,
'duplicate_id' => 1,
'rfc_link' => 'https://area51.phpbb.com/phpBB/viewtopic.php?bar&foo',
'implemented_version' => '3.2.0',
'ticket_id' => 2222,
'idea_title' => 'Foo Idea 2',
), true
),
array(
array(
'idea_id' => 3,
'idea_author' => 4,
'duplicate_id' => '5',
'rfc_link' => '',
'implemented_version' => '',
'ticket_id' => '3333',
'idea_title' => 'Føó Îdéå',
), true
),
array(
array(
'idea_id' => 4,
'idea_author' => '',
'duplicate_id' => 'foo',
'rfc_link' => 'https://www.phpbb.com/phpBB/viewtopic.php?foo',
'implemented_version' => 'foo',
'ticket_id' => 'foo',
'idea_title' => '',
), false
),
array(
array(
'idea_id' => 5,
'idea_author' => 'foo',
'duplicate_id' => array(1),
'rfc_link' => 'foobar',
'implemented_version' => '1',
'ticket_id' => array(1),
'idea_title' => '',
), false
),
);
}
/**
* Test set_duplicate()
*
* @dataProvider idea_attribute_test_data
*/
public function test_set_duplicate($data, $expected)
{
$this->set_attribute_test('set_duplicate', 'duplicate_id', $data, $expected);
}
/**
* Test set_rfc()
*
* @dataProvider idea_attribute_test_data
*/
public function test_set_rfc($data, $expected)
{
$this->set_attribute_test('set_rfc', 'rfc_link', $data, $expected);
}
/**
* Test set_implemented()
*
* @dataProvider idea_attribute_test_data
*/
public function test_set_implemented($data, $expected)
{
$this->set_attribute_test('set_implemented', 'implemented_version', $data, $expected);
}
/**
* Test set_ticket()
*
* @dataProvider idea_attribute_test_data
*/
public function test_set_ticket($data, $expected)
{
$this->set_attribute_test('set_ticket', 'ticket_id', $data, $expected);
}
/**
* Test set_title()
*
* @dataProvider idea_attribute_test_data
*/
public function test_set_title($data, $expected)
{
$this->set_attribute_test('set_title', 'idea_title', $data, $expected);
}
/**
* Test set_author()
*
* @dataProvider idea_attribute_test_data
*/
public function test_set_author($data, $expected)
{
$this->set_attribute_test('set_author', 'idea_author', $data, $expected);
}
/**
* Set attribute test runner
*
* @param string $call The name of the ideas method to call
* @param string $attribute The name of the attribute
* @param array $data The test data array
* @param bool $expected The expected result returned by method
* @return array|false The idea data array, or false if error
*/
public function set_attribute_test($call, $attribute, $data, $expected)
{
$object = $this->get_idea_object();
$result = $object->$call($data['idea_id'], $data[$attribute]);
self::assertEquals($expected, $result);
if ($result)
{
$idea = $object->get_idea($data['idea_id']);
self::assertEquals($data[$attribute], $idea[$attribute]);
return $idea;
}
return false;
}
}