Skip to content
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 @@ -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 static org.assertj.core.api.Assertions.assertThat;

import org.junit.jupiter.api.Test;

final class RelationshipTest {

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

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

@Test
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