@Override public void connectionChanged( IConnection connection, String property, Object oldValue, Object newValue) { if (pod != null) { // we're done already return; } if (dcSelector == null) { if (deploymentConfig.equals(oldValue) && newValue instanceof IDeploymentConfig) { deploymentConfig = (IDeploymentConfig) newValue; dcSelector = deploymentConfig.getReplicaSelector(); } return; } // Wait for new pod once deployment is done if (newValue instanceof IPod) { IPod candidate = (IPod) newValue; String podName = candidate.getName(); if (!oldPods.contains(podName) && "Running".equals(candidate.getStatus()) && ResourceUtils.containsAll(dcSelector, candidate.getLabels())) { pod = candidate; } } }
@Test public void testStubDeploymentConfig() { IImageStream is = givenAnImageStreamTo(project.getName(), DOCKER_TAG); IResource resource = job.stubDeploymentConfig(factory, RESOURCE_NAME, DOCKER_TAG, is); assertTrue(resource instanceof IDeploymentConfig); IDeploymentConfig dc = (IDeploymentConfig) resource; assertEquals( "Exp. replicas to match incoming params", parameters.getReplicas(), dc.getReplicas()); assertEquals( "Exp. the selector key to be the resourceName", RESOURCE_NAME, dc.getReplicaSelector().get(DeployImageJob.SELECTOR_KEY)); IContainer container = dc.getContainer(RESOURCE_NAME); assertNotNull("Exp. to find a container with the resource name", container); Collection<IDeploymentTrigger> triggers = dc.getTriggers(); assertTrue( "Exp. a config change trigger", triggers .stream() .filter(t -> DeploymentTriggerType.CONFIG_CHANGE.equals(t.getType())) .findFirst() .isPresent()); // assert ict matches container spec Optional<IDeploymentTrigger> icTrigger = triggers .stream() .filter(t -> DeploymentTriggerType.IMAGE_CHANGE.equals(t.getType())) .findFirst(); assertTrue(icTrigger.isPresent()); IDeploymentImageChangeTrigger imageChangeTrigger = (IDeploymentImageChangeTrigger) icTrigger.get(); Collection<String> names = imageChangeTrigger.getContainerNames(); assertEquals(1, names.size()); assertEquals( "Exp. the container and trigger names to match", container.getName(), names.iterator().next()); assertTrue(imageChangeTrigger.isAutomatic()); assertEquals(ResourceKind.IMAGE_STREAM_TAG, imageChangeTrigger.getKind()); assertEquals( "Exp. the trigger to point to the imagestream name", new DockerImageURI(null, null, is.getName(), DOCKER_TAG.getTag()), imageChangeTrigger.getFrom()); assertEquals( "Exp. the trigger to point to the imagestream name", is.getNamespace(), imageChangeTrigger.getNamespace()); }
@Test public void shouldNotUpdateIfNoImageChangeTrigger() { givenAConnection(); givenTheImageStreamExistsTo("myimagename"); IDeploymentConfig dc = createResource(IDeploymentConfig.class); when(dc.getTriggers()).thenReturn(Collections.EMPTY_LIST); when(connection.getResource( ResourceKind.DEPLOYMENT_CONFIG, project.getName(), parameters.getResourceName())) .thenReturn(dc); assertFalse( job.updateTriggerIfUpdate(connection, project.getName(), parameters.getResourceName())); }
public IStatus getTimeOutStatus() { return new Status( IStatus.ERROR, OpenShiftCoreActivator.PLUGIN_ID, "Failed to detect new deployed Pod for " + deploymentConfig.getName()); }