-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathNetCommonsCurrentLibTestRun.php
More file actions
306 lines (263 loc) · 8.46 KB
/
NetCommonsCurrentLibTestRun.php
File metadata and controls
306 lines (263 loc) · 8.46 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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
<?php
/**
* Currentライブラリテスト群
*
* @author Noriko Arai <arai@nii.ac.jp>
* @author Shohei Nakajima <nakajimashouhei@gmail.com>
* @link http://www.netcommons.org NetCommons Project
* @license http://www.netcommons.org/license.txt NetCommons License
* @copyright Copyright 2014, NetCommons Project
*/
App::uses('NetCommonsCurrentLibTestUtility', 'NetCommons.TestSuite');
App::uses('CurrentLibControllerTestExpectedData', 'NetCommons.Test/Fixture/CurrentLib');
App::uses('CurrentLibControllerTestPostData', 'NetCommons.Test/Fixture/CurrentLib');
/**
* Currentライブラリテスト群
*
* @package NetCommons\NetCommons\TestSuite
* @codeCoverageIgnore
*/
class NetCommonsCurrentLibTestRun {
/**
* 期待値テストクラス
*
* @var CurrentLibControllerTestExpectedData
*/
private $__ExpectedData;
/**
* POSTデータクラス
*
* @var array
*/
private $__PostData;
/**
* Constructor.
*
* @return void
*/
public function __construct() {
$this->__ExpectedData = new CurrentLibControllerTestExpectedData();
$this->__PostData = new CurrentLibControllerTestPostData();
}
/**
* GETテスト
*
* @param ControllerTestCase &$test コントローラテストクラス
* @param string $controller generateするコントローラ
* @param string $url テストするURL
* @param array|false $expects 期待値リスト
* @param string|false $exception Exception文字列
*
* @return void
*/
public function testGetRequest(
ControllerTestCase &$test, $controller, $url, $expects, $exception) {
$test->generate($controller);
NetCommonsCurrentLibTestUtility::testControllerGetRequest(
$test, $url, $expects, $exception
);
}
/**
* パブリックのお知らせページのセッティングモード表示のテスト
*
* @param ControllerTestCase &$test コントローラテストクラス
* @return void
*/
public function testGetRequestAnnouncementPageWithSettingMode(ControllerTestCase &$test) {
$controller = 'Pages.Pages';
$url = '/setting/announcements_page';
$expects = [
'assertContains' => array_merge(
$this->__ExpectedData->getExpectedAnnouncement(['public_1', 'public_2', 'public_3']),
$this->__ExpectedData->getExpectedFrame(['menu']),
$this->__ExpectedData->getExpectedMenuList([
'public', 'private', 'community_1', 'community_2'
]),
$this->__ExpectedData->getExpectedSettingMode('off')
),
'assertNotContains' => [],
'assertRegExp' => array_merge([],
$this->__ExpectedData->getExpectedActiveMenu('public_announcement_page')
),
];
$exception = false;
//セッティングモードON
NetCommonsCurrentLibTestUtility::settingMode(true);
$test->generate($controller);
NetCommonsCurrentLibTestUtility::testControllerGetRequest(
$test, $url, $expects, $exception
);
//セッティングモードのクリア
NetCommonsCurrentLibTestUtility::settingMode(null);
}
/**
* パブリックのお知らせページのセッティングモード表示のテスト
*
* @param ControllerTestCase &$test コントローラテストクラス
* @return void
*/
public function testGetRequestAnnouncementPageWithSettingModeAsRedirectOff(
ControllerTestCase &$test) {
$controller = 'Pages.Pages';
$url = '/setting/announcements_page';
$expects = [
'headers.Location' =>
$this->__ExpectedData->getExpectedRedirectAfterPost('public_announcement_page')
];
$exception = false;
//セッティングモードON
NetCommonsCurrentLibTestUtility::settingMode(true);
$test->generate($controller);
NetCommonsCurrentLibTestUtility::testControllerGetRequest(
$test, $url, $expects, $exception
);
//セッティングモードのクリア
NetCommonsCurrentLibTestUtility::settingMode(null);
}
/**
* ファイルダウンロードテスト
*
* @param ControllerTestCase &$test コントローラテストクラス
* @param string $controller generateするコントローラ
* @param string $url テストするURL
* @param array|false $expects 期待値リスト
* @param string|false $exception Exception文字列
*
* @return void
*/
public function testGetRequestDownload(
ControllerTestCase &$test, $controller, $url, $expects, $exception) {
if (! NetCommonsCurrentLibTestUtility::prepareUploadDir()) {
$test->markTestSkipped();
return;
}
$test->generate($controller);
NetCommonsCurrentLibTestUtility::testControllerGetRequest(
$test, $url, $expects, $exception, true
);
NetCommonsCurrentLibTestUtility::clearUploadDir();
}
/**
* POSTテスト
*
* @param ControllerTestCase &$test コントローラテストクラス
* @param string $controller generateするコントローラ
* @param string $url テストするURL
* @param array $post POSTの内容
* @param array|false $expects 期待値リスト
* @param string|false $exception Exception文字列
*
* @return void
*/
public function testPostRequest(
ControllerTestCase &$test, $controller, $url, $post, $expects, $exception) {
$test->generate($controller, [
'components' => ['Security'],
]);
NetCommonsCurrentLibTestUtility::testControllerPostRequest(
$test, $url, $post, $expects, $exception
);
}
/**
* Frame追加テスト
*
* @param ControllerTestCase &$test コントローラテストクラス
* @param array $post POSTの内容
* @param array|false $expects 期待値
* @param string|false $exception Exception文字列
* @return void
*/
public function testPostRequestFrameAdd(
ControllerTestCase &$test, $post, $expects, $exception) {
$controller = 'Frames.Frames';
$url = '/frames/frames/add';
$test->generate($controller, [
'components' => ['Security'],
]);
NetCommonsCurrentLibTestUtility::testControllerPostRequest(
$test, $url, $post, $expects, $exception
);
}
/**
* Frame編集テスト
*
* @param ControllerTestCase &$test コントローラテストクラス
* @param array|false $expects 期待値
* @param string|false $exception Exception文字列
* @return void
*/
public function testPostRequestFrameEdit(ControllerTestCase &$test, $expects, $exception) {
$controller = 'Frames.Frames';
$url = '/frames/frames/edit';
$post = $this->__PostData->getPostDataByFrameEdit();
$test->generate($controller, [
'components' => ['Security'],
]);
NetCommonsCurrentLibTestUtility::testControllerPostRequest(
$test, $url, $post, $expects, $exception
);
}
/**
* Frame削除テスト
*
* @param ControllerTestCase &$test コントローラテストクラス
* @param array|false $expects 期待値
* @param string|false $exception Exception文字列
* @return void
*/
public function testPostRequestFrameDelete(
ControllerTestCase &$test, $expects, $exception) {
$controller = 'Frames.Frames';
$url = '/frames/frames/delete';
$post = $this->__PostData->getPostDataByFrameDelete();
$_SERVER['HTTP_REFERER'] = Configure::read('App.fullBaseUrl') . '/setting/announcements_page';
$test->generate($controller, [
'components' => ['Security'],
]);
NetCommonsCurrentLibTestUtility::testControllerPostRequest(
$test, $url, $post, $expects, $exception
);
unset($_SERVER['HTTP_REFERER']);
}
/**
* Wysiwygのアップロードテスト
*
* @param ControllerTestCase &$test コントローラテストクラス
* @param string $controller generateするコントローラ
* @param string $url テストするURL
* @param array $post POSTの内容
* @param array|false $expects 期待値リスト
* @param string|false $exception Exception文字列
*
* @return void
*/
public function testPostRequestWysiwygUploads(
ControllerTestCase &$test, $controller, $url, $post, $expects, $exception) {
if (! NetCommonsCurrentLibTestUtility::prepareUploadDir()) {
$test->markTestSkipped();
return;
}
$_FILES = $post['_FILES'];
$test->generate($controller, [
'components' => [
'Security',
'Wysiwyg.Wysiwyg' => ['isUploadedFile'],
'Files.FileUpload' => ['getTemporaryUploadFile']
],
]);
$test->controller->Wysiwyg->expects($test->once())
->method('isUploadedFile')
->will($test->returnValue(true));
$TmpUploadFile = NetCommonsCurrentLibTestUtility::getTemporaryFileMock($post['_fileInfo']);
$test->controller->FileUpload
->expects($test->once())->method('getTemporaryUploadFile')
->with('Wysiwyg.file')
->will($test->returnValue($TmpUploadFile));
unset($post['_FILES'], $post['_fileInfo']);
NetCommonsCurrentLibTestUtility::testJsonControllerPostRequest(
$test, $url, $post, $expects, $exception
);
unset($_FILES);
NetCommonsCurrentLibTestUtility::clearUploadDir();
}
}