Search in sources :

Example 1 with SpellDao

use of com.iluwatar.servicelayer.spell.SpellDao in project java-design-patterns by iluwatar.

the class App method initData.

/**
 * Initialize data
 */
public static void initData() {
    // spells
    Spell spell1 = new Spell("Ice dart");
    Spell spell2 = new Spell("Invisibility");
    Spell spell3 = new Spell("Stun bolt");
    Spell spell4 = new Spell("Confusion");
    Spell spell5 = new Spell("Darkness");
    Spell spell6 = new Spell("Fireball");
    Spell spell7 = new Spell("Enchant weapon");
    Spell spell8 = new Spell("Rock armour");
    Spell spell9 = new Spell("Light");
    Spell spell10 = new Spell("Bee swarm");
    Spell spell11 = new Spell("Haste");
    Spell spell12 = new Spell("Levitation");
    Spell spell13 = new Spell("Magic lock");
    Spell spell14 = new Spell("Summon hell bat");
    Spell spell15 = new Spell("Water walking");
    Spell spell16 = new Spell("Magic storm");
    Spell spell17 = new Spell("Entangle");
    SpellDao spellDao = new SpellDaoImpl();
    spellDao.persist(spell1);
    spellDao.persist(spell2);
    spellDao.persist(spell3);
    spellDao.persist(spell4);
    spellDao.persist(spell5);
    spellDao.persist(spell6);
    spellDao.persist(spell7);
    spellDao.persist(spell8);
    spellDao.persist(spell9);
    spellDao.persist(spell10);
    spellDao.persist(spell11);
    spellDao.persist(spell12);
    spellDao.persist(spell13);
    spellDao.persist(spell14);
    spellDao.persist(spell15);
    spellDao.persist(spell16);
    spellDao.persist(spell17);
    // spellbooks
    SpellbookDao spellbookDao = new SpellbookDaoImpl();
    Spellbook spellbook1 = new Spellbook("Book of Orgymon");
    spellbookDao.persist(spellbook1);
    spellbook1.addSpell(spell1);
    spellbook1.addSpell(spell2);
    spellbook1.addSpell(spell3);
    spellbook1.addSpell(spell4);
    spellbookDao.merge(spellbook1);
    Spellbook spellbook2 = new Spellbook("Book of Aras");
    spellbookDao.persist(spellbook2);
    spellbook2.addSpell(spell5);
    spellbook2.addSpell(spell6);
    spellbookDao.merge(spellbook2);
    Spellbook spellbook3 = new Spellbook("Book of Kritior");
    spellbookDao.persist(spellbook3);
    spellbook3.addSpell(spell7);
    spellbook3.addSpell(spell8);
    spellbook3.addSpell(spell9);
    spellbookDao.merge(spellbook3);
    Spellbook spellbook4 = new Spellbook("Book of Tamaex");
    spellbookDao.persist(spellbook4);
    spellbook4.addSpell(spell10);
    spellbook4.addSpell(spell11);
    spellbook4.addSpell(spell12);
    spellbookDao.merge(spellbook4);
    Spellbook spellbook5 = new Spellbook("Book of Idores");
    spellbookDao.persist(spellbook5);
    spellbook5.addSpell(spell13);
    spellbookDao.merge(spellbook5);
    Spellbook spellbook6 = new Spellbook("Book of Opaen");
    spellbookDao.persist(spellbook6);
    spellbook6.addSpell(spell14);
    spellbook6.addSpell(spell15);
    spellbookDao.merge(spellbook6);
    Spellbook spellbook7 = new Spellbook("Book of Kihione");
    spellbookDao.persist(spellbook7);
    spellbook7.addSpell(spell16);
    spellbook7.addSpell(spell17);
    spellbookDao.merge(spellbook7);
    // wizards
    WizardDao wizardDao = new WizardDaoImpl();
    Wizard wizard1 = new Wizard("Aderlard Boud");
    wizardDao.persist(wizard1);
    wizard1.addSpellbook(spellbookDao.findByName("Book of Orgymon"));
    wizard1.addSpellbook(spellbookDao.findByName("Book of Aras"));
    wizardDao.merge(wizard1);
    Wizard wizard2 = new Wizard("Anaxis Bajraktari");
    wizardDao.persist(wizard2);
    wizard2.addSpellbook(spellbookDao.findByName("Book of Kritior"));
    wizard2.addSpellbook(spellbookDao.findByName("Book of Tamaex"));
    wizardDao.merge(wizard2);
    Wizard wizard3 = new Wizard("Xuban Munoa");
    wizardDao.persist(wizard3);
    wizard3.addSpellbook(spellbookDao.findByName("Book of Idores"));
    wizard3.addSpellbook(spellbookDao.findByName("Book of Opaen"));
    wizardDao.merge(wizard3);
    Wizard wizard4 = new Wizard("Blasius Dehooge");
    wizardDao.persist(wizard4);
    wizard4.addSpellbook(spellbookDao.findByName("Book of Kihione"));
    wizardDao.merge(wizard4);
}
Also used : SpellDaoImpl(com.iluwatar.servicelayer.spell.SpellDaoImpl) SpellDao(com.iluwatar.servicelayer.spell.SpellDao) Spellbook(com.iluwatar.servicelayer.spellbook.Spellbook) WizardDao(com.iluwatar.servicelayer.wizard.WizardDao) WizardDaoImpl(com.iluwatar.servicelayer.wizard.WizardDaoImpl) SpellbookDao(com.iluwatar.servicelayer.spellbook.SpellbookDao) SpellbookDaoImpl(com.iluwatar.servicelayer.spellbook.SpellbookDaoImpl) Wizard(com.iluwatar.servicelayer.wizard.Wizard) Spell(com.iluwatar.servicelayer.spell.Spell)

Example 2 with SpellDao

use of com.iluwatar.servicelayer.spell.SpellDao in project java-design-patterns by iluwatar.

the class MagicServiceImplTest method testFindAllSpellbooks.

@Test
public void testFindAllSpellbooks() throws Exception {
    final WizardDao wizardDao = mock(WizardDao.class);
    final SpellbookDao spellbookDao = mock(SpellbookDao.class);
    final SpellDao spellDao = mock(SpellDao.class);
    final MagicServiceImpl service = new MagicServiceImpl(wizardDao, spellbookDao, spellDao);
    verifyZeroInteractions(wizardDao, spellbookDao, spellDao);
    service.findAllSpellbooks();
    verify(spellbookDao).findAll();
    verifyNoMoreInteractions(wizardDao, spellbookDao, spellDao);
}
Also used : SpellDao(com.iluwatar.servicelayer.spell.SpellDao) WizardDao(com.iluwatar.servicelayer.wizard.WizardDao) SpellbookDao(com.iluwatar.servicelayer.spellbook.SpellbookDao) Test(org.junit.jupiter.api.Test)

Example 3 with SpellDao

use of com.iluwatar.servicelayer.spell.SpellDao in project java-design-patterns by iluwatar.

the class MagicServiceImplTest method testFindAllSpells.

@Test
public void testFindAllSpells() throws Exception {
    final WizardDao wizardDao = mock(WizardDao.class);
    final SpellbookDao spellbookDao = mock(SpellbookDao.class);
    final SpellDao spellDao = mock(SpellDao.class);
    final MagicServiceImpl service = new MagicServiceImpl(wizardDao, spellbookDao, spellDao);
    verifyZeroInteractions(wizardDao, spellbookDao, spellDao);
    service.findAllSpells();
    verify(spellDao).findAll();
    verifyNoMoreInteractions(wizardDao, spellbookDao, spellDao);
}
Also used : SpellDao(com.iluwatar.servicelayer.spell.SpellDao) WizardDao(com.iluwatar.servicelayer.wizard.WizardDao) SpellbookDao(com.iluwatar.servicelayer.spellbook.SpellbookDao) Test(org.junit.jupiter.api.Test)

Example 4 with SpellDao

use of com.iluwatar.servicelayer.spell.SpellDao in project java-design-patterns by iluwatar.

the class MagicServiceImplTest method testFindWizardsWithSpell.

@Test
public void testFindWizardsWithSpell() throws Exception {
    final Set<Wizard> wizards = new HashSet<>();
    wizards.add(mock(Wizard.class));
    wizards.add(mock(Wizard.class));
    wizards.add(mock(Wizard.class));
    final Spellbook spellbook = mock(Spellbook.class);
    when(spellbook.getWizards()).thenReturn(wizards);
    final SpellbookDao spellbookDao = mock(SpellbookDao.class);
    final WizardDao wizardDao = mock(WizardDao.class);
    final Spell spell = mock(Spell.class);
    when(spell.getSpellbook()).thenReturn(spellbook);
    final String spellName = "spellname";
    final SpellDao spellDao = mock(SpellDao.class);
    when(spellDao.findByName(eq(spellName))).thenReturn(spell);
    final MagicServiceImpl service = new MagicServiceImpl(wizardDao, spellbookDao, spellDao);
    verifyZeroInteractions(wizardDao, spellbookDao, spellDao, spellbook);
    final List<Wizard> result = service.findWizardsWithSpell(spellName);
    verify(spellDao).findByName(eq(spellName));
    verify(spellbook).getWizards();
    assertNotNull(result);
    assertEquals(3, result.size());
    verifyNoMoreInteractions(wizardDao, spellbookDao, spellDao);
}
Also used : SpellDao(com.iluwatar.servicelayer.spell.SpellDao) Spellbook(com.iluwatar.servicelayer.spellbook.Spellbook) WizardDao(com.iluwatar.servicelayer.wizard.WizardDao) SpellbookDao(com.iluwatar.servicelayer.spellbook.SpellbookDao) Wizard(com.iluwatar.servicelayer.wizard.Wizard) Spell(com.iluwatar.servicelayer.spell.Spell) HashSet(java.util.HashSet) Test(org.junit.jupiter.api.Test)

Example 5 with SpellDao

use of com.iluwatar.servicelayer.spell.SpellDao in project java-design-patterns by iluwatar.

the class MagicServiceImplTest method testFindAllWizards.

@Test
public void testFindAllWizards() throws Exception {
    final WizardDao wizardDao = mock(WizardDao.class);
    final SpellbookDao spellbookDao = mock(SpellbookDao.class);
    final SpellDao spellDao = mock(SpellDao.class);
    final MagicServiceImpl service = new MagicServiceImpl(wizardDao, spellbookDao, spellDao);
    verifyZeroInteractions(wizardDao, spellbookDao, spellDao);
    service.findAllWizards();
    verify(wizardDao).findAll();
    verifyNoMoreInteractions(wizardDao, spellbookDao, spellDao);
}
Also used : SpellDao(com.iluwatar.servicelayer.spell.SpellDao) WizardDao(com.iluwatar.servicelayer.wizard.WizardDao) SpellbookDao(com.iluwatar.servicelayer.spellbook.SpellbookDao) Test(org.junit.jupiter.api.Test)

Aggregations

SpellDao (com.iluwatar.servicelayer.spell.SpellDao)6 SpellbookDao (com.iluwatar.servicelayer.spellbook.SpellbookDao)6 WizardDao (com.iluwatar.servicelayer.wizard.WizardDao)6 Test (org.junit.jupiter.api.Test)5 Spellbook (com.iluwatar.servicelayer.spellbook.Spellbook)3 Wizard (com.iluwatar.servicelayer.wizard.Wizard)3 Spell (com.iluwatar.servicelayer.spell.Spell)2 HashSet (java.util.HashSet)2 SpellDaoImpl (com.iluwatar.servicelayer.spell.SpellDaoImpl)1 SpellbookDaoImpl (com.iluwatar.servicelayer.spellbook.SpellbookDaoImpl)1 WizardDaoImpl (com.iluwatar.servicelayer.wizard.WizardDaoImpl)1