Skip to content

Commit

Permalink
Makes guid optional in Relationship
Browse files Browse the repository at this point in the history
Signed-off-by: kvmw <mshamsi@broadcom.com>
  • Loading branch information
kvmw committed Jul 3, 2024
1 parent 97574d5 commit 51e273e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import org.cloudfoundry.Nullable;
import org.immutables.value.Value;

/**
Expand All @@ -31,6 +32,7 @@ abstract class _Relationship {
* The id
*/
@JsonProperty("guid")
@Nullable
abstract String getId();

}
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,24 @@

package org.cloudfoundry.client.v3;

import static org.junit.jupiter.api.Assertions.assertThrows;

import org.junit.jupiter.api.Test;

import static org.assertj.core.api.Assertions.assertThat;

final class RelationshipTest {

@Test
void noId() {
assertThrows(
IllegalStateException.class,
() -> {
Relationship.builder().build();
});
assertThat(Relationship.builder().build().getId()).isNull();
}

@Test
void nullId() {
assertThat(Relationship.builder().id(null).build().getId()).isNull();
}

@Test
void valid() {
Relationship.builder().id("test-id").build();
void nonNullId() {
assertThat(Relationship.builder().id("test-id").build().getId()).isEqualTo("test-id");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,10 @@ final class ShareDomainRequestTest {

@Test
void emptyRelationship() {
assertThrows(
IllegalStateException.class,
() -> {
ShareDomainRequest.builder()
.domainId("test-domain-id")
.data(Relationship.builder().build())
.build();
});
ShareDomainRequest.builder()
.domainId("test-domain-id")
.data(Relationship.builder().build())
.build();
}

@Test
Expand Down

0 comments on commit 51e273e

Please # to comment.