use of org.btrplace.btrpsl.ScriptBuilder in project scheduler by btrplace.
the class QuarantineBuilderTest method testGoodSignatures.
@Test(dataProvider = "goodQuarantines")
public void testGoodSignatures(String str, int nbNodes) throws Exception {
ScriptBuilder b = new ScriptBuilder(new DefaultModel());
Set<SatConstraint> cstrs = b.build("namespace test; VM[1..10] : tiny;\n@N[1..20] : defaultNode;\n" + str).getConstraints();
Assert.assertEquals(cstrs.size(), nbNodes);
Set<Node> nodes = new HashSet<>();
for (SatConstraint x : cstrs) {
Assert.assertTrue(x instanceof Quarantine);
Assert.assertTrue(nodes.addAll(x.getInvolvedNodes()));
}
}
use of org.btrplace.btrpsl.ScriptBuilder in project scheduler by btrplace.
the class BanBuilderTest method testGoodSignatures.
@Test(dataProvider = "goodBans")
public void testGoodSignatures(String str, int nbVMs, int nbNodes, boolean c) throws Exception {
ScriptBuilder b = new ScriptBuilder(new DefaultModel());
Set<SatConstraint> cstrs = b.build("namespace test; VM[1..10] : tiny;\n@N[1..10] : defaultNode;\n" + str).getConstraints();
Assert.assertEquals(cstrs.size(), nbVMs);
Set<VM> vms = new HashSet<>();
for (SatConstraint s : cstrs) {
Assert.assertTrue(s instanceof Ban);
Assert.assertEquals(s.getInvolvedVMs().size(), 1);
Assert.assertTrue(vms.addAll(s.getInvolvedVMs()));
Assert.assertEquals(s.getInvolvedNodes().size(), nbNodes);
Assert.assertEquals(s.isContinuous(), c);
}
}
use of org.btrplace.btrpsl.ScriptBuilder in project scheduler by btrplace.
the class GatherBuilderTest method testGoodSignatures.
@Test(dataProvider = "goodGathers")
public void testGoodSignatures(String str, int nbVMs, boolean c) throws Exception {
ScriptBuilder b = new ScriptBuilder(new DefaultModel());
Gather x = (Gather) b.build("namespace test; VM[1..10] : tiny;\n" + str).getConstraints().iterator().next();
Assert.assertEquals(x.getInvolvedVMs().size(), nbVMs);
Assert.assertEquals(x.isContinuous(), c);
}
use of org.btrplace.btrpsl.ScriptBuilder in project scheduler by btrplace.
the class PreserveBuilderTest method testGoodSignatures.
@Test(dataProvider = "goodPreserves")
public void testGoodSignatures(String str, int nbVMs, String rcId, int a) throws Exception {
ScriptBuilder b = new ScriptBuilder(new DefaultModel());
Set<SatConstraint> cstrs = b.build("namespace test; VM[1..10] : tiny;\n@N[1..20] : defaultNode;\n" + str).getConstraints();
Assert.assertEquals(cstrs.size(), nbVMs);
Set<VM> vms = new HashSet<>();
for (SatConstraint x : cstrs) {
Assert.assertTrue(x instanceof Preserve);
Assert.assertTrue(vms.addAll(x.getInvolvedVMs()));
Assert.assertEquals(x.isContinuous(), false);
Assert.assertEquals(((Preserve) x).getResource(), rcId);
Assert.assertEquals(((Preserve) x).getAmount(), a);
}
}
use of org.btrplace.btrpsl.ScriptBuilder in project scheduler by btrplace.
the class ReadyBuilderTest method testGoodSignatures.
@Test(dataProvider = "goodReadys")
public void testGoodSignatures(String str, int nbVMs, boolean c) throws Exception {
ScriptBuilder b = new ScriptBuilder(new DefaultModel());
Set<SatConstraint> cstrs = b.build("namespace test; VM[1..10] : tiny;\n@N[1..20] : defaultNode;" + str).getConstraints();
Assert.assertEquals(cstrs.size(), nbVMs);
Set<VM> vms = new HashSet<>();
for (SatConstraint x : cstrs) {
Assert.assertTrue(x instanceof Ready);
Assert.assertTrue(vms.addAll(x.getInvolvedVMs()));
Assert.assertEquals(x.isContinuous(), c);
}
}
Aggregations