use of org.btrplace.scheduler.choco.DefaultReconfigurationProblemBuilder in project scheduler by btrplace.
the class BootableNodeTest method testBasic.
@Test
public void testBasic() throws SchedulerException {
Model mo = new DefaultModel();
Mapping map = mo.getMapping();
Node n1 = mo.newNode();
map.addOfflineNode(n1);
ReconfigurationProblem rp = new DefaultReconfigurationProblemBuilder(mo).build();
BootableNode na = (BootableNode) rp.getNodeAction(n1);
Assert.assertEquals(na.getNode(), n1);
}
use of org.btrplace.scheduler.choco.DefaultReconfigurationProblemBuilder in project scheduler by btrplace.
the class BootableNodeTest method testBootCascade.
@Test
public void testBootCascade() throws SchedulerException, ContradictionException {
Model mo = new DefaultModel();
Mapping map = mo.getMapping();
Node n1 = mo.newNode();
Node n2 = mo.newNode();
map.addOfflineNode(n1);
map.addOfflineNode(n2);
Parameters ps = new DefaultParameters();
DurationEvaluators dev = ps.getDurationEvaluators();
dev.register(BootNode.class, new ConstantActionDuration<>(5));
ReconfigurationProblem rp = new DefaultReconfigurationProblemBuilder(mo).setParams(ps).build();
BootableNode na1 = (BootableNode) rp.getNodeAction(n1);
BootableNode na2 = (BootableNode) rp.getNodeAction(n2);
na1.getState().instantiateTo(1, Cause.Null);
na2.getState().instantiateTo(1, Cause.Null);
rp.getModel().post(rp.getModel().arithm(na1.getEnd(), "=", na2.getEnd()));
new CMinMTTR().inject(ps, rp);
Assert.assertNotNull(rp.solve(0, false));
}
use of org.btrplace.scheduler.choco.DefaultReconfigurationProblemBuilder in project scheduler by btrplace.
the class BootableNodeTest method testForcingBoot.
@Test
public void testForcingBoot() throws SchedulerException, ContradictionException {
Model mo = new DefaultModel();
Mapping map = mo.getMapping();
Node n1 = mo.newNode();
map.addOfflineNode(n1);
Parameters ps = new DefaultParameters();
DurationEvaluators dev = ps.getDurationEvaluators();
dev.register(BootNode.class, new ConstantActionDuration<>(5));
ReconfigurationProblem rp = new DefaultReconfigurationProblemBuilder(mo).setParams(ps).build();
BootableNode na = (BootableNode) rp.getNodeAction(n1);
na.getState().instantiateTo(1, Cause.Null);
ReconfigurationPlan p = rp.solve(0, false);
Assert.assertNotNull(p);
Assert.assertEquals(na.getDuration().getValue(), 5);
Assert.assertEquals(na.getStart().getValue(), 0);
Assert.assertEquals(na.getEnd().getValue(), 5);
Assert.assertEquals(na.getHostingStart().getValue(), 5);
Assert.assertEquals(na.getHostingEnd().getValue(), 5);
Model res = p.getResult();
Assert.assertTrue(res.getMapping().isOnline(n1));
}
use of org.btrplace.scheduler.choco.DefaultReconfigurationProblemBuilder in project scheduler by btrplace.
the class KillVMTest method testBasics.
/**
* Test the action model with different action models.
*
* @throws ContradictionException
* @throws org.btrplace.scheduler.SchedulerException
*/
@Test
public void testBasics() throws ContradictionException, SchedulerException {
Model mo = new DefaultModel();
Mapping map = mo.getMapping();
Node n1 = mo.newNode();
map.addOnlineNode(n1);
VM vm1 = mo.newVM();
map.addRunningVM(vm1, n1);
VM vm2 = mo.newVM();
map.addReadyVM(vm2);
VM vm3 = mo.newVM();
map.addSleepingVM(vm3, n1);
Set<VM> empty = new HashSet<>();
DurationEvaluators dev = new DurationEvaluators();
dev.register(org.btrplace.plan.event.KillVM.class, new ConstantActionDuration<>(1));
Parameters ps = new DefaultParameters();
ReconfigurationProblem rp = new DefaultReconfigurationProblemBuilder(mo).setNextVMsStates(empty, empty, empty, map.getAllVMs()).setParams(ps).build();
rp.getNodeAction(n1).getState().instantiateTo(rp.getVM(vm1), Cause.Null);
// Common stuff
for (VM vm : map.getAllVMs()) {
KillVM m = (KillVM) rp.getVMAction(vm);
Assert.assertEquals(vm, m.getVM());
Assert.assertTrue(m.getState().isInstantiatedTo(0));
Assert.assertNull(m.getDSlice());
Assert.assertTrue(m.getDuration().isInstantiatedTo(1));
Assert.assertTrue(m.getStart().isInstantiatedTo(0));
Assert.assertTrue(m.getEnd().isInstantiatedTo(1));
}
// The waiting and the sleeping VM have no CSlice
Assert.assertNull(rp.getVMAction(vm2).getCSlice());
Assert.assertNull(rp.getVMAction(vm3).getCSlice());
// The running VM has a CSlice
Assert.assertNotNull(rp.getVMAction(vm1).getCSlice());
Assert.assertTrue(rp.getVMAction(vm1).getCSlice().getHoster().isInstantiatedTo(rp.getNode(n1)));
new CMinMTTR().inject(ps, rp);
ReconfigurationPlan p = rp.solve(0, false);
Assert.assertNotNull(p);
for (Action a : p) {
if (a instanceof org.btrplace.plan.event.KillVM) {
org.btrplace.plan.event.KillVM vma = (org.btrplace.plan.event.KillVM) a;
Assert.assertEquals(1, a.getEnd());
Assert.assertEquals(0, a.getStart());
if (vma.getVM().equals(vm1) || vma.getVM().equals(vm3)) {
Assert.assertEquals(vma.getNode(), n1);
} else if (vma.getVM().equals(vm2)) {
Assert.assertNull(vma.getNode());
} else {
Assert.fail();
}
}
}
}
use of org.btrplace.scheduler.choco.DefaultReconfigurationProblemBuilder in project scheduler by btrplace.
the class RelocatableVMTest method testForcedReInstantiation.
@Test
public void testForcedReInstantiation() throws SchedulerException, ContradictionException {
Model mo = new DefaultModel();
Mapping map = mo.getMapping();
final VM vm10 = mo.newVM();
Node n1 = mo.newNode();
Node n2 = mo.newNode();
map.addOnlineNode(n1);
map.addOnlineNode(n2);
// Not using vm1 because intPool starts at 0 so their will be multiple (0,1) VMs.
map.addRunningVM(vm10, n1);
Parameters ps = new DefaultParameters();
DurationEvaluators dev = ps.getDurationEvaluators();
dev.register(MigrateVM.class, new ConstantActionDuration<>(20));
dev.register(org.btrplace.plan.event.ForgeVM.class, new ConstantActionDuration<>(3));
dev.register(org.btrplace.plan.event.BootVM.class, new ConstantActionDuration<>(2));
dev.register(org.btrplace.plan.event.ShutdownVM.class, new ConstantActionDuration<>(1));
mo.getAttributes().put(vm10, "template", "small");
mo.getAttributes().put(vm10, "clone", true);
ReconfigurationProblem rp = new DefaultReconfigurationProblemBuilder(mo).setNextVMsStates(Collections.emptySet(), map.getAllVMs(), Collections.emptySet(), Collections.emptySet()).setParams(ps).setManageableVMs(map.getAllVMs()).build();
RelocatableVM am = (RelocatableVM) rp.getVMAction(vm10);
am.getRelocationMethod().instantiateTo(1, Cause.Null);
am.getDSlice().getHoster().instantiateTo(rp.getNode(n2), Cause.Null);
new CMinMTTR().inject(ps, rp);
ReconfigurationPlan p = rp.solve(10, true);
Assert.assertNotNull(p);
Assert.assertTrue(am.getRelocationMethod().isInstantiatedTo(1));
Assert.assertEquals(p.getSize(), 3);
Model res = p.getResult();
// Check the VM has been relocated
Assert.assertEquals(res.getMapping().getRunningVMs(n1).size(), 0);
Assert.assertEquals(res.getMapping().getRunningVMs(n2).size(), 1);
Assert.assertNotNull(p);
// Check for the actions duration
for (Action a : p) {
if (a instanceof org.btrplace.plan.event.ForgeVM) {
Assert.assertEquals(a.getEnd() - a.getStart(), 3);
} else if (a instanceof org.btrplace.plan.event.ShutdownVM) {
Assert.assertEquals(a.getEnd() - a.getStart(), 1);
} else if (a instanceof org.btrplace.plan.event.BootVM) {
Assert.assertEquals(a.getEnd() - a.getStart(), 2);
} else {
Assert.fail();
}
}
}
Aggregations