-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(forms): Add new strategies for ITILActorField fields
- Loading branch information
Showing
11 changed files
with
1,098 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,335 @@ | ||
<?php | ||
|
||
/** | ||
* --------------------------------------------------------------------- | ||
* | ||
* GLPI - Gestionnaire Libre de Parc Informatique | ||
* | ||
* http://glpi-project.org | ||
* | ||
* @copyright 2015-2025 Teclib' and contributors. | ||
* @licence https://www.gnu.org/licenses/gpl-3.0.html | ||
* | ||
* --------------------------------------------------------------------- | ||
* | ||
* LICENSE | ||
* | ||
* This file is part of GLPI. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
* | ||
* --------------------------------------------------------------------- | ||
*/ | ||
|
||
namespace tests\units\Glpi\Form\Destination\CommonITILField; | ||
|
||
use Computer; | ||
use DbTestCase; | ||
use Glpi\Form\Destination\CommonITILField\ITILActorFieldConfig; | ||
use Glpi\Form\Destination\CommonITILField\ITILActorFieldStrategy; | ||
use Glpi\Form\Destination\FormDestinationTicket; | ||
use Glpi\Form\Form; | ||
use Glpi\Form\QuestionType\QuestionTypeItem; | ||
use Glpi\Form\QuestionType\QuestionTypeItemExtraDataConfig; | ||
use Glpi\Tests\FormBuilder; | ||
use Glpi\Tests\FormTesterTrait; | ||
use Group; | ||
use User; | ||
|
||
abstract class AbstractActorFieldTest extends DbTestCase | ||
{ | ||
use FormTesterTrait; | ||
|
||
abstract protected function sendFormAndAssertTicketActors( | ||
Form $form, | ||
ITILActorFieldConfig $config, | ||
array $answers, | ||
array $expected_actors_ids | ||
); | ||
|
||
abstract public function getFieldClass(): string; | ||
|
||
public function testUserActorsFromSpecificItemQuestions(): void | ||
{ | ||
// Login is required to assign actors | ||
$this->login(); | ||
|
||
$field_inst = new ($this->getFieldClass())(); | ||
$config_class = $field_inst->getConfigClass(); | ||
|
||
$form = $this->createAndGetFormWithItemQuestions(); | ||
$config = new $config_class( | ||
strategies: [ITILActorFieldStrategy::USER_FROM_OBJECT_ANSWER], | ||
specific_question_ids: [$this->getQuestionId($form, "Computer question")] | ||
); | ||
$users = $this->createItems(User::class, [ | ||
['name' => 'testUserActorsFromSpecificItemQuestions User 1'], | ||
['name' => 'testUserActorsFromSpecificItemQuestions User 2'], | ||
]); | ||
$computers = $this->createItems(Computer::class, [ | ||
[ | ||
'name' => 'testUserActorsFromSpecificItemQuestions Computer 1', | ||
'entities_id' => $this->getTestRootEntity(true), | ||
'users_id_tech' => $users[0]->getID() | ||
], | ||
[ | ||
'name' => 'testUserActorsFromSpecificItemQuestions Computer 2', | ||
'entities_id' => $this->getTestRootEntity(true), | ||
'users_id' => $users[1]->getID() | ||
], | ||
]); | ||
|
||
// No answers | ||
$this->sendFormAndAssertTicketActors( | ||
form: $form, | ||
config: $config, | ||
answers: [], | ||
expected_actors_ids: [] | ||
); | ||
|
||
// Answer with first computer | ||
$this->sendFormAndAssertTicketActors( | ||
form: $form, | ||
config: $config, | ||
answers: [ | ||
'Computer question' => [ | ||
'itemtype' => Computer::class, | ||
'items_id' => $computers[0]->getID(), | ||
] | ||
], | ||
expected_actors_ids: [] | ||
); | ||
|
||
// Answer with second computer | ||
$this->sendFormAndAssertTicketActors( | ||
form: $form, | ||
config: $config, | ||
answers: [ | ||
'Computer question' => [ | ||
'itemtype' => Computer::class, | ||
'items_id' => $computers[1]->getID(), | ||
] | ||
], | ||
expected_actors_ids: [$users[1]->getID()] | ||
); | ||
} | ||
|
||
public function testTechUserActorsFromSpecificItemQuestions(): void | ||
{ | ||
// Login is required to assign actors | ||
$this->login(); | ||
|
||
$field_inst = new ($this->getFieldClass())(); | ||
$config_class = $field_inst->getConfigClass(); | ||
|
||
$form = $this->createAndGetFormWithItemQuestions(); | ||
$config = new $config_class( | ||
strategies: [ITILActorFieldStrategy::TECH_USER_FROM_OBJECT_ANSWER], | ||
specific_question_ids: [$this->getQuestionId($form, "Computer question")] | ||
); | ||
$users = $this->createItems(User::class, [ | ||
['name' => 'testTechUserActorsFromSpecificItemQuestions User 1'], | ||
['name' => 'testTechUserActorsFromSpecificItemQuestions User 2'], | ||
]); | ||
$computers = $this->createItems(Computer::class, [ | ||
[ | ||
'name' => 'testTechUserActorsFromSpecificItemQuestions Computer 1', | ||
'entities_id' => $this->getTestRootEntity(true), | ||
'users_id_tech' => $users[0]->getID() | ||
], | ||
[ | ||
'name' => 'testTechUserActorsFromSpecificItemQuestions Computer 2', | ||
'entities_id' => $this->getTestRootEntity(true), | ||
'users_id' => $users[1]->getID() | ||
], | ||
]); | ||
|
||
// No answers | ||
$this->sendFormAndAssertTicketActors( | ||
form: $form, | ||
config: $config, | ||
answers: [], | ||
expected_actors_ids: [] | ||
); | ||
|
||
// Answer with first computer | ||
$this->sendFormAndAssertTicketActors( | ||
form: $form, | ||
config: $config, | ||
answers: [ | ||
'Computer question' => [ | ||
'itemtype' => Computer::class, | ||
'items_id' => $computers[0]->getID(), | ||
] | ||
], | ||
expected_actors_ids: [$users[0]->getID()] | ||
); | ||
|
||
// Answer with second computer | ||
$this->sendFormAndAssertTicketActors( | ||
form: $form, | ||
config: $config, | ||
answers: [ | ||
'Computer question' => [ | ||
'itemtype' => Computer::class, | ||
'items_id' => $computers[1]->getID(), | ||
] | ||
], | ||
expected_actors_ids: [] | ||
); | ||
} | ||
|
||
public function testGroupActorsFromSpecificItemQuestions(): void | ||
{ | ||
// Login is required to assign actors | ||
$this->login(); | ||
|
||
$field_inst = new ($this->getFieldClass())(); | ||
$config_class = $field_inst->getConfigClass(); | ||
|
||
$form = $this->createAndGetFormWithItemQuestions(); | ||
$config = new $config_class( | ||
strategies: [ITILActorFieldStrategy::GROUP_FROM_OBJECT_ANSWER], | ||
specific_question_ids: [$this->getQuestionId($form, "Computer question")] | ||
); | ||
$groups = $this->createItems(Group::class, [ | ||
['name' => 'testGroupActorsFromSpecificItemQuestions Group 1'], | ||
['name' => 'testGroupActorsFromSpecificItemQuestions Group 2'], | ||
]); | ||
$computers = $this->createItems(Computer::class, [ | ||
[ | ||
'name' => 'testGroupActorsFromSpecificItemQuestions Computer 1', | ||
'entities_id' => $this->getTestRootEntity(true), | ||
'_groups_id' => [$groups[0]->getID()] | ||
], | ||
[ | ||
'name' => 'testGroupActorsFromSpecificItemQuestions Computer 2', | ||
'entities_id' => $this->getTestRootEntity(true), | ||
'_groups_id_tech' => [$groups[1]->getID()] | ||
], | ||
]); | ||
|
||
// No answers | ||
$this->sendFormAndAssertTicketActors( | ||
form: $form, | ||
config: $config, | ||
answers: [], | ||
expected_actors_ids: [] | ||
); | ||
|
||
// Answer with first computer | ||
$this->sendFormAndAssertTicketActors( | ||
form: $form, | ||
config: $config, | ||
answers: [ | ||
'Computer question' => [ | ||
'itemtype' => Computer::class, | ||
'items_id' => $computers[0]->getID(), | ||
] | ||
], | ||
expected_actors_ids: [$groups[0]->getID()] | ||
); | ||
|
||
// Answer with second computer | ||
$this->sendFormAndAssertTicketActors( | ||
form: $form, | ||
config: $config, | ||
answers: [ | ||
'Computer question' => [ | ||
'itemtype' => Computer::class, | ||
'items_id' => $computers[1]->getID(), | ||
] | ||
], | ||
expected_actors_ids: [] | ||
); | ||
} | ||
|
||
public function testTechGroupActorsFromSpecificItemQuestions(): void | ||
{ | ||
// Login is required to assign actors | ||
$this->login(); | ||
|
||
$field_inst = new ($this->getFieldClass())(); | ||
$config_class = $field_inst->getConfigClass(); | ||
|
||
$form = $this->createAndGetFormWithItemQuestions(); | ||
$config = new $config_class( | ||
strategies: [ITILActorFieldStrategy::TECH_GROUP_FROM_OBJECT_ANSWER], | ||
specific_question_ids: [$this->getQuestionId($form, 'Computer question')] | ||
); | ||
$groups = $this->createItems(Group::class, [ | ||
['name' => 'testGroupActorsFromSpecificItemQuestions Group 1'], | ||
['name' => 'testGroupActorsFromSpecificItemQuestions Group 2'], | ||
]); | ||
$computers = $this->createItems(Computer::class, [ | ||
[ | ||
'name' => 'testGroupActorsFromSpecificItemQuestions Computer 1', | ||
'entities_id' => $this->getTestRootEntity(true), | ||
'_groups_id' => [$groups[0]->getID()] | ||
], | ||
[ | ||
'name' => 'testGroupActorsFromSpecificItemQuestions Computer 2', | ||
'entities_id' => $this->getTestRootEntity(true), | ||
'_groups_id_tech' => [$groups[1]->getID()] | ||
], | ||
]); | ||
|
||
// No answers | ||
$this->sendFormAndAssertTicketActors( | ||
form: $form, | ||
config: $config, | ||
answers: [], | ||
expected_actors_ids: [] | ||
); | ||
|
||
// Answer with first computer | ||
$this->sendFormAndAssertTicketActors( | ||
form: $form, | ||
config: $config, | ||
answers: [ | ||
'Computer question' => [ | ||
'itemtype' => Computer::class, | ||
'items_id' => $computers[0]->getID(), | ||
] | ||
], | ||
expected_actors_ids: [] | ||
); | ||
|
||
// Answer with second computer | ||
$this->sendFormAndAssertTicketActors( | ||
form: $form, | ||
config: $config, | ||
answers: [ | ||
'Computer question' => [ | ||
'itemtype' => Computer::class, | ||
'items_id' => $computers[1]->getID(), | ||
] | ||
], | ||
expected_actors_ids: [$groups[1]->getID()] | ||
); | ||
} | ||
|
||
private function createAndGetFormWithItemQuestions(): Form | ||
{ | ||
$builder = new FormBuilder(); | ||
$builder->addQuestion( | ||
'Computer question', | ||
QuestionTypeItem::class, | ||
'', | ||
json_encode((new QuestionTypeItemExtraDataConfig(Computer::class))->jsonSerialize()) | ||
); | ||
|
||
return $this->createForm($builder); | ||
} | ||
} |
Oops, something went wrong.