-
-
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.
* Migrate Search tests * Fix test :/ * phpunit conversions * Fix tests * Use same instructions everywhere * Fix SessionTest * Revert session tests conversion. * Fix static SO issue * Fix CronTask tests
- Loading branch information
Showing
35 changed files
with
2,607 additions
and
2,003 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,258 @@ | ||
<?php | ||
|
||
/** | ||
* --------------------------------------------------------------------- | ||
* | ||
* GLPI - Gestionnaire Libre de Parc Informatique | ||
* | ||
* http://glpi-project.org | ||
* | ||
* @copyright 2015-2024 Teclib' and contributors. | ||
* @copyright 2003-2014 by the INDEPNET Development Team. | ||
* @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/>. | ||
* | ||
* --------------------------------------------------------------------- | ||
*/ | ||
|
||
/** | ||
* Helper class to configurate rule creation in DbTestCase::createRule() | ||
*/ | ||
class RuleBuilder | ||
{ | ||
/** | ||
* @property string $name Rule name | ||
*/ | ||
protected string $name; | ||
|
||
/** | ||
* @property string $operator 'AND' or 'OR' | ||
*/ | ||
protected string $operator; | ||
|
||
/** | ||
* @property int $condition RuleTicket::ONADD and/or RuleTicket::ONUPDATE (bitmask) | ||
*/ | ||
protected int $condition; | ||
|
||
/** | ||
* @property bool $is_recursive | ||
*/ | ||
protected bool $is_recursive; | ||
|
||
/** | ||
* @property int $entities_id | ||
*/ | ||
protected int $entities_id; | ||
|
||
/** | ||
* @property array $criteria | ||
*/ | ||
protected array $criteria; | ||
|
||
/** | ||
* @property array $actions | ||
*/ | ||
protected array $actions; | ||
|
||
/** | ||
* @param string $name Rule name | ||
*/ | ||
public function __construct(string $name) | ||
{ | ||
$this->name = $name; | ||
|
||
// Default values | ||
$this->operator = "AND"; | ||
$this->condition = RuleTicket::ONADD | RuleTicket::ONUPDATE; | ||
$this->is_recursive = true; | ||
$this->entities_id = getItemByTypeName(Entity::class, '_test_root_entity', true); | ||
$this->criteria = []; | ||
$this->actions = []; | ||
} | ||
|
||
/** | ||
* Set condition | ||
* | ||
* @param string $operator RuleTicket::ONADD and/or RuleTicket::ONUPDATE | ||
* | ||
* @return self | ||
*/ | ||
public function setCondtion(int $condition): self | ||
{ | ||
$this->condition = $condition; | ||
return $this; | ||
} | ||
|
||
/** | ||
* Set operator | ||
* | ||
* @param string $operator 'AND' or 'OR' | ||
* | ||
* @return self | ||
*/ | ||
public function setOperator(string $operator): self | ||
{ | ||
$this->operator = $operator; | ||
return $this; | ||
} | ||
|
||
/** | ||
* Set entity configuration | ||
* | ||
* @param bool $is_recursive | ||
* | ||
* @return self | ||
*/ | ||
public function setIsRecursive(int $is_recursive): self | ||
{ | ||
$this->is_recursive = $is_recursive; | ||
return $this; | ||
} | ||
|
||
/** | ||
* Set entity configuration | ||
* | ||
* @param int $entities_id | ||
* | ||
* @return self | ||
*/ | ||
public function setEntity(int $entities_id): self | ||
{ | ||
$this->entities_id = $entities_id; | ||
return $this; | ||
} | ||
|
||
/** | ||
* Add criteria | ||
* | ||
* @param string $criteria | ||
* @param int $condition Rule::PATTERN_IS, ... | ||
* @param mixed $pattern | ||
* | ||
* @return self | ||
*/ | ||
public function addCriteria( | ||
string $criteria, | ||
int $condition, | ||
$pattern | ||
): self { | ||
$this->criteria[] = [ | ||
'criteria' => $criteria, | ||
'condition' => $condition, | ||
'pattern' => $pattern, | ||
]; | ||
return $this; | ||
} | ||
|
||
/** | ||
* Add action | ||
* | ||
* @param string $action_type | ||
* @param string $field | ||
* @param mixed $value | ||
* | ||
* @return self | ||
*/ | ||
public function addAction( | ||
string $action_type, | ||
string $field, | ||
$value | ||
): self { | ||
$this->actions[] = [ | ||
'action_type' => $action_type, | ||
'field' => $field, | ||
'value' => $value, | ||
]; | ||
return $this; | ||
} | ||
|
||
|
||
/** | ||
* Get rule name | ||
* | ||
* @return string Rule name | ||
*/ | ||
public function getName(): string | ||
{ | ||
return $this->name; | ||
} | ||
|
||
/** | ||
* Get rule operator | ||
* | ||
* @return string 'AND' or 'OR' | ||
*/ | ||
public function getOperator(): string | ||
{ | ||
return $this->operator; | ||
} | ||
|
||
/** | ||
* Get rule condition | ||
* | ||
* @return int RuleTicket::ONADD and/or RuleTicket::ONUPDATE (bitmask) | ||
*/ | ||
public function getCondition(): int | ||
{ | ||
return $this->condition; | ||
} | ||
|
||
/** | ||
* Get rule entity configuration | ||
* | ||
* @return bool | ||
*/ | ||
public function isRecursive(): bool | ||
{ | ||
return $this->is_recursive; | ||
} | ||
|
||
/** | ||
* Get rule entity configuration | ||
* | ||
* @return int | ||
*/ | ||
public function getEntity(): int | ||
{ | ||
return $this->entities_id; | ||
} | ||
|
||
/** | ||
* Get rule criteria | ||
* | ||
* @return array | ||
*/ | ||
public function getCriteria(): array | ||
{ | ||
return $this->criteria; | ||
} | ||
|
||
/** | ||
* Get rule actions | ||
* | ||
* @return array | ||
*/ | ||
public function getActions(): array | ||
{ | ||
return $this->actions; | ||
} | ||
} |
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
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
Oops, something went wrong.