-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSaveEndSummaryTest.php
More file actions
218 lines (197 loc) · 5.64 KB
/
SaveEndSummaryTest.php
File metadata and controls
218 lines (197 loc) · 5.64 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
<?php
/**
* QuizAnswerSummary::saveEndSummary()のテスト
*
* @author Noriko Arai <arai@nii.ac.jp>
* @author AllCreator <info@allcreator.net>
* @link http://www.netcommons.org NetCommons Project
* @license http://www.netcommons.org/license.txt NetCommons License
* @copyright Copyright 2014, NetCommons Project
*/
App::uses('NetCommonsModelTestCase', 'NetCommons.TestSuite');
App::uses('NetCommonsTime', 'NetCommons.Utility');
App::uses('QuizzesComponent', 'Quizzes.Controller/Component');
App::uses('QuizDataGetTest', 'Quizzes.TestSuite');
/**
* QuizAnswerSummary::saveEndSummary()のテスト
*
* @author AllCreator <info@allcreator.net>
* @package NetCommons\Quizzes\Test\Case\Model\QuizAnswerSummary
*/
class QuizAnswerSummarySaveEndSummaryTest extends NetCommonsModelTestCase {
/**
* Fixtures
*
* @var array
*/
public $fixtures = array(
'plugin.quizzes.quiz',
'plugin.quizzes.quiz_answer',
'plugin.quizzes.quiz_answer_summary',
'plugin.quizzes.quiz_choice',
'plugin.quizzes.quiz_correct',
'plugin.quizzes.quiz_frame_display_quiz',
'plugin.quizzes.quiz_frame_setting',
'plugin.quizzes.quiz_page',
'plugin.quizzes.quiz_question',
'plugin.quizzes.block_setting_for_quiz',
'plugin.workflow.workflow_comment',
);
/**
* Plugin name
*
* @var string
*/
public $plugin = 'quizzes';
/**
* Model name
*
* @var string
*/
protected $_modelName = 'QuizAnswerSummary';
/**
* Method name
*
* @var string
*/
protected $_methodName = 'saveEndSummary';
/**
* setUp method
*
* @return void
*/
public function setUp() {
parent::setUp();
Current::$current['Frame']['key'] = 'frame_3';
$model = $this->_modelName;
$mailQueueMock = $this->getMock('MailQueueBehavior',
['setAddEmbedTagValue', 'afterSave']);
$mailQueueMock->expects($this->any())
->method('setAddEmbedTagValue')
->will($this->returnValue(true));
$mailQueueMock->expects($this->any())
->method('afterSave')
->will($this->returnValue(true));
// ClassRegistoryを使ってモックを登録。
// まずremoveObjectしないとaddObjectできないのでremoveObjectする
ClassRegistry::removeObject('MailQueueBehavior');
// addObjectでUploadBehaviorでMockが使われる
ClassRegistry::addObject('MailQueueBehavior', $mailQueueMock);
// このloadではモックがロードされる
$this->$model->Behaviors->load('MailQueue');
$netCommonsTime = new NetCommonsTime();
$nowTime = $netCommonsTime->getNowDatetime();
$this->$model->id = 11;
$this->$model->saveField('answer_start_time', $nowTime);
}
/**
* Saveのテスト
*
* @param array $quiz 小テストデータ
* @param int $summaryId サマリID
* @param array $expected 期待値
* @dataProvider dataProviderSave
* @return void
*/
public function testSave($quiz, $summaryId, $expected) {
$model = $this->_modelName;
$method = $this->_methodName;
$id = $this->$model->$method($quiz, $summaryId);
$summary = $this->$model->findById($id);
if (is_array($expected)) {
foreach ($expected as $key => $val) {
$this->assertEqual($summary['QuizAnswerSummary'][$key], $val);
}
} else {
$this->assertEqual($summary, $expected);
}
}
/**
* Save用DataProvider
*
* ### 戻り値
* - data 登録データ
*
* @return array テストデータ
*/
public function dataProviderSave() {
$dataGet = new QuizDataGetTest();
$quiz = $dataGet->getData(51);
$quiz['Quiz']['passing_grade'] = 5;
$quiz2 = $dataGet->getData(46);
$quiz2['Quiz']['passing_grade'] = 5;
$quiz2['Quiz']['estimated_time'] = 50;
$quiz3 = $dataGet->getData(47);
$results = array();
$results[0] = array(
$quiz, 31, array(
'answer_status' => QuizzesComponent::ACTION_ACT,
'is_grade_finished' => false,
'passing_status' => QuizzesComponent::STATUS_GRADE_YET,
'within_time_status' => QuizzesComponent::STATUS_GRADE_PASS
)
);
$results[1] = array(
$quiz, 99, array()
);
$results[2] = array(
$quiz2, 11, array(
'answer_status' => QuizzesComponent::ACTION_ACT,
'is_grade_finished' => true,
'passing_status' => QuizzesComponent::STATUS_GRADE_PASS,
'within_time_status' => QuizzesComponent::STATUS_GRADE_PASS
)
);
$results[3] = array(
$quiz2, 12, array(
'answer_status' => QuizzesComponent::ACTION_ACT,
'is_grade_finished' => true,
'passing_status' => QuizzesComponent::STATUS_GRADE_FAIL,
'within_time_status' => QuizzesComponent::STATUS_GRADE_FAIL
)
);
$results[4] = array(
$quiz3, 18, array(
'answer_status' => QuizzesComponent::ACTION_ACT,
'is_grade_finished' => true,
'passing_status' => QuizzesComponent::STATUS_GRADE_PASS,
'within_time_status' => QuizzesComponent::STATUS_GRADE_PASS
)
);
return $results;
}
/**
* SaveのExceptionErrorテスト
*
* @param array $quiz 小テストデータ
* @param int $summaryId サマリID
* @param string $mockModel Mockのモデル
* @param string $mockMethod Mockのメソッド
* @dataProvider dataProviderSaveOnExceptionError
* @return void
*/
public function testSaveOnExceptionError($quiz, $summaryId, $mockModel, $mockMethod) {
$model = $this->_modelName;
$method = $this->_methodName;
$this->_mockForReturnFalse($model, $mockModel, $mockMethod);
$this->setExpectedException('InternalErrorException');
$this->$model->$method($quiz, $summaryId);
}
/**
* SaveのExceptionError用DataProvider
*
* ### 戻り値
* - data 登録データ
* - mockModel Mockのモデル
* - mockMethod Mockのメソッド
*
* @return array テストデータ
*/
public function dataProviderSaveOnExceptionError() {
$dataGet = new QuizDataGetTest();
$quiz = $dataGet->getData(51);
return array(
array($quiz, 27, 'Quizzes.QuizAnswerSummary', 'save'),
);
}
}