Search in sources :

Example 1 with StackImageChangeV4Request

use of com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.request.StackImageChangeV4Request in project cloudbreak by hortonworks.

the class DistroXUpgradeService method createImageChangeDto.

private ImageChangeDto createImageChangeDto(NameOrCrn cluster, Long workspaceId, ImageInfoV4Response image) {
    StackImageChangeV4Request stackImageChangeRequest = new StackImageChangeV4Request();
    stackImageChangeRequest.setImageId(image.getImageId());
    stackImageChangeRequest.setImageCatalogName(image.getImageCatalogName());
    return stackCommonService.createImageChangeDto(cluster, workspaceId, stackImageChangeRequest);
}
Also used : StackImageChangeV4Request(com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.request.StackImageChangeV4Request)

Example 2 with StackImageChangeV4Request

use of com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.request.StackImageChangeV4Request in project cloudbreak by hortonworks.

the class DistroXImageChangeV1RequestToStackImageChangeV4RequestConverter method convert.

public StackImageChangeV4Request convert(DistroXImageChangeV1Request source) {
    StackImageChangeV4Request stackImageChangeV4Request = new StackImageChangeV4Request();
    stackImageChangeV4Request.setImageId(source.getImageId());
    stackImageChangeV4Request.setImageCatalogName(source.getImageCatalogName());
    return stackImageChangeV4Request;
}
Also used : StackImageChangeV4Request(com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.request.StackImageChangeV4Request)

Example 3 with StackImageChangeV4Request

use of com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.request.StackImageChangeV4Request in project cloudbreak by hortonworks.

the class StackCommonServiceTest method testCreateImageChangeDtoWithoutCatalog.

@Test
public void testCreateImageChangeDtoWithoutCatalog() {
    StackImageChangeV4Request stackImageChangeRequest = new StackImageChangeV4Request();
    stackImageChangeRequest.setImageId("imageId");
    when(stackService.getIdByNameOrCrnInWorkspace(STACK_NAME, WORKSPACE_ID)).thenReturn(STACK_ID);
    ImageChangeDto result = underTest.createImageChangeDto(STACK_NAME, WORKSPACE_ID, stackImageChangeRequest);
    assertEquals(STACK_ID, result.getStackId());
    assertEquals(stackImageChangeRequest.getImageId(), result.getImageId());
    assertNull(result.getImageCatalogName());
    assertNull(result.getImageCatalogUrl());
}
Also used : ImageChangeDto(com.sequenceiq.cloudbreak.service.image.ImageChangeDto) StackImageChangeV4Request(com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.request.StackImageChangeV4Request) Test(org.junit.jupiter.api.Test)

Example 4 with StackImageChangeV4Request

use of com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.request.StackImageChangeV4Request in project cloudbreak by hortonworks.

the class StackCommonServiceTest method testCreateImageChangeDtoWithCatalog.

@Test
public void testCreateImageChangeDtoWithCatalog() {
    StackImageChangeV4Request stackImageChangeRequest = new StackImageChangeV4Request();
    stackImageChangeRequest.setImageCatalogName("catalog");
    stackImageChangeRequest.setImageId("imageId");
    ImageCatalog catalog = new ImageCatalog();
    catalog.setName(stackImageChangeRequest.getImageCatalogName());
    catalog.setImageCatalogUrl("catalogUrl");
    when(imageCatalogService.getImageCatalogByName(WORKSPACE_ID, stackImageChangeRequest.getImageCatalogName())).thenReturn(catalog);
    when(stackService.getIdByNameOrCrnInWorkspace(STACK_NAME, WORKSPACE_ID)).thenReturn(STACK_ID);
    ImageChangeDto result = underTest.createImageChangeDto(STACK_NAME, WORKSPACE_ID, stackImageChangeRequest);
    assertEquals(STACK_ID, result.getStackId());
    assertEquals(stackImageChangeRequest.getImageId(), result.getImageId());
    assertEquals(catalog.getName(), result.getImageCatalogName());
    assertEquals(catalog.getImageCatalogUrl(), result.getImageCatalogUrl());
}
Also used : ImageChangeDto(com.sequenceiq.cloudbreak.service.image.ImageChangeDto) StackImageChangeV4Request(com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.request.StackImageChangeV4Request) ImageCatalog(com.sequenceiq.cloudbreak.domain.ImageCatalog) Test(org.junit.jupiter.api.Test)

Example 5 with StackImageChangeV4Request

use of com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.request.StackImageChangeV4Request in project cloudbreak by hortonworks.

the class DistroXUpgradeServiceTest method testTriggerFlowWithPaywallCheck.

@Test
public void testTriggerFlowWithPaywallCheck() {
    UpgradeV4Request request = new UpgradeV4Request();
    UpgradeV4Response response = new UpgradeV4Response();
    response.setUpgradeCandidates(List.of(mock(ImageInfoV4Response.class)));
    when(upgradeAvailabilityService.checkForUpgrade(CLUSTER, WS_ID, request, USER_CRN)).thenReturn(response);
    when(entitlementService.isInternalRepositoryForUpgradeAllowed(ACCOUNT_ID)).thenReturn(Boolean.FALSE);
    when(clouderaManagerLicenseProvider.getLicense(any())).thenReturn(new JsonCMLicense());
    ImageInfoV4Response imageInfoV4Response = new ImageInfoV4Response();
    imageInfoV4Response.setImageId("imgId");
    imageInfoV4Response.setImageCatalogName("catalogName");
    when(imageSelector.determineImageId(request, response.getUpgradeCandidates())).thenReturn(imageInfoV4Response);
    ArgumentCaptor<StackImageChangeV4Request> imageChangeRequestArgumentCaptor = ArgumentCaptor.forClass(StackImageChangeV4Request.class);
    ImageChangeDto imageChangeDto = new ImageChangeDto(STACK_ID, imageInfoV4Response.getImageId());
    when(stackCommonService.createImageChangeDto(eq(CLUSTER), eq(WS_ID), imageChangeRequestArgumentCaptor.capture())).thenReturn(imageChangeDto);
    when(stackService.getByNameOrCrnInWorkspace(CLUSTER, WS_ID)).thenReturn(stack);
    when(lockedComponentService.isComponentsLocked(stack, imageInfoV4Response.getImageId())).thenReturn(LOCK_COMPONENTS);
    FlowIdentifier flowIdentifier = new FlowIdentifier(FlowType.FLOW_CHAIN, "asdf");
    when(reactorFlowManager.triggerDistroXUpgrade(eq(STACK_ID), eq(imageChangeDto), anyBoolean(), eq(LOCK_COMPONENTS), anyString())).thenReturn(flowIdentifier);
    UpgradeV4Response result = underTest.triggerUpgrade(CLUSTER, WS_ID, USER_CRN, request);
    verify(paywallAccessChecker).checkPaywallAccess(any(), any());
    assertEquals(flowIdentifier, result.getFlowIdentifier());
    assertTrue(result.getReason().contains(imageInfoV4Response.getImageId()));
    StackImageChangeV4Request imageChangeV4Request = imageChangeRequestArgumentCaptor.getValue();
    assertEquals(imageInfoV4Response.getImageId(), imageChangeV4Request.getImageId());
    assertEquals(imageInfoV4Response.getImageCatalogName(), imageChangeV4Request.getImageCatalogName());
}
Also used : UpgradeV4Response(com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.response.upgrade.UpgradeV4Response) ImageChangeDto(com.sequenceiq.cloudbreak.service.image.ImageChangeDto) StackImageChangeV4Request(com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.request.StackImageChangeV4Request) UpgradeV4Request(com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.request.tags.upgrade.UpgradeV4Request) ImageInfoV4Response(com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.response.image.ImageInfoV4Response) FlowIdentifier(com.sequenceiq.flow.api.model.FlowIdentifier) JsonCMLicense(com.sequenceiq.cloudbreak.auth.JsonCMLicense) Test(org.junit.jupiter.api.Test)

Aggregations

StackImageChangeV4Request (com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.request.StackImageChangeV4Request)12 ImageChangeDto (com.sequenceiq.cloudbreak.service.image.ImageChangeDto)9 Test (org.junit.jupiter.api.Test)9 FlowIdentifier (com.sequenceiq.flow.api.model.FlowIdentifier)7 UpgradeV4Request (com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.request.tags.upgrade.UpgradeV4Request)6 ImageInfoV4Response (com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.response.image.ImageInfoV4Response)6 UpgradeV4Response (com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.response.upgrade.UpgradeV4Response)6 JsonCMLicense (com.sequenceiq.cloudbreak.auth.JsonCMLicense)4 ImageCatalog (com.sequenceiq.cloudbreak.domain.ImageCatalog)1 CloudbreakApiException (com.sequenceiq.cloudbreak.exception.CloudbreakApiException)1 SdxCluster (com.sequenceiq.datalake.entity.SdxCluster)1 WebApplicationException (javax.ws.rs.WebApplicationException)1