Search in sources :

Example 1 with ProductVersionPatchBuilder

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

the class ProductVersionEndpointTest method shouldUpdateGroupConfigsUsingPatch.

@Test
public void shouldUpdateGroupConfigsUsingPatch() throws PatchBuilderException, RemoteResourceException {
    // given
    ProductVersionClient client = new ProductVersionClient(RestClientConfiguration.asUser());
    GroupConfiguration gc = GroupConfiguration.builder().name("GC patch test").build();
    GroupConfigurationClient gcc = new GroupConfigurationClient(RestClientConfiguration.asUser());
    GroupConfiguration gcToAdd = gcc.createNew(gc);
    ProductVersion productVersion = client.getSpecific(productVersionsId2);
    Map<String, GroupConfigurationRef> groupConfigs = productVersion.getGroupConfigs();
    // when
    ProductVersionPatchBuilder patchBuilder = new ProductVersionPatchBuilder();
    ProductVersionPatchBuilder patch = patchBuilder.addGroupConfigs(Collections.singletonMap(gcToAdd.getId(), gcToAdd));
    client.patch(productVersionsId2, patch);
    // then
    groupConfigs.put(gcToAdd.getId(), gcToAdd);
    ProductVersion productVersionUpdated = client.getSpecific(productVersionsId2);
    assertThat(productVersionUpdated.getGroupConfigs()).containsKeys(groupConfigs.keySet().toArray(new String[groupConfigs.keySet().size()]));
}
Also used : GroupConfigurationRef(org.jboss.pnc.dto.GroupConfigurationRef) GroupConfigurationClient(org.jboss.pnc.client.GroupConfigurationClient) GroupConfiguration(org.jboss.pnc.dto.GroupConfiguration) ProductVersion(org.jboss.pnc.dto.ProductVersion) 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 2 with ProductVersionPatchBuilder

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

the class ProductVersionEndpointTest method shouldDeleteBuildConfigWithPatch.

@Test
public void shouldDeleteBuildConfigWithPatch() throws Exception {
    // given
    ProductVersionClient client = new ProductVersionClient(RestClientConfiguration.asUser());
    BuildConfigurationClient bcClient = new BuildConfigurationClient(RestClientConfiguration.asUser());
    ProductVersion productVersion = client.getSpecific(productVersionsId2);
    assertThat(productVersion.getBuildConfigs()).isNotEmpty();
    BuildConfiguration toRemove = bcClient.getSpecific(productVersion.getBuildConfigs().keySet().iterator().next());
    ProductVersionPatchBuilder builder = new ProductVersionPatchBuilder();
    builder.removeBuildConfigs(Collections.singletonList(toRemove.getId()));
    // when
    client.patch(productVersion.getId(), builder);
    // then
    ProductVersion refresh = client.getSpecific(productVersionsId2);
    assertThat(refresh.getBuildConfigs().keySet()).doesNotContain(toRemove.getId());
}
Also used : BuildConfiguration(org.jboss.pnc.dto.BuildConfiguration) ProductVersion(org.jboss.pnc.dto.ProductVersion) BuildConfigurationClient(org.jboss.pnc.client.BuildConfigurationClient) 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 3 with ProductVersionPatchBuilder

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

the class ProductVersionEndpointTest method shouldNotUpdateGroupConfigsWhenOneIsAlreadyAsssociatedWithAnotherProductVersionUsingPatch.

@Test
public void shouldNotUpdateGroupConfigsWhenOneIsAlreadyAsssociatedWithAnotherProductVersionUsingPatch() throws ClientException, PatchBuilderException {
    // 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
    ProductVersionPatchBuilder patchBuilder = new ProductVersionPatchBuilder();
    ProductVersionPatchBuilder patch = patchBuilder.addGroupConfigs(Collections.singletonMap(alreadyAssignedGC.getId(), alreadyAssignedGC));
    // then
    assertThatThrownBy(() -> client.patch(productVersionsId2, patch)).isInstanceOf(ClientException.class);
}
Also used : GroupConfigurationRef(org.jboss.pnc.dto.GroupConfigurationRef) HashMap(java.util.HashMap) 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 4 with ProductVersionPatchBuilder

use of org.jboss.pnc.client.patch.ProductVersionPatchBuilder 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)

Aggregations

ProductVersionClient (org.jboss.pnc.client.ProductVersionClient)4 ProductVersionPatchBuilder (org.jboss.pnc.client.patch.ProductVersionPatchBuilder)4 ContainerTest (org.jboss.pnc.test.category.ContainerTest)4 Test (org.junit.Test)4 GroupConfigurationRef (org.jboss.pnc.dto.GroupConfigurationRef)3 ProductVersion (org.jboss.pnc.dto.ProductVersion)3 HashMap (java.util.HashMap)2 GroupConfigurationClient (org.jboss.pnc.client.GroupConfigurationClient)2 GroupConfiguration (org.jboss.pnc.dto.GroupConfiguration)2 BuildConfigurationClient (org.jboss.pnc.client.BuildConfigurationClient)1 BuildConfiguration (org.jboss.pnc.dto.BuildConfiguration)1