Hexagonal pattern: Added Mongo based banking adapter and bound it in Guice production module

This commit is contained in:
Ilkka Seppälä
2016-09-11 23:19:02 +03:00
parent 59e6a0af85
commit e685512ed5
5 changed files with 208 additions and 6 deletions

View File

@@ -32,7 +32,7 @@ import org.junit.Test;
* Tests for banking
*
*/
public class WireTransfersTest {
public class InMemoryBankTest {
private final WireTransfers bank = new InMemoryBank();

View File

@@ -0,0 +1,68 @@
/**
* The MIT License
* Copyright (c) 2014 Ilkka Seppälä
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.iluwatar.hexagonal.banking;
import com.mongodb.MongoClient;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
/**
* Tests for Mongo banking adapter
*/
@Ignore
public class MongoBankTest {
private static final String TEST_HOST = "localhost";
private static final int TEST_PORT = 27017;
private static final String TEST_DB = "lotteryDBTest";
private static final String TEST_ACCOUNTS_COLLECTION = "testAccounts";
private MongoBank mongoBank;
@Before
public void init() {
MongoClient mongoClient = new MongoClient(TEST_HOST, TEST_PORT);
mongoClient.dropDatabase(TEST_DB);
mongoClient.close();
mongoBank = new MongoBank(TEST_HOST, TEST_PORT, TEST_DB, TEST_ACCOUNTS_COLLECTION);
}
@Test
public void testSetup() {
assertEquals(0, mongoBank.getAccountsCollection().count());
}
@Test
public void testFundTransfers() {
assertEquals(0, mongoBank.getFunds("000-000"));
mongoBank.setFunds("000-000", 10);
assertEquals(10, mongoBank.getFunds("000-000"));
assertEquals(0, mongoBank.getFunds("111-111"));
mongoBank.transferFunds(9, "000-000", "111-111");
assertEquals(1, mongoBank.getFunds("000-000"));
assertEquals(9, mongoBank.getFunds("111-111"));
}
}

View File

@@ -44,9 +44,9 @@ public class MongoTicketRepositoryTest {
private static final String TEST_HOST = "localhost";
private static final int TEST_PORT = 27017;
private static final String TEST_DB = "lotteryDB";
private static final String TEST_TICKETS_COLLECTION = "lotteryTickets";
private static final String TEST_COUNTERS_COLLECTION = "counters";
private static final String TEST_DB = "lotteryTestDB";
private static final String TEST_TICKETS_COLLECTION = "lotteryTestTickets";
private static final String TEST_COUNTERS_COLLECTION = "testCounters";
private MongoTicketRepository repository;