Пример #1
0
 @Test
 public void testBasics() {
   AllocateEvent na = new AllocateEvent(vms.get(0), "foo", 3);
   Assert.assertEquals(vms.get(0), na.getVM());
   Assert.assertEquals("foo", na.getResourceId());
   Assert.assertEquals(3, na.getAmount());
   Assert.assertFalse(na.toString().contains("null"));
 }
Пример #2
0
 @Test
 public void testApply() {
   AllocateEvent na = new AllocateEvent(vms.get(0), "foo", 3);
   Model mo = new DefaultModel();
   Mapping map = mo.getMapping();
   map.addOnlineNode(ns.get(0));
   map.addRunningVM(vms.get(0), ns.get(0));
   Assert.assertFalse(na.apply(mo));
   ShareableResource rc = new ShareableResource("foo");
   mo.attach(rc);
   Assert.assertTrue(na.apply(mo));
   Assert.assertEquals(3, rc.getConsumption(vms.get(0)));
 }
Пример #3
0
 @Test
 public void testEqualsHashCode() {
   AllocateEvent na = new AllocateEvent(vms.get(0), "foo", 3);
   AllocateEvent na2 = new AllocateEvent(vms.get(0), "foo", 3);
   Assert.assertFalse(na.equals(new Object()));
   Assert.assertTrue(na.equals(na));
   Assert.assertTrue(na.equals(na2));
   Assert.assertTrue(na2.equals(na));
   Assert.assertEquals(na.hashCode(), na2.hashCode());
   Assert.assertFalse(na.equals(new AllocateEvent(vms.get(1), "foo", 3)));
   Assert.assertFalse(na.equals(new AllocateEvent(vms.get(0), "bar", 3)));
   Assert.assertFalse(na.equals(new AllocateEvent(vms.get(0), "foo", 5)));
 }
Пример #4
0
 @Test
 public void testVisit() {
   ActionVisitor visitor = mock(ActionVisitor.class);
   a.visit(visitor);
   verify(visitor).visit(a);
 }