Compare commits
7 Commits
9862e65ea9
...
f9654bcd78
Author | SHA1 | Date | |
---|---|---|---|
|
f9654bcd78 | ||
4852de71c7 | |||
|
fdf00d5c95 | ||
a4aa8444e3 | |||
a228ea5554 | |||
c29a480401 | |||
56bc7b83dd |
@ -56,10 +56,10 @@ class OCActorRevisionRevertForm extends ConfirmFormBase {
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public static function create(ContainerInterface $container) {
|
||||
return new static(
|
||||
$container->get('entity.manager')->getStorage('oc_actor'),
|
||||
$container->get('date.formatter')
|
||||
);
|
||||
return new static($container
|
||||
->get('entity_type.manager')
|
||||
->getStorage('oc_actor'), $container
|
||||
->get('date.formatter'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -41,7 +41,7 @@ class OCOrganisationRevisionRevertForm extends ConfirmFormBase {
|
||||
*/
|
||||
public static function create(ContainerInterface $container) {
|
||||
$instance = parent::create($container);
|
||||
$instance->oCOrganisationStorage = $container->get('entity_type.manager')->getStorage('oc_organisation');
|
||||
$instance->OCOrganisationStorage = $container->get('entity_type.manager')->getStorage('oc_organisation');
|
||||
$instance->dateFormatter = $container->get('date.formatter');
|
||||
return $instance;
|
||||
}
|
||||
|
@ -31,7 +31,10 @@ final class TimeBasedFieldUpdater {
|
||||
$query = $this->entityTypeManager->getStorage($this->entity_type)->getQuery();
|
||||
$conditions[] = [$this->date_field, date($this->date_format, strtotime('-'.$time_elapsed)), "<"];
|
||||
$conditions[] = ['type', $this->bundle, '='];
|
||||
$this->utils->addConditionsToQuery($query, $conditions);
|
||||
|
||||
foreach ($conditions as $condition) {
|
||||
$query->condition($condition[0], $condition[1], $condition[2] ?? "=");
|
||||
}
|
||||
foreach($query->execute() as $id) {
|
||||
$this->updateEntity($id, $new_values);
|
||||
}
|
||||
|
@ -3,10 +3,8 @@
|
||||
namespace Drupal\opencase;
|
||||
|
||||
use \Drupal;
|
||||
use Drupal\Core\Entity\EntityTypeManager;
|
||||
use Drupal\Core\Entity\Query\QueryInterface;
|
||||
use Drupal\Core\Entity\EntityTypeManagerInterface;
|
||||
use RuntimeException;
|
||||
|
||||
class Utils {
|
||||
|
||||
@ -19,15 +17,6 @@ class Utils {
|
||||
$this->entityTypeManager = $entityTypeManager;
|
||||
}
|
||||
|
||||
public function addConditionsToQuery(QueryInterface $query, array $conditions): void {
|
||||
foreach($conditions as $condition) {
|
||||
$field = $condition[0];
|
||||
$value = $condition[1];
|
||||
$operator = isset($condition[2]) ? $condition[2] : "=";
|
||||
$query->condition($field, $value, $operator);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Utility: find term by name and vid.
|
||||
*
|
||||
|
40
tests/src/Unit/OCActorRevisionRevertFormTest.php
Normal file
40
tests/src/Unit/OCActorRevisionRevertFormTest.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php declare(strict_types = 1);
|
||||
|
||||
namespace Drupal\Tests\opencase\Unit;
|
||||
|
||||
use Drupal\opencase_entities\Form\OCActorRevisionRevertForm;
|
||||
use Drupal\Tests\UnitTestCase;
|
||||
use Drupal\Core\Form\FormState;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Symfony\Component\HttpFoundation\RequestStack;
|
||||
use Drupal\Core\DependencyInjection\ContainerBuilder;
|
||||
|
||||
class OCActorRevisionRevertFormTest extends UnitTestCase{
|
||||
public function setUp(): void {
|
||||
$container = new ContainerBuilder();
|
||||
$entityTypeManager = $this->getMockBuilder('\\Drupal\\Core\\Entity\\EntityTypeManager')->disableOriginalConstructor()->getMock();
|
||||
$dateFormatter = $this->getMockBuilder('\\Drupal\\Core\\Datetime\\DateFormatterInterface')->disableOriginalConstructor()->getMock();
|
||||
$storage = $this->getMockBuilder('\\Drupal\\Core\\Entity\\EntityStorageInterface')->disableOriginalConstructor()->getMock();
|
||||
$revision = $this->getMockBuilder('\\Drupal\\opencase_entities\\Entity\OCActor')->disableOriginalConstructor()->getMock();
|
||||
$request = new Request([], [], [], [], [], [], [], json_encode([
|
||||
'foo' => 'bar'
|
||||
]));
|
||||
$requestStack = new RequestStack();
|
||||
$requestStack->push($request);
|
||||
$dateFormatter->method('format');
|
||||
$container->set('entity_type.manager', $entityTypeManager);
|
||||
$container->set('date.formatter', $dateFormatter);
|
||||
$entityTypeManager->method('getStorage')->willReturn($storage);
|
||||
$storage->method('loadRevision')->willReturn($revision);
|
||||
$container->set('string_translation', self::getStringTranslationStub());
|
||||
$container->set('request_stack', $requestStack);
|
||||
\Drupal::setContainer($container);
|
||||
$this->reverter = OCActorRevisionRevertForm::create($container);
|
||||
}
|
||||
|
||||
public function testBuildForm():void {
|
||||
$form = [];
|
||||
$this->assertTrue(is_array($this->reverter->buildForm($form, new FormState())));
|
||||
}
|
||||
|
||||
}
|
40
tests/src/Unit/OCOrganisationRevisionRevertFormTest.php
Normal file
40
tests/src/Unit/OCOrganisationRevisionRevertFormTest.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php declare(strict_types = 1);
|
||||
|
||||
namespace Drupal\Tests\opencase\Unit;
|
||||
|
||||
use Drupal\Tests\UnitTestCase;
|
||||
use Drupal\Core\Form\FormState;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Symfony\Component\HttpFoundation\RequestStack;
|
||||
use Drupal\Core\DependencyInjection\ContainerBuilder;
|
||||
use Drupal\opencase_entities\Form\OCOrganisationRevisionRevertForm;
|
||||
|
||||
class OCOrganisationRevisionRevertFormTest extends UnitTestCase{
|
||||
public function setUp(): void {
|
||||
$container = new ContainerBuilder();
|
||||
$entityTypeManager = $this->getMockBuilder('\\Drupal\\Core\\Entity\\EntityTypeManager')->disableOriginalConstructor()->getMock();
|
||||
$dateFormatter = $this->getMockBuilder('\\Drupal\\Core\\Datetime\\DateFormatterInterface')->disableOriginalConstructor()->getMock();
|
||||
$storage = $this->getMockBuilder('\\Drupal\\Core\\Entity\\EntityStorageInterface')->disableOriginalConstructor()->getMock();
|
||||
$revision = $this->getMockBuilder('\\Drupal\\opencase_entities\\Entity\OCOrganisation')->disableOriginalConstructor()->getMock();
|
||||
$request = new Request([], [], [], [], [], [], [], json_encode([
|
||||
'foo' => 'bar'
|
||||
]));
|
||||
$requestStack = new RequestStack();
|
||||
$requestStack->push($request);
|
||||
$dateFormatter->method('format');
|
||||
$container->set('entity_type.manager', $entityTypeManager);
|
||||
$container->set('date.formatter', $dateFormatter);
|
||||
$entityTypeManager->method('getStorage')->willReturn($storage);
|
||||
$storage->method('loadRevision')->willReturn($revision);
|
||||
$container->set('string_translation', self::getStringTranslationStub());
|
||||
$container->set('request_stack', $requestStack);
|
||||
\Drupal::setContainer($container);
|
||||
$this->reverter = OCOrganisationRevisionRevertForm::create($container);
|
||||
}
|
||||
|
||||
public function testBuildForm():void {
|
||||
$form = [];
|
||||
$this->assertTrue(is_array($this->reverter->buildForm($form, new FormState())));
|
||||
}
|
||||
|
||||
}
|
@ -48,13 +48,13 @@ class TimeBasedFieldUpdaterTest extends UnitTestCase{
|
||||
|
||||
function testBundleAndDateAndExtraConditionsAreAllAddedAsQueryConditions(): void {
|
||||
$this->query->method('execute')->willReturn([]);
|
||||
$expected_conditions= [
|
||||
|
||||
$this->query->expects($this->exactly(4))->method('condition')->withConsecutive(
|
||||
['dummy_field', 'dummy_value', '<'],
|
||||
['dummy_field_2', 'dummy_value_2', '='],
|
||||
['dummy_date_field', date('Y-m-d', strtotime('- 3 months')), "<"],
|
||||
['type', 'dummy_bundle', '=']
|
||||
];
|
||||
$this->utils->expects($this->once())->method('addConditionsToQuery')->with($this->query, $expected_conditions);
|
||||
['type', 'dummy_bundle', '=']);
|
||||
|
||||
$this->updater->update([['dummy_field', 'dummy_value', '<'], ['dummy_field_2', 'dummy_value_2', '='] ], '3 months', ['dummy_field' => 4]);
|
||||
}
|
||||
}
|
@ -16,20 +16,10 @@ class UtilsTest extends UnitTestCase{
|
||||
}
|
||||
|
||||
public function testGetTidByNameGetsTid():void {
|
||||
$this->entityTypeManager->method('getStorage')->willReturn($this->storage);
|
||||
$term_entity = $this->getMockBuilder('\\Drupal\\Core\\Entity\\EntityBase')->disableOriginalConstructor()->getMock();
|
||||
$term_entity->expects($this->once())->method('id')->willReturn('3');
|
||||
$this->storage->expects($this->once())->method('loadByProperties')->with(['name' => 'foo', 'vid' => 'bar'])
|
||||
->willReturn([$term_entity]);
|
||||
$this->assertEquals($this->utils->getTidByName('foo', 'bar'), 3);
|
||||
}
|
||||
public function testAddConditionToQueryAddsEqualsIfNoOperatorProvided():void {
|
||||
$this->query->expects($this->exactly(1))->method('condition')->with("1", "2", "=");
|
||||
$this->utils->addConditionsToQuery($this->query, [["1","2"]]);
|
||||
|
||||
}
|
||||
public function testAddConditionToQueryAddsTheRightAmountOfConditions():void {
|
||||
$this->query->expects($this->exactly(4))->method('condition');
|
||||
$this->utils->addConditionsToQuery($this->query, [["1","2","3"], ["lk", "n", "kk"], ['sfd', 'ds', 'fds'], ["1","2","3"]]);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user