use of org.apache.mesos.Protos.Label in project dcos-commons by mesosphere.
the class OfferEvaluatorPortsTest method testReserveTaskNamedVIPPort.
@SuppressWarnings("PMD.AvoidUsingHardCodedIP")
@Test
public void testReserveTaskNamedVIPPort() throws Exception {
List<OfferRecommendation> recommendations = evaluator.evaluate(PodInstanceRequirementTestUtils.getVIPRequirement(80, 10000), OfferTestUtils.getCompleteOffers(ResourceTestUtils.getUnreservedPorts(10000, 10000)));
Assert.assertEquals(5, recommendations.size());
Operation launchOperation = recommendations.get(4).getOperation();
TaskInfo taskInfo = launchOperation.getLaunchGroup().getTaskGroup().getTasks(0);
Resource fulfilledPortResource = taskInfo.getResources(0);
Assert.assertEquals(10000, fulfilledPortResource.getRanges().getRange(0).getBegin());
Assert.assertFalse(getResourceId(fulfilledPortResource).isEmpty());
DiscoveryInfo discoveryInfo = taskInfo.getDiscovery();
Assert.assertEquals(discoveryInfo.getName(), taskInfo.getName());
Assert.assertEquals(discoveryInfo.getVisibility(), DiscoveryInfo.Visibility.CLUSTER);
Port discoveryPort = discoveryInfo.getPorts().getPorts(0);
Assert.assertEquals(discoveryPort.getProtocol(), "tcp");
Assert.assertEquals(discoveryPort.getVisibility(), DiscoveryInfo.Visibility.EXTERNAL);
Assert.assertEquals(discoveryPort.getNumber(), 10000);
Label vipLabel = discoveryPort.getLabels().getLabels(0);
Assert.assertTrue(vipLabel.getKey().startsWith("VIP_"));
Assert.assertEquals(vipLabel.getValue(), TestConstants.VIP_NAME + "-10000:80");
Map<String, String> envvars = EnvUtils.toMap(TaskPackingUtils.unpack(taskInfo).getCommand().getEnvironment());
Assert.assertEquals(String.valueOf(10000), envvars.get(TestConstants.PORT_ENV_NAME + "_VIP_10000"));
}
use of org.apache.mesos.Protos.Label in project dcos-commons by mesosphere.
the class AuxLabelAccessTest method testCreateVipLabel.
@Test
public void testCreateVipLabel() {
Protos.Port.Builder portBuilder = newPortBuilder();
AuxLabelAccess.setVIPLabels(portBuilder, newVIPSpec("vip", 5));
Collection<Protos.Label> labels = portBuilder.getLabels().getLabelsList();
assertEquals(1, labels.size());
Label label = labels.iterator().next();
assertTrue(label.getKey().startsWith("VIP_"));
assertEquals("vip:5", label.getValue());
Collection<EndpointUtils.VipInfo> vips = AuxLabelAccess.getVIPsFromLabels(TestConstants.TASK_NAME, portBuilder.build());
assertEquals(1, vips.size());
EndpointUtils.VipInfo vip = vips.iterator().next();
assertEquals("vip", vip.getVipName());
assertEquals(5, vip.getVipPort());
}
use of org.apache.mesos.Protos.Label in project dcos-commons by mesosphere.
the class AuxLabelAccess method getVIPsFromLabels.
/**
* Returns the VIP information, if any, within the provided {@link Protos.Port}.
* This is the inverse of {@link #setVIPLabels(org.apache.mesos.Protos.Port.Builder, NamedVIPSpec)}.
*/
public static Collection<VipInfo> getVIPsFromLabels(String taskName, Protos.Port port) {
List<VipInfo> vips = new ArrayList<>();
for (Label label : port.getLabels().getLabelsList()) {
Optional<EndpointUtils.VipInfo> vipInfo = parseVipLabel(taskName, label);
if (!vipInfo.isPresent()) {
// Label doesn't appear to be for a VIP
continue;
}
vips.add(vipInfo.get());
}
return vips;
}
use of org.apache.mesos.Protos.Label in project dcos-commons by mesosphere.
the class AuxLabelAccessTest method testCreateVipLabelOnOverlay.
@Test
public void testCreateVipLabelOnOverlay() {
Protos.Port.Builder portBuilder = newPortBuilder();
AuxLabelAccess.setVIPLabels(portBuilder, newVIPSpec("vip", 5, "dcos"));
Collection<Protos.Label> labels = portBuilder.getLabels().getLabelsList();
assertEquals(2, labels.size());
assertEquals(1, labels.stream().filter(label -> label.getKey().startsWith("VIP_") && label.getValue().equals("vip:5")).collect(Collectors.toList()).size());
assertEquals(1, labels.stream().filter(label -> label.getKey().equals(LabelConstants.VIP_OVERLAY_FLAG_KEY) && label.getValue().equals(LabelConstants.VIP_OVERLAY_FLAG_VALUE)).collect(Collectors.toList()).size());
Collection<EndpointUtils.VipInfo> vips = AuxLabelAccess.getVIPsFromLabels(TestConstants.TASK_NAME, portBuilder.build());
assertEquals(1, vips.size());
EndpointUtils.VipInfo vip = vips.iterator().next();
assertEquals("vip", vip.getVipName());
assertEquals(5, vip.getVipPort());
}
use of org.apache.mesos.Protos.Label in project dcos-commons by mesosphere.
the class OfferEvaluatorPortsTest method testReserveTaskDynamicVIPPortCustomExecutor.
@SuppressWarnings("PMD.AvoidUsingHardCodedIP")
@Test
public void testReserveTaskDynamicVIPPortCustomExecutor() throws Exception {
useCustomExecutor();
List<OfferRecommendation> recommendations = evaluator.evaluate(PodInstanceRequirementTestUtils.getVIPRequirement(80, 0), OfferTestUtils.getOffers(ResourceTestUtils.getUnreservedPorts(10000, 10000)));
Assert.assertEquals(2, recommendations.size());
Operation launchOperation = recommendations.get(1).getOperation();
TaskInfo taskInfo = launchOperation.getLaunch().getTaskInfos(0);
Resource fulfilledPortResource = taskInfo.getResources(0);
Assert.assertEquals(10000, fulfilledPortResource.getRanges().getRange(0).getBegin());
Assert.assertFalse(getResourceId(fulfilledPortResource).isEmpty());
DiscoveryInfo discoveryInfo = taskInfo.getDiscovery();
Assert.assertEquals(discoveryInfo.getName(), taskInfo.getName());
Assert.assertEquals(discoveryInfo.getVisibility(), DiscoveryInfo.Visibility.CLUSTER);
Port discoveryPort = discoveryInfo.getPorts().getPorts(0);
Assert.assertEquals(discoveryPort.getProtocol(), "tcp");
Assert.assertEquals(discoveryPort.getVisibility(), DiscoveryInfo.Visibility.EXTERNAL);
Assert.assertEquals(discoveryPort.getNumber(), 10000);
Label vipLabel = discoveryPort.getLabels().getLabels(0);
Assert.assertTrue(vipLabel.getKey().startsWith("VIP_"));
Assert.assertEquals(vipLabel.getValue(), TestConstants.VIP_NAME + "-0:80");
Map<String, String> envvars = EnvUtils.toMap(TaskPackingUtils.unpack(taskInfo).getCommand().getEnvironment());
Assert.assertEquals(String.valueOf(10000), envvars.get(TestConstants.PORT_ENV_NAME + "_VIP_0"));
}
Aggregations