38 $this->storage = array();
50 require_once
'Services/Administration/classes/class.ilSetting.php';
51 $settingsMock = $this->getMockBuilder(
'ilSetting')->disableOriginalConstructor()->onlyMethods(array(
'set',
'get',
'delete'))->getMock();
53 $settingsMock->expects($this->any())->method(
'set')->will(
54 $this->returnCallback(
function (
$key, $value) {
55 $this->storage[
$key] = $value;
59 $settingsMock->expects($this->any())->method(
'get')->will(
60 $this->returnCallback(
function (
$key, $value) {
61 return $this->storage[
$key] ?? $value;
65 $settingsMock->expects($this->any())->method(
'delete')->will(
66 $this->returnCallback(
function (
$key, $value) {
67 if (isset($this->storage[
$key])) {
68 unset($this->storage[$key]);
73 $valueToTest = $preCallback($value);
75 $registry = new \ilAssQuestionSkillAssignmentRegistry($settingsMock);
76 $registry->setChunkSize($chunkSize);
77 $registry->setStringifiedImports(self::TEST_KEY, $valueToTest);
78 $actual = $registry->getStringifiedImports(self::TEST_KEY);
80 $this->assertEquals($valueToTest, $actual);
81 $this->assertEquals($value, $postCallback($actual));
89 require_once
'Services/Administration/classes/class.ilSetting.php';
90 $settingsMock = $this->getMockBuilder(
'ilSetting')->disableOriginalConstructor()->onlyMethods(array(
'set',
'get',
'delete'))->getMock();
93 $registry = new \ilAssQuestionSkillAssignmentRegistry($settingsMock);
94 $registry->setChunkSize(
"a");
95 $this->fail(
"Failed asserting that exception of type \"InvalidArgumentException\" is thrown.");
100 $registry = new \ilAssQuestionSkillAssignmentRegistry($settingsMock);
101 $registry->setChunkSize(-5);
102 $this->fail(
"Failed asserting that exception of type \"InvalidArgumentException\" is thrown.");
116 require_once
'Modules/TestQuestionPool/classes/questions/class.ilAssQuestionSkillAssignmentImportList.php';
117 require_once
'Modules/TestQuestionPool/classes/questions/class.ilAssQuestionSkillAssignmentImport.php';
118 require_once
'Modules/TestQuestionPool/classes/class.ilAssQuestionSkillAssignment.php';
119 $assignmentList = new \ilAssQuestionSkillAssignmentImportList();
121 for (
$i = 0;
$i < 5;
$i++) {
122 $assignment = new \ilAssQuestionSkillAssignmentImport();
124 $assignment->setImportSkillTitle(
'phpunit' .
$i);
125 $assignment->setImportSkillPath(
'phpunit' .
$i);
126 $random = new \ilRandom();
127 $assignment->setSkillPoints($random->int(0, PHP_INT_MAX));
128 $assignment->setImportQuestionId($random->int(0, PHP_INT_MAX));
129 $assignment->setImportSkillBaseId($random->int(0, PHP_INT_MAX));
130 $assignment->setImportSkillTrefId($random->int(0, PHP_INT_MAX));
132 $assignmentList->addAssignment($assignment);
136 array(
"This is a Test", 2),
137 array(array(
"üäöÖÜÄÖß"), 2),
138 array(
"This is a Test with a huge chunk size", 10000),
139 array($assignmentList, 7)
142 foreach ($rawData as $rawItem) {
144 $rawItem[0], $rawItem[1], $pre, $post
156 $pre =
function ($value) {
157 return \serialize($value);
160 $post =
function ($value) {
161 return \unserialize($value);
getTestData(callable $pre, callable $post)
testSkillAssignmentsCanBetStoredAndFetchedBySerializationStrategy($value, $chunkSize, callable $preCallback, callable $postCallback)
serializedData
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const EVAL_MODE_BY_QUESTION_SOLUTION
testInvalidChunkSizeWillRaiseException()