Search in sources :

Example 6 with LotteryTicketId

use of com.iluwatar.hexagonal.domain.LotteryTicketId in project java-design-patterns by iluwatar.

the class SampleData method submitTickets.

/**
   * Inserts lottery tickets into the database based on the sample data
   */
public static void submitTickets(LotteryService lotteryService, int numTickets) {
    for (int i = 0; i < numTickets; i++) {
        LotteryTicket ticket = new LotteryTicket(new LotteryTicketId(), getRandomPlayerDetails(), LotteryNumbers.createRandom());
        lotteryService.submitTicket(ticket);
    }
}
Also used : LotteryTicketId(com.iluwatar.hexagonal.domain.LotteryTicketId) LotteryTicket(com.iluwatar.hexagonal.domain.LotteryTicket)

Example 7 with LotteryTicketId

use of com.iluwatar.hexagonal.domain.LotteryTicketId in project java-design-patterns by iluwatar.

the class ConsoleLottery method submitTicket.

private static void submitTicket(LotteryService service, Scanner scanner) {
    LOGGER.info("What is your email address?");
    String email = readString(scanner);
    LOGGER.info("What is your bank account number?");
    String account = readString(scanner);
    LOGGER.info("What is your phone number?");
    String phone = readString(scanner);
    PlayerDetails details = new PlayerDetails(email, account, phone);
    LOGGER.info("Give 4 comma separated lottery numbers?");
    String numbers = readString(scanner);
    try {
        String[] parts = numbers.split(",");
        Set<Integer> chosen = new HashSet<>();
        for (int i = 0; i < 4; i++) {
            chosen.add(Integer.parseInt(parts[i]));
        }
        LotteryNumbers lotteryNumbers = LotteryNumbers.create(chosen);
        LotteryTicket lotteryTicket = new LotteryTicket(new LotteryTicketId(), details, lotteryNumbers);
        Optional<LotteryTicketId> id = service.submitTicket(lotteryTicket);
        if (id.isPresent()) {
            LOGGER.info("Submitted lottery ticket with id: {}", id.get());
        } else {
            LOGGER.info("Failed submitting lottery ticket - please try again.");
        }
    } catch (Exception e) {
        LOGGER.info("Failed submitting lottery ticket - please try again.");
    }
}
Also used : LotteryNumbers(com.iluwatar.hexagonal.domain.LotteryNumbers) LotteryTicketId(com.iluwatar.hexagonal.domain.LotteryTicketId) PlayerDetails(com.iluwatar.hexagonal.domain.PlayerDetails) HashSet(java.util.HashSet) LotteryTicket(com.iluwatar.hexagonal.domain.LotteryTicket)

Example 8 with LotteryTicketId

use of com.iluwatar.hexagonal.domain.LotteryTicketId in project java-design-patterns by iluwatar.

the class InMemoryTicketRepositoryTest method testCrudOperations.

@Test
public void testCrudOperations() {
    LotteryTicketRepository repository = new InMemoryTicketRepository();
    assertEquals(repository.findAll().size(), 0);
    LotteryTicket ticket = LotteryTestUtils.createLotteryTicket();
    Optional<LotteryTicketId> id = repository.save(ticket);
    assertTrue(id.isPresent());
    assertEquals(repository.findAll().size(), 1);
    Optional<LotteryTicket> optionalTicket = repository.findById(id.get());
    assertTrue(optionalTicket.isPresent());
}
Also used : LotteryTicketId(com.iluwatar.hexagonal.domain.LotteryTicketId) LotteryTicket(com.iluwatar.hexagonal.domain.LotteryTicket) Test(org.junit.Test)

Example 9 with LotteryTicketId

use of com.iluwatar.hexagonal.domain.LotteryTicketId in project java-design-patterns by iluwatar.

the class MongoTicketRepositoryTest method testCrudOperations.

@Test
public void testCrudOperations() {
    // create new lottery ticket and save it
    PlayerDetails details = new PlayerDetails("foo@bar.com", "123-123", "07001234");
    LotteryNumbers random = LotteryNumbers.createRandom();
    LotteryTicket original = new LotteryTicket(new LotteryTicketId(), details, random);
    Optional<LotteryTicketId> saved = repository.save(original);
    assertEquals(1, repository.getTicketsCollection().count());
    assertTrue(saved.isPresent());
    // fetch the saved lottery ticket from database and check its contents
    Optional<LotteryTicket> found = repository.findById(saved.get());
    assertTrue(found.isPresent());
    LotteryTicket ticket = found.get();
    assertEquals("foo@bar.com", ticket.getPlayerDetails().getEmail());
    assertEquals("123-123", ticket.getPlayerDetails().getBankAccount());
    assertEquals("07001234", ticket.getPlayerDetails().getPhoneNumber());
    assertEquals(original.getNumbers(), ticket.getNumbers());
    // clear the collection
    repository.deleteAll();
    assertEquals(0, repository.getTicketsCollection().count());
}
Also used : LotteryNumbers(com.iluwatar.hexagonal.domain.LotteryNumbers) LotteryTicketId(com.iluwatar.hexagonal.domain.LotteryTicketId) PlayerDetails(com.iluwatar.hexagonal.domain.PlayerDetails) LotteryTicket(com.iluwatar.hexagonal.domain.LotteryTicket) Test(org.junit.Test)

Example 10 with LotteryTicketId

use of com.iluwatar.hexagonal.domain.LotteryTicketId in project java-design-patterns by iluwatar.

the class LotteryTestUtils method createLotteryTicket.

/**
   * @return lottery ticket
   */
public static LotteryTicket createLotteryTicket(String email, String account, String phone, Set<Integer> givenNumbers) {
    PlayerDetails details = new PlayerDetails(email, account, phone);
    LotteryNumbers numbers = LotteryNumbers.create(givenNumbers);
    return new LotteryTicket(new LotteryTicketId(), details, numbers);
}
Also used : LotteryNumbers(com.iluwatar.hexagonal.domain.LotteryNumbers) LotteryTicketId(com.iluwatar.hexagonal.domain.LotteryTicketId) PlayerDetails(com.iluwatar.hexagonal.domain.PlayerDetails) LotteryTicket(com.iluwatar.hexagonal.domain.LotteryTicket)

Aggregations

LotteryTicketId (com.iluwatar.hexagonal.domain.LotteryTicketId)10 LotteryTicket (com.iluwatar.hexagonal.domain.LotteryTicket)7 LotteryNumbers (com.iluwatar.hexagonal.domain.LotteryNumbers)4 PlayerDetails (com.iluwatar.hexagonal.domain.PlayerDetails)4 HashSet (java.util.HashSet)3 Document (org.bson.Document)2 Test (org.junit.Test)2 LotteryTicketCheckResult (com.iluwatar.hexagonal.domain.LotteryTicketCheckResult)1 HashMap (java.util.HashMap)1