Search in sources :

Example 21 with ProductVersionClient

use of org.jboss.pnc.client.ProductVersionClient in project pnc by project-ncl.

the class ProductVersionEndpointTest method shouldNotUpdateWithClosedMilestone.

@Test
public void shouldNotUpdateWithClosedMilestone() throws ClientException {
    // given
    ProductVersionClient client = new ProductVersionClient(RestClientConfiguration.asUser());
    // has closed milestone, from
    ProductVersion productVersion = client.getSpecific(productVersionsId);
    // DatabaseDataInitializer
    // when
    ProductVersion toUpdate = productVersion.toBuilder().version("2.0").build();
    // then
    assertThatThrownBy(() -> client.update(productVersion.getId(), toUpdate)).isInstanceOf(ClientException.class);
}
Also used : ProductVersion(org.jboss.pnc.dto.ProductVersion) ProductVersionClient(org.jboss.pnc.client.ProductVersionClient) ContainerTest(org.jboss.pnc.test.category.ContainerTest) Test(org.junit.Test)

Example 22 with ProductVersionClient

use of org.jboss.pnc.client.ProductVersionClient in project pnc by project-ncl.

the class ProductVersionEndpointTest method shouldAdd2GroupConfigsWithPatch.

@Test
public void shouldAdd2GroupConfigsWithPatch() throws Exception {
    // given #1
    ProductVersionClient client = new ProductVersionClient(RestClientConfiguration.asUser());
    GroupConfigurationClient gcClient = new GroupConfigurationClient(RestClientConfiguration.asUser());
    ProductVersion productVersion = client.getSpecific(productVersionsId2);
    GroupConfiguration toAdd = gcClient.createNew(GroupConfiguration.builder().name("New GC1").build());
    ProductVersionPatchBuilder builder = new ProductVersionPatchBuilder();
    Map<String, GroupConfigurationRef> toAddMap = new HashMap<>();
    toAddMap.put(toAdd.getId(), toAdd);
    builder.addGroupConfigs(toAddMap);
    // when #1
    client.patch(productVersion.getId(), builder);
    // then #1
    ProductVersion refresh = client.getSpecific(productVersionsId2);
    assertThat(refresh.getGroupConfigs()).containsKey(toAdd.getId());
    // given #2 add second GC
    GroupConfiguration toAdd2 = gcClient.createNew(GroupConfiguration.builder().name("New GC2").build());
    builder = new ProductVersionPatchBuilder();
    toAddMap.clear();
    toAddMap.put(toAdd2.getId(), toAdd2);
    builder.addGroupConfigs(toAddMap);
    // when #2
    client.patch(productVersion.getId(), builder);
    // then #2
    refresh = client.getSpecific(productVersionsId2);
    assertThat(refresh.getGroupConfigs()).containsKey(toAdd2.getId()).containsKey(toAdd.getId());
}
Also used : GroupConfigurationRef(org.jboss.pnc.dto.GroupConfigurationRef) HashMap(java.util.HashMap) GroupConfigurationClient(org.jboss.pnc.client.GroupConfigurationClient) ProductVersion(org.jboss.pnc.dto.ProductVersion) GroupConfiguration(org.jboss.pnc.dto.GroupConfiguration) ProductVersionPatchBuilder(org.jboss.pnc.client.patch.ProductVersionPatchBuilder) ProductVersionClient(org.jboss.pnc.client.ProductVersionClient) ContainerTest(org.jboss.pnc.test.category.ContainerTest) Test(org.junit.Test)

Example 23 with ProductVersionClient

use of org.jboss.pnc.client.ProductVersionClient in project pnc by project-ncl.

the class ProductVersionEndpointTest method shouldUpdateGroupConfigs.

@Test
public void shouldUpdateGroupConfigs() throws ClientException {
    // given
    GroupConfiguration gc = GroupConfiguration.builder().name("New GC").build();
    GroupConfigurationClient gcc = new GroupConfigurationClient(RestClientConfiguration.asUser());
    GroupConfiguration gcToAdd = gcc.createNew(gc);
    Map<String, GroupConfigurationRef> groupConfis = new HashMap<>();
    // when
    ProductVersionClient client = new ProductVersionClient(RestClientConfiguration.asUser());
    ProductVersion productVersion = client.getSpecific(productVersionsId2);
    groupConfis.putAll(productVersion.getGroupConfigs());
    groupConfis.put(gcToAdd.getId(), gcToAdd);
    ProductVersion toUpdate = productVersion.toBuilder().groupConfigs(groupConfis).build();
    client.update(productVersion.getId(), toUpdate);
    ProductVersion retrieved = client.getSpecific(productVersion.getId());
    // then
    assertThat(retrieved.getGroupConfigs()).hasSameSizeAs(groupConfis).containsKey(gcToAdd.getId());
}
Also used : GroupConfigurationRef(org.jboss.pnc.dto.GroupConfigurationRef) HashMap(java.util.HashMap) GroupConfigurationClient(org.jboss.pnc.client.GroupConfigurationClient) GroupConfiguration(org.jboss.pnc.dto.GroupConfiguration) ProductVersion(org.jboss.pnc.dto.ProductVersion) ProductVersionClient(org.jboss.pnc.client.ProductVersionClient) ContainerTest(org.jboss.pnc.test.category.ContainerTest) Test(org.junit.Test)

Example 24 with ProductVersionClient

use of org.jboss.pnc.client.ProductVersionClient in project pnc by project-ncl.

the class ProductVersionEndpointTest method shouldFailGracefullyOnNonExistentProduct.

@Test
public void shouldFailGracefullyOnNonExistentProduct() {
    // given
    String nonExistentProductId = "384583";
    ProductVersion productVersion = ProductVersion.builder().product(ProductRef.refBuilder().id(nonExistentProductId).build()).version("42.2").build();
    // whenthen
    ProductVersionClient client = new ProductVersionClient(RestClientConfiguration.asUser());
    assertThatThrownBy(() -> client.createNew(productVersion)).isInstanceOf(ClientException.class);
}
Also used : ProductVersion(org.jboss.pnc.dto.ProductVersion) ProductVersionClient(org.jboss.pnc.client.ProductVersionClient) ContainerTest(org.jboss.pnc.test.category.ContainerTest) Test(org.junit.Test)

Example 25 with ProductVersionClient

use of org.jboss.pnc.client.ProductVersionClient in project pnc by project-ncl.

the class ProductVersionEndpointTest method shouldNotUpdateGroupConfigsWhenOneIsAlreadyAsssociatedWithAnotherProductVersion.

@Test
public void shouldNotUpdateGroupConfigsWhenOneIsAlreadyAsssociatedWithAnotherProductVersion() throws ClientException {
    // given
    ProductVersionClient client = new ProductVersionClient(RestClientConfiguration.asUser());
    GroupConfigurationRef alreadyAssignedGC = client.getSpecific(productVersionsId).getGroupConfigs().values().iterator().next();
    Map<String, GroupConfigurationRef> groupConfis = new HashMap<>();
    assertThat(alreadyAssignedGC).isNotNull();
    // when
    ProductVersion productVersion = client.getSpecific(productVersionsId2);
    groupConfis.putAll(productVersion.getGroupConfigs());
    groupConfis.put(alreadyAssignedGC.getId(), alreadyAssignedGC);
    ProductVersion toUpdate = productVersion.toBuilder().groupConfigs(groupConfis).build();
    // then
    assertThatThrownBy(() -> client.update(productVersion.getId(), toUpdate)).isInstanceOf(ClientException.class);
}
Also used : GroupConfigurationRef(org.jboss.pnc.dto.GroupConfigurationRef) HashMap(java.util.HashMap) ProductVersion(org.jboss.pnc.dto.ProductVersion) ProductVersionClient(org.jboss.pnc.client.ProductVersionClient) ContainerTest(org.jboss.pnc.test.category.ContainerTest) Test(org.junit.Test)

Aggregations

ProductVersionClient (org.jboss.pnc.client.ProductVersionClient)25 ContainerTest (org.jboss.pnc.test.category.ContainerTest)20 Test (org.junit.Test)20 ProductVersion (org.jboss.pnc.dto.ProductVersion)17 GroupConfigurationRef (org.jboss.pnc.dto.GroupConfigurationRef)6 HashMap (java.util.HashMap)5 ProductClient (org.jboss.pnc.client.ProductClient)4 ProductVersionPatchBuilder (org.jboss.pnc.client.patch.ProductVersionPatchBuilder)4 GroupConfiguration (org.jboss.pnc.dto.GroupConfiguration)4 ProductMilestone (org.jboss.pnc.dto.ProductMilestone)4 GroupConfigurationClient (org.jboss.pnc.client.GroupConfigurationClient)3 ProductMilestoneClient (org.jboss.pnc.client.ProductMilestoneClient)2 RemoteResourceException (org.jboss.pnc.client.RemoteResourceException)2 BuildConfiguration (org.jboss.pnc.dto.BuildConfiguration)2 Product (org.jboss.pnc.dto.Product)2 ValidationResponse (org.jboss.pnc.dto.response.ValidationResponse)2 BeforeClass (org.junit.BeforeClass)2 IOException (java.io.IOException)1 Instant (java.time.Instant)1 Iterator (java.util.Iterator)1