Skip to content

Commit

Permalink
Fix: Don't reset contractual base on production entities
Browse files Browse the repository at this point in the history
Prior to this change, when a change request was sent, the contractualBase would be set to null, because it is not present in the form.
This change updates the contractual base if necessary on update.

The expected behaviour is:
When the field is not present, add it with the correct value
When the field is present and the value is incorrect update it
When the field is present and the value is correct, leave it untouched

Resolves #1343
  • Loading branch information
johanib committed Jan 14, 2025
1 parent 435f5ad commit 44e7425
Show file tree
Hide file tree
Showing 3 changed files with 183 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Checkout openconext-devconf
uses: actions/checkout@v4
with:
with:
path: OpenConext-devconf
repository: OpenConext/OpenConext-devconf

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
use Surfnet\ServiceProviderDashboard\Application\Service\TicketService;
use Surfnet\ServiceProviderDashboard\Domain\Entity\Entity\JiraTicketNumber;
use Surfnet\ServiceProviderDashboard\Domain\Repository\EntityChangeRequestRepository;
use Surfnet\ServiceProviderDashboard\Domain\Service\ContractualBaseService;
use Surfnet\ServiceProviderDashboard\Infrastructure\HttpClient\Exceptions\RuntimeException\PublishMetadataException;
use Symfony\Component\HttpFoundation\RequestStack;

Expand All @@ -41,6 +42,7 @@ class EntityChangeRequestCommandHandler implements CommandHandler

public function __construct(
private readonly EntityChangeRequestRepository $repository,
private readonly ContractualBaseService $contractualBaseHelper,
private readonly EntityServiceInterface $entityService,
private readonly TicketService $ticketService,
private readonly RequestStack $requestStack,
Expand Down Expand Up @@ -72,6 +74,7 @@ public function handle(PublishProductionCommandInterface $command): void
$entity->getMetaData()->getNameEn()
)
);
$this->contractualBaseHelper->writeContractualBase($entity);
// Create the Jira ticket (we need the ticket id for the revision notes in manage later on)
$ticket = $this->ticketService->createJiraTicket(
$entity,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,179 @@
<?php

/**
* Copyright 2024 SURFnet B.V.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

namespace Surfnet\ServiceProviderDashboard\Tests\Integration\Application\CommandHandler\Entity;

use Mockery as m;
use Mockery\Adapter\Phpunit\MockeryTestCase;
use Mockery\Mock;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
use Surfnet\ServiceProviderDashboard\Application\Command\Entity\EntityChangeRequestCommand;
use Surfnet\ServiceProviderDashboard\Application\CommandHandler\Entity\EntityChangeRequestCommandHandler;
use Surfnet\ServiceProviderDashboard\Application\Service\EntityServiceInterface;
use Surfnet\ServiceProviderDashboard\Application\Service\MailService;
use Surfnet\ServiceProviderDashboard\Application\Service\TicketService;
use Surfnet\ServiceProviderDashboard\Domain\Entity\Constants;
use Surfnet\ServiceProviderDashboard\Domain\Entity\Contact;
use Surfnet\ServiceProviderDashboard\Domain\Entity\Entity\AllowedIdentityProviders;
use Surfnet\ServiceProviderDashboard\Domain\Entity\Entity\AttributeList;
use Surfnet\ServiceProviderDashboard\Domain\Entity\Entity\Coin;
use Surfnet\ServiceProviderDashboard\Domain\Entity\Entity\ContactList;
use Surfnet\ServiceProviderDashboard\Domain\Entity\Entity\Logo;
use Surfnet\ServiceProviderDashboard\Domain\Entity\Entity\MetaData;
use Surfnet\ServiceProviderDashboard\Domain\Entity\Entity\Organization;
use Surfnet\ServiceProviderDashboard\Domain\Entity\Entity\Protocol;
use Surfnet\ServiceProviderDashboard\Domain\Entity\ManageEntity;
use Surfnet\ServiceProviderDashboard\Domain\Entity\Service;
use Surfnet\ServiceProviderDashboard\Domain\Repository\EntityChangeRequestRepository;
use Surfnet\ServiceProviderDashboard\Domain\Service\ContractualBaseService;
use Surfnet\ServiceProviderDashboard\Domain\ValueObject\Issue;
use Surfnet\ServiceProviderDashboard\Domain\ValueObject\TypeOfServiceCollection;
use Symfony\Component\HttpFoundation\RequestStack;

class EntityChangeRequestCommandHandlerTest extends MockeryTestCase
{
private EntityChangeRequestCommandHandler $commandHandler;

private RequestStack|Mock $requestStack;

private LoggerInterface|Mock $logger;

private TicketService|Mock $ticketService;

private MailService|Mock $mailService;

private EntityServiceInterface|Mock $entityService;

private EntityChangeRequestRepository|mock $entityChangeRequestRepository;
public function setUp(): void
{
$this->entityChangeRequestRepository = m::mock(EntityChangeRequestRepository::class);
$this->entityService = m::mock(EntityServiceInterface::class);
$this->ticketService = m::mock(TicketService::class);
$this->requestStack = m::mock(RequestStack::class);
$this->logger = new NullLogger();

$this->mailService = m::mock(MailService::class);

$this->commandHandler = new EntityChangeRequestCommandHandler(
$this->entityChangeRequestRepository,
new ContractualBaseService(),
$this->entityService,
$this->ticketService,
$this->requestStack,
$this->mailService,
$this->logger,
'customIssueType'
);

}

public static function contractualBaseProvider(){
return [
'Pristine equals enitity, no change' => [Constants::CONTRACTUAL_BASE_IX, []],
'Pristine is null, update to correct value' => [null, ["metaDataFields.coin:contractual_base" => "IX"]],
'Pristine is wrong, update to correct value' => [Constants::CONTRACTUAL_BASE_AO, ["metaDataFields.coin:contractual_base" => "IX"]],
];
}

/**
* @dataProvider contractualBaseProvider
*/
public function test_it_should_update_contractual_base_on_change_request(?string $pristineContractualBase, array $expectedDiff)
{
$manageEntity = $this->createEntity();

$applicant = new Contact('john:doe', '[email protected]', 'John Doe');

$pristineEntity = unserialize(serialize($manageEntity));
if($pristineContractualBase !== null) {
$pristineEntity->getMetaData()->getCoin()->setContractualBase($pristineContractualBase);
}

$this->entityService->shouldReceive('getPristineManageEntityById')
->once()
->with($manageEntity->getId(), $manageEntity->getEnvironment())
->andReturn($pristineEntity);

$ticket = new Issue('ISSUE-123', 'foo', 'bar');

$this->ticketService->shouldReceive('createJiraTicket')
->once()
->andReturn($ticket);

$this->entityChangeRequestRepository->shouldReceive('openChangeRequest')
->once()
->withArgs(function($entity, $pristineEntity) use ($expectedDiff){
if($pristineEntity->diff($entity)->getDiff() !== $expectedDiff){
var_dump($pristineEntity->diff($entity)->getDiff(), 'is not equal to' , $expectedDiff);
}
return $pristineEntity->diff($entity)->getDiff() === $expectedDiff;
})
->andReturn(['id' => 1]);

$command = new EntityChangeRequestCommand($manageEntity, $applicant);
$this->commandHandler->handle($command);
}

/**
* @return ManageEntity
*/
private function createEntity(): ManageEntity
{
$coin = new Coin(
null,
null,
null,
null,
null,
new TypeOfServiceCollection(),
null,
null,
null,
null
);

$manageEntity = new ManageEntity(
1,
new AttributeList(),
new MetaData(
'https://test.entity.id',
'https://test.metadata.url',
null,
null,
'Test Description',
null,
'Test Entity',
null,
new ContactList(),
new Organization('Test org', "Test organisation", null, null, null, null),
$coin,
new Logo(null, null, null)
),
new AllowedIdentityProviders([], true), new Protocol(Constants::TYPE_SAML),
null,
new Service()
);
$manageEntity->setId('f1e394b2-815b-4018-b780-898976322016');
$manageEntity->setEnvironment('production');
$manageEntity->setStatus('published');
return $manageEntity;
}

}

0 comments on commit 44e7425

Please sign in to comment.