Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: or-2515 use route parameter for lidmaatschap id instead inside request model #984

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ public class WijzigLidmaatschapRequestExamples : IExamplesProvider<WijzigLidmaat
public WijzigLidmaatschapRequest GetExamples()
=> new()
{
LidmaatschapId = 1,
Beschrijving = "De beschrijving van het lidmaatschap.",
Van = new DateOnly(2024, 10, 12),
Tot = new DateOnly(2024, 10, 10),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,6 @@
[DataContract]
public class WijzigLidmaatschapRequest
{
/// <summary>
/// De unieke identificator van het lidmaatschap
/// </summary>
[DataMember]
public int LidmaatschapId { get; set; }

/// <summary>
/// De datum waarop de relatie actief wordt
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ public class WijzigLidmaatschapRequestValidator : AbstractValidator<WijzigLidmaa
{
public WijzigLidmaatschapRequestValidator()
{
RuleFor(r => r.LidmaatschapId)
.GreaterThan(0)
.WithMessage(ValidationMessages.VeldIsVerplicht);

RuleFor(r => r.Tot)
.GreaterThanOrEqualTo(x => x.Van)
.When(x => x.Van.HasValue)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ public WijzigLidmaatschapController(IMessageBus messageBus, AppSettings appSetti
/// al is doorgestroomd naar deze endpoints.
/// </remarks>
/// <param name="vCode">De VCode van de vereniging.</param>
/// <param name="lidmaatschapId">De unieke identificator van het lidmaatschap.</param>
/// <param name="request">Het te wijzigen lidmaatschap.</param>
/// <param name="validator">De validator voor het wijzigen van het lidmaatschap.</param>
/// <param name="metadataProvider"></param>
Expand All @@ -53,7 +54,7 @@ public WijzigLidmaatschapController(IMessageBus messageBus, AppSettings appSetti
/// <response code="400">Er was een probleem met de doorgestuurde waarden.</response>
/// <response code="412">De gevraagde vereniging heeft niet de verwachte sequentiewaarde.</response>
/// <response code="500">Er is een interne fout opgetreden.</response>
[HttpPatch("{vCode}/lidmaatschappen")]
[HttpPatch("{vCode}/lidmaatschappen/{lidmaatschapId:int}")]
[ConsumesJson]
[ProducesJson]
[SwaggerRequestExample(typeof(WijzigLidmaatschapRequest), typeof(WijzigLidmaatschapRequestExamples))]
Expand All @@ -73,15 +74,16 @@ public WijzigLidmaatschapController(IMessageBus messageBus, AppSettings appSetti
[ProducesResponseType(StatusCodes.Status202Accepted)]
public async Task<IActionResult> WijzigLidmaatschap(
[FromRoute] string vCode,
[FromRoute] int lidmaatschapId,
[FromBody] WijzigLidmaatschapRequest request,
[FromServices] IValidator<WijzigLidmaatschapRequest> validator,
[FromServices] ICommandMetadataProvider metadataProvider,
[FromHeader(Name = "If-Match")] string? ifMatch = null)
{
await validator.NullValidateAndThrowAsync(request);

var metaData = metadataProvider.GetMetadata(IfMatchParser.ParseIfMatch(ifMatch));
// var envelope = new CommandEnvelope<WijzigLidmaatschapCommand>(request.ToCommand(vCode), metaData);
// var metaData = metadataProvider.GetMetadata(IfMatchParser.ParseIfMatch(ifMatch));
// var envelope = new CommandEnvelope<WijzigLidmaatschapCommand>(request.ToCommand(vCode, lidmaatschapId), metaData);
// var commandResult = await _messageBus.InvokeAsync<EntityCommandResult>(envelope);

// return this.AcceptedEntityCommand(_appSettings, WellKnownHeaderEntityNames.Lidmaatschappen, commandResult);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,6 @@ public A_Invalid_Request()
_validator = new WijzigLidmaatschapRequestValidator();
}

[Fact]
public void Has_validation_errors_for_lidmaatschapId_when_zero()
{
var request = _fixture.Create<WijzigLidmaatschapRequest>();
request.LidmaatschapId = 0;

var result = _validator.TestValidate(request);

result.ShouldHaveValidationErrorFor(x => x.LidmaatschapId)
.WithErrorMessage(ValidationMessages.VeldIsVerplicht);
}

[Fact]
public void Has_validation_errors_when_tot_after_van()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,6 @@ private static void CustomizeWijzigLidmaatschapRequest(this IFixture fixture)
composer => composer.FromFactory(
() => new WijzigLidmaatschapRequest
{
LidmaatschapId = fixture.Create<int>(),
Van = date,
Tot = date.AddDays(new Random().Next(1, 99)),
Identificatie = fixture.Create<string>(),
Expand Down
Loading