Example #1
0
  @Test
  public void testExceptionsinBatchLifeCycleMethods() {
    LifeCycle lc0 = new LifeCycle();
    lc0.foo = "bar";
    lc0.bar = "order";
    lc0.save();

    LifeCycle lc1 = new LifeCycle();
    lc1.foo = "foo";
    lc1.bar = "order";
    lc1.save();

    MorphiaQuery q = LifeCycle.q("bar", "order");
    LifeCycle.batchDeleteFail = true;
    try {
      q.delete();
    } catch (Exception e) {
      // ignore
    }
    assertEquals(q.count(), 2);
    LifeCycle.batchDeleteFail = false;

    LifeCycle.batchDeletedFail = true;
    try {
      q.delete();
      assertFalse(true);
    } catch (Exception e) {
      // ignore
    }
    assertEquals(q.count(), 0);
    LifeCycle.batchDeletedFail = false;
  }
Example #2
0
  @Test
  public void testLifeCycle() {
    LifeCycle lc = new LifeCycle();
    lc.foo = "bar";
    lc.bar = "xx";

    lc.save();

    t("bar", OnAdd.class, 1);
    t("bar", Added.class, 1);
    t("bar2", OnAdd.class, 1);
    t("bar", Object.class, 2);

    lc.bar = "yy";
    lc.save();

    t("bar", OnAdd.class, 1);
    t("bar", OnUpdate.class, 1);
    t("bar", Updated.class, 1);
    t("bar2", OnUpdate.class, 1);
    t("bar", Object.class, 4);

    lc.bar = "zz";
    lc.save();

    t("bar", OnAdd.class, 1);
    t("bar", OnUpdate.class, 2);
    t("bar", Updated.class, 2);
    t("bar2", OnUpdate.class, 2);
    t("bar", Object.class, 6);

    lc = LifeCycle.q("foo", "bar").get();
    t("bar", OnAdd.class, 1);
    t("bar", OnUpdate.class, 2);
    t("bar", Updated.class, 2);
    t("bar2", OnUpdate.class, 2);
    t("foo", OnLoad.class, 1);
    t("bar", Loaded.class, 1);
    t("bar", Object.class, 7);
    t("foo", Object.class, 1);

    lc.delete();
    t("bar", OnAdd.class, 1);
    t("bar", OnUpdate.class, 2);
    t("bar", Updated.class, 2);
    t("bar2", OnUpdate.class, 2);
    t("bar", OnDelete.class, 1);
    t("bar", Deleted.class, 1);
    t("bar", Object.class, 9);
  }
Example #3
0
  @Test
  public void testBatchDelete() {
    LifeCycle lc0 = new LifeCycle();
    lc0.foo = "bar";
    lc0.bar = "order";
    lc0.save();

    LifeCycle lc1 = new LifeCycle();
    lc1.foo = "foo";
    lc1.bar = "order";
    lc1.save();

    LifeCycle.q("bar", "order").delete();

    t("foobar", OnBatchDelete.class, 2);
    t("foobar", BatchDeleted.class, 2);
  }
Example #4
0
  @Test
  public void testExceptionsinLifeCycleMethods() {
    LifeCycle lc = new LifeCycle();
    lc.foo = "bar";
    lc.bar = "xx";

    lc.addFail = true;
    try {
      lc.save();
    } catch (Exception e) {
      // ignore
    }
    assertTrue(lc.isNew());
    lc.addFail = false;

    lc.addedFail = true;
    try {
      lc.save();
      assertFalse(true);
    } catch (Exception e) {
      // ignore
    }
    assertFalse(lc.isNew());
    lc.addedFail = false;

    lc.bar = "yy";
    lc.updateFail = true;
    try {
      lc.save();
    } catch (Exception e) {
      // ignore
    }
    LifeCycle lc1 = LifeCycle.q("foo", "bar").get();
    assertFalse(lc1.bar.equals(lc.bar));
    lc.updateFail = false;

    lc.updatedFail = true;
    try {
      lc.save();
      assertFalse(true);
    } catch (Exception e) {
      // ignore
    }
    lc1 = LifeCycle.q("foo", "bar").get();
    assertEquals(lc1.bar, lc.bar);
    lc.updatedFail = false;

    LifeCycle.loadFail = true;
    LifeCycle lc2 = null;
    try {
      lc2 = LifeCycle.q("foo", "bar").get();
    } catch (Exception e) {
      // ignore
    }
    assertNull(lc2);
    LifeCycle.loadFail = false;

    LifeCycle.loadedFail = true;
    try {
      lc2 = LifeCycle.q("foo", "bar").get();
      assertFalse(true);
    } catch (Exception e) {
      // ignore
    }
    assertNull(lc2);

    lc.deleteFail = true;
    try {
      lc.delete();
    } catch (Exception e) {
      // ignore
    }
    assertTrue(LifeCycle.q("foo", "bar").count() > 0);
    lc.deleteFail = false;

    lc.deletedFail = true;
    try {
      lc.delete();
      assertFalse(true);
    } catch (Exception e) {
      // ignore
    }
    assertTrue(LifeCycle.q("foo", "bar").count() == 0);
  }
Example #5
0
 @Before
 public void setup() {
   LifeCycle.deleteAll();
   Event.reset();
   LifeCycle.reset();
 }