use of name.abuchen.portfolio.model.BuySellEntry in project portfolio by buchen.
the class INGDiBaPDFExtractorTest method testWertpapierKauf7.
@Test
public void testWertpapierKauf7() throws IOException {
INGDiBaExtractor extractor = new INGDiBaExtractor(new Client());
List<Exception> errors = new ArrayList<Exception>();
List<Item> results = extractor.extract(PDFInputFile.loadTestCase(getClass(), "INGDiBa_Kauf7.txt"), errors);
assertThat(errors, empty());
assertThat(results.size(), is(2));
// check security
Security security = results.stream().filter(i -> i instanceof SecurityItem).findFirst().get().getSecurity();
assertThat(security.getIsin(), is("US0378331005"));
assertThat(security.getWkn(), is("865985"));
assertThat(security.getName(), is("Apple Inc. Registered Shares o.N."));
// check buy sell transaction
BuySellEntry entry = (BuySellEntry) results.stream().filter(i -> i instanceof BuySellEntryItem).findFirst().get().getSubject();
assertThat(entry.getPortfolioTransaction().getType(), is(PortfolioTransaction.Type.BUY));
assertThat(entry.getAccountTransaction().getType(), is(AccountTransaction.Type.BUY));
assertThat(entry.getPortfolioTransaction().getAmount(), is(Values.Amount.factorize(5009.71)));
assertThat(entry.getPortfolioTransaction().getDateTime(), is(LocalDateTime.parse("2012-03-20T00:00")));
assertThat(entry.getPortfolioTransaction().getShares(), is(Values.Share.factorize(11)));
assertThat(entry.getPortfolioTransaction().getUnitSum(Unit.Type.FEE), is(Money.of("EUR", Values.Amount.factorize(12.49))));
}
use of name.abuchen.portfolio.model.BuySellEntry in project portfolio by buchen.
the class INGDiBaPDFExtractorTest method testWertpapierVerkauf1.
@Test
public void testWertpapierVerkauf1() throws IOException {
INGDiBaExtractor extractor = new INGDiBaExtractor(new Client());
List<Exception> errors = new ArrayList<Exception>();
List<Item> results = extractor.extract(PDFInputFile.loadTestCase(getClass(), "INGDiBa_Verkauf1.txt"), errors);
assertThat(errors, empty());
assertThat(results.size(), is(2));
// check security
Security security = results.stream().filter(i -> i instanceof SecurityItem).findFirst().get().getSecurity();
assertThat(security.getIsin(), is("DE0006632003"));
assertThat(security.getWkn(), is("663200"));
assertThat(security.getName(), is("MorphoSys AG Inhaber-Aktien o.N."));
// check buy sell transaction
BuySellEntry entry = (BuySellEntry) results.stream().filter(i -> i instanceof BuySellEntryItem).findFirst().get().getSubject();
assertThat(entry.getPortfolioTransaction().getType(), is(PortfolioTransaction.Type.SELL));
assertThat(entry.getAccountTransaction().getType(), is(AccountTransaction.Type.SELL));
assertThat(entry.getPortfolioTransaction().getAmount(), is(Values.Amount.factorize(1887.64)));
assertThat(entry.getPortfolioTransaction().getDateTime(), is(LocalDateTime.parse("2015-05-07T00:00")));
assertThat(entry.getPortfolioTransaction().getShares(), is(Values.Share.factorize(31)));
assertThat(entry.getPortfolioTransaction().getUnitSum(Unit.Type.FEE), is(Money.of("EUR", 9_90L)));
}
use of name.abuchen.portfolio.model.BuySellEntry in project portfolio by buchen.
the class INGDiBaPDFExtractorTest method testWertpapierKauf6.
@Test
public void testWertpapierKauf6() throws IOException {
INGDiBaExtractor extractor = new INGDiBaExtractor(new Client());
List<Exception> errors = new ArrayList<Exception>();
List<Item> results = extractor.extract(PDFInputFile.loadTestCase(getClass(), "INGDiBa_Kauf6.txt"), errors);
assertThat(errors, empty());
assertThat(results.size(), is(2));
// check security
Security security = results.stream().filter(i -> i instanceof SecurityItem).findFirst().get().getSecurity();
assertThat(security.getIsin(), is("GB0002771383"));
assertThat(security.getWkn(), is("987665"));
assertThat(security.getName(), is("Threadn.Inv.Fds-Euro.Sm.Cos Fd"));
// check buy sell transaction
BuySellEntry entry = (BuySellEntry) results.stream().filter(i -> i instanceof BuySellEntryItem).findFirst().get().getSubject();
assertThat(entry.getPortfolioTransaction().getType(), is(PortfolioTransaction.Type.BUY));
assertThat(entry.getAccountTransaction().getType(), is(AccountTransaction.Type.BUY));
assertThat(entry.getPortfolioTransaction().getAmount(), is(Values.Amount.factorize(50)));
assertThat(entry.getPortfolioTransaction().getDateTime(), is(LocalDateTime.parse("2015-12-15T00:00")));
assertThat(entry.getPortfolioTransaction().getShares(), is(Values.Share.factorize(6.53245)));
assertThat(entry.getPortfolioTransaction().getUnitSum(Unit.Type.FEE), is(Money.of("EUR", 0L)));
}
use of name.abuchen.portfolio.model.BuySellEntry in project portfolio by buchen.
the class OnvistaPDFExtractorTest method testWertpapierKaufBezugsrechte.
@Test
public // Aktien
void testWertpapierKaufBezugsrechte() throws // Aktien
IOException {
OnvistaPDFExtractor extractor = new OnvistaPDFExtractor(new Client());
List<Exception> errors = new ArrayList<Exception>();
List<Item> results = extractor.extract(PDFInputFile.loadTestCase(getClass(), "OnvistaKaufBezugsrechte.txt"), errors);
assertThat(errors, empty());
assertThat(results.size(), is(2));
assertSecurityBuyBezugsrechte(results);
// check buy sell transaction
Optional<Item> item = results.stream().filter(i -> i instanceof BuySellEntryItem).findFirst();
assertThat(item.isPresent(), is(true));
assertThat(item.get().getSubject(), instanceOf(BuySellEntry.class));
BuySellEntry entry = (BuySellEntry) item.get().getSubject();
assertThat(entry.getPortfolioTransaction().getType(), is(PortfolioTransaction.Type.BUY));
assertThat(entry.getAccountTransaction().getType(), is(AccountTransaction.Type.BUY));
assertThat(entry.getPortfolioTransaction().getCurrencyCode(), is(CurrencyUnit.EUR));
assertThat(entry.getPortfolioTransaction().getMonetaryAmount(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(6.40))));
assertThat(entry.getPortfolioTransaction().getDateTime(), is(LocalDateTime.parse("2011-05-30T12:19")));
assertThat(entry.getPortfolioTransaction().getShares(), is(Values.Share.factorize(8)));
}
use of name.abuchen.portfolio.model.BuySellEntry in project portfolio by buchen.
the class OnvistaPDFExtractorTest method testMultiTypeDocument.
@Test
public void testMultiTypeDocument() throws IOException {
OnvistaPDFExtractor extractor = new OnvistaPDFExtractor(new Client());
List<Exception> errors = new ArrayList<Exception>();
List<Item> results = extractor.extract(PDFInputFile.loadTestCase(getClass(), "OnvistaMultiTypePDFDokument.txt"), errors);
assertThat(errors, empty());
assertThat(results.size(), is(5));
new AssertImportActions().check(results, CurrencyUnit.EUR);
List<Item> securities = results.stream().filter(i -> i instanceof SecurityItem).collect(Collectors.toList());
assertThat(securities.isEmpty(), is(false));
Item mphSecurity = securities.get(0);
assertThat(mphSecurity.getSubject(), instanceOf(Security.class));
assertThat(((Security) mphSecurity.getSubject()).getIsin(), is("DE000A0L1H32"));
Item paragonSecurity = securities.get(1);
assertThat(paragonSecurity.getSubject(), instanceOf(Security.class));
assertThat(((Security) paragonSecurity.getSubject()).getIsin(), is("DE0005558696"));
List<Item> buySellItems = results.stream().filter(i -> i instanceof BuySellEntryItem).collect(Collectors.toList());
assertThat(buySellItems.isEmpty(), is(false));
Optional<Item> taxReturnOption = results.stream().filter(i -> i instanceof TransactionItem).findFirst();
assertTrue(taxReturnOption.isPresent());
Item mph = buySellItems.get(0);
assertNotNull(mph);
assertThat(mph.getSubject(), instanceOf(BuySellEntry.class));
BuySellEntry mphEntry = (BuySellEntry) mph.getSubject();
assertThat(mphEntry.getPortfolioTransaction().getType(), is(PortfolioTransaction.Type.SELL));
assertThat(mphEntry.getAccountTransaction().getType(), is(AccountTransaction.Type.SELL));
assertThat(mphEntry.getPortfolioTransaction().getCurrencyCode(), is(CurrencyUnit.EUR));
assertThat(mphEntry.getPortfolioTransaction().getShares(), is(Values.Share.factorize(14)));
assertThat(mphEntry.getPortfolioTransaction().getMonetaryAmount(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(32.70))));
assertThat(mphEntry.getPortfolioTransaction().getDateTime(), is(LocalDateTime.parse("2016-09-14T09:02")));
assertThat(mphEntry.getPortfolioTransaction().getUnitSum(Unit.Type.FEE), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(6.5))));
Item paragon = buySellItems.get(1);
assertNotNull(paragon);
assertThat(paragon.getSubject(), instanceOf(BuySellEntry.class));
BuySellEntry paragonEntry = (BuySellEntry) paragon.getSubject();
assertThat(paragonEntry.getPortfolioTransaction().getType(), is(PortfolioTransaction.Type.SELL));
assertThat(paragonEntry.getAccountTransaction().getType(), is(AccountTransaction.Type.SELL));
assertThat(paragonEntry.getPortfolioTransaction().getCurrencyCode(), is(CurrencyUnit.EUR));
assertThat(paragonEntry.getPortfolioTransaction().getShares(), is(Values.Share.factorize(55)));
assertThat(paragonEntry.getPortfolioTransaction().getMonetaryAmount(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(1665.41))));
assertThat(paragonEntry.getPortfolioTransaction().getDateTime(), is(LocalDateTime.parse("2016-09-14T12:54")));
assertThat(paragonEntry.getPortfolioTransaction().getUnitSum(Unit.Type.FEE), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(6.5))));
assertThat(paragonEntry.getPortfolioTransaction().getUnitSum(Unit.Type.TAX), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(5.04))));
// check tax return
Item taxReturnItem = taxReturnOption.get();
assertNotNull(taxReturnItem);
assertThat(taxReturnItem.getSubject(), instanceOf(AccountTransaction.class));
AccountTransaction taxReturnEntry = (AccountTransaction) taxReturnItem.getSubject();
assertThat(taxReturnEntry.getMonetaryAmount(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(1.18))));
assertThat(taxReturnEntry.getDateTime(), is(is(LocalDateTime.parse("2016-09-14T00:00"))));
Security taxReturnSecurity = taxReturnEntry.getSecurity();
assertThat(((Security) mphSecurity.getSubject()).getIsin(), is(taxReturnSecurity.getIsin()));
}
Aggregations