Search in sources :

Example 31 with Extractor

use of name.abuchen.portfolio.datatransfer.Extractor in project portfolio by buchen.

the class OnvistaPDFExtractorTest method testUmtauschFonds.

@Test
public void testUmtauschFonds() throws IOException {
    OnvistaPDFExtractor extractor = new OnvistaPDFExtractor(new Client());
    List<Exception> errors = new ArrayList<Exception>();
    List<Item> results = extractor.extract(PDFInputFile.loadTestCase(getClass(), "OnvistaUmtauschFonds.txt"), errors);
    assertThat(errors, empty());
    assertThat(results.size(), is(6));
    // check security
    Security security = assertSecurityUmtauschZiel(results);
    // check transaction (target security, in)
    Optional<Item> item = // 
    results.stream().filter(i -> i.getSubject() instanceof PortfolioTransaction).filter(i -> ((PortfolioTransaction) i.getSubject()).getType() == PortfolioTransaction.Type.DELIVERY_INBOUND).findFirst();
    assertThat(item.isPresent(), is(true));
    assertThat(item.get().getSubject(), instanceOf(PortfolioTransaction.class));
    PortfolioTransaction transaction = (PortfolioTransaction) item.get().getSubject();
    assertThat(transaction.getType(), is(PortfolioTransaction.Type.DELIVERY_INBOUND));
    assertThat(transaction.getSecurity(), is(security));
    assertThat(transaction.getCurrencyCode(), is(CurrencyUnit.EUR));
    assertThat(transaction.getDateTime(), is(LocalDateTime.parse("2015-11-26T00:00")));
    assertThat(transaction.getShares(), is(Values.Share.factorize(156.729)));
    assertThat(transaction.getUnitSum(Unit.Type.TAX), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(0.00))));
    assertThat(transaction.getMonetaryAmount(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(0.00))));
    // check Steuererstattung
    Item itemTaxReturn = // 
    results.stream().filter(i -> i.getSubject() instanceof AccountTransaction).filter(i -> ((AccountTransaction) i.getSubject()).getType() == AccountTransaction.Type.TAX_REFUND).findFirst().get();
    AccountTransaction entryTaxReturn = (AccountTransaction) itemTaxReturn.getSubject();
    assertThat(entryTaxReturn.getType(), is(AccountTransaction.Type.TAX_REFUND));
    assertThat(entryTaxReturn.getMonetaryAmount(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(7.90))));
    assertThat(entryTaxReturn.getDateTime(), is(is(LocalDateTime.parse("2015-11-26T00:00"))));
    // check security (original)
    assertSecurityUmtauschOriginal(results.stream().filter(i -> i instanceof SecurityItem).collect(Collectors.toList()).get(1));
    Item targetItem = // 
    results.stream().filter(i -> i.getSubject() instanceof PortfolioTransaction).filter(i -> ((PortfolioTransaction) i.getSubject()).getType() == PortfolioTransaction.Type.DELIVERY_OUTBOUND).findFirst().get();
    // check transaction (original security, out)
    PortfolioTransaction entry2 = (PortfolioTransaction) targetItem.getSubject();
    assertThat(entry2.getType(), is(PortfolioTransaction.Type.DELIVERY_OUTBOUND));
    assertThat(entry2.getCurrencyCode(), is(CurrencyUnit.EUR));
    assertThat(entry2.getDateTime(), is(LocalDateTime.parse("2015-11-23T00:00")));
    assertThat(entry2.getShares(), is(Values.Share.factorize(28)));
    assertThat(entry2.getUnitSum(Unit.Type.TAX), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(12.86))));
    assertThat(entry2.getMonetaryAmount(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(12.86))));
    // check Steuerbuchung
    Item itemTax = // 
    results.stream().filter(i -> i.getSubject() instanceof AccountTransaction).filter(i -> ((AccountTransaction) i.getSubject()).getType() == AccountTransaction.Type.TAXES).findFirst().get();
    AccountTransaction entryTax = (AccountTransaction) itemTax.getSubject();
    assertThat(entryTax.getType(), is(AccountTransaction.Type.TAXES));
    assertThat(entryTax.getMonetaryAmount(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(12.86))));
    assertThat(entryTax.getDateTime(), is(is(LocalDateTime.parse("2015-11-23T00:00"))));
}
Also used : CoreMatchers.is(org.hamcrest.CoreMatchers.is) PortfolioTransaction(name.abuchen.portfolio.model.PortfolioTransaction) Money(name.abuchen.portfolio.money.Money) Values(name.abuchen.portfolio.money.Values) Client(name.abuchen.portfolio.model.Client) Item(name.abuchen.portfolio.datatransfer.Extractor.Item) CurrencyUnit(name.abuchen.portfolio.money.CurrencyUnit) LocalDateTime(java.time.LocalDateTime) IsEmptyCollection.empty(org.hamcrest.collection.IsEmptyCollection.empty) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) OnvistaPDFExtractor(name.abuchen.portfolio.datatransfer.pdf.OnvistaPDFExtractor) ArrayList(java.util.ArrayList) CoreMatchers.instanceOf(org.hamcrest.CoreMatchers.instanceOf) Assert.assertThat(org.junit.Assert.assertThat) Extractor(name.abuchen.portfolio.datatransfer.Extractor) TransactionItem(name.abuchen.portfolio.datatransfer.Extractor.TransactionItem) BuySellEntry(name.abuchen.portfolio.model.BuySellEntry) BuySellEntryItem(name.abuchen.portfolio.datatransfer.Extractor.BuySellEntryItem) PDFInputFile(name.abuchen.portfolio.datatransfer.pdf.PDFInputFile) Assert.assertNotNull(org.junit.Assert.assertNotNull) AccountTransaction(name.abuchen.portfolio.model.AccountTransaction) Assert.assertTrue(org.junit.Assert.assertTrue) IOException(java.io.IOException) Test(org.junit.Test) Security(name.abuchen.portfolio.model.Security) Collectors(java.util.stream.Collectors) List(java.util.List) AssertImportActions(name.abuchen.portfolio.datatransfer.actions.AssertImportActions) Unit(name.abuchen.portfolio.model.Transaction.Unit) Optional(java.util.Optional) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) ArrayList(java.util.ArrayList) AccountTransaction(name.abuchen.portfolio.model.AccountTransaction) Security(name.abuchen.portfolio.model.Security) IOException(java.io.IOException) OnvistaPDFExtractor(name.abuchen.portfolio.datatransfer.pdf.OnvistaPDFExtractor) Item(name.abuchen.portfolio.datatransfer.Extractor.Item) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) TransactionItem(name.abuchen.portfolio.datatransfer.Extractor.TransactionItem) BuySellEntryItem(name.abuchen.portfolio.datatransfer.Extractor.BuySellEntryItem) PortfolioTransaction(name.abuchen.portfolio.model.PortfolioTransaction) Client(name.abuchen.portfolio.model.Client) Test(org.junit.Test)

Example 32 with Extractor

use of name.abuchen.portfolio.datatransfer.Extractor in project portfolio by buchen.

the class OnvistaPDFExtractorTest method testErtragsgutschriftKupon.

@Test
public void testErtragsgutschriftKupon() throws IOException {
    OnvistaPDFExtractor extractor = new OnvistaPDFExtractor(new Client());
    List<Exception> errors = new ArrayList<Exception>();
    List<Item> results = extractor.extract(PDFInputFile.loadTestCase(getClass(), "OnvistaErtragsgutschriftKupon.txt"), errors);
    assertThat(errors, empty());
    assertThat(results.size(), is(2));
    // check security
    Optional<Item> item = results.stream().filter(i -> i instanceof SecurityItem).findFirst();
    assertThat(item.isPresent(), is(true));
    Security security = assertSecurityErtragsgutschriftKupon((SecurityItem) item.get());
    // check transaction
    Optional<Item> transactionItem = results.stream().filter(i -> i instanceof TransactionItem).findFirst();
    assertThat(transactionItem.isPresent(), is(true));
    assertThat(transactionItem.get().getSubject(), instanceOf(AccountTransaction.class));
    AccountTransaction transaction = (AccountTransaction) transactionItem.get().getSubject();
    assertThat(transaction.getType(), is(AccountTransaction.Type.DIVIDENDS));
    assertThat(transaction.getSecurity(), is(security));
    assertThat(transaction.getCurrencyCode(), is(CurrencyUnit.EUR));
    assertThat(transaction.getDateTime(), is(LocalDateTime.parse("2010-11-17T00:00")));
    assertThat(transaction.getMonetaryAmount(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(1.14))));
    assertThat(transaction.getShares(), is(Values.Share.factorize(1)));
    assertThat(transaction.getUnitSum(Unit.Type.TAX), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(0.41))));
}
Also used : CoreMatchers.is(org.hamcrest.CoreMatchers.is) PortfolioTransaction(name.abuchen.portfolio.model.PortfolioTransaction) Money(name.abuchen.portfolio.money.Money) Values(name.abuchen.portfolio.money.Values) Client(name.abuchen.portfolio.model.Client) Item(name.abuchen.portfolio.datatransfer.Extractor.Item) CurrencyUnit(name.abuchen.portfolio.money.CurrencyUnit) LocalDateTime(java.time.LocalDateTime) IsEmptyCollection.empty(org.hamcrest.collection.IsEmptyCollection.empty) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) OnvistaPDFExtractor(name.abuchen.portfolio.datatransfer.pdf.OnvistaPDFExtractor) ArrayList(java.util.ArrayList) CoreMatchers.instanceOf(org.hamcrest.CoreMatchers.instanceOf) Assert.assertThat(org.junit.Assert.assertThat) Extractor(name.abuchen.portfolio.datatransfer.Extractor) TransactionItem(name.abuchen.portfolio.datatransfer.Extractor.TransactionItem) BuySellEntry(name.abuchen.portfolio.model.BuySellEntry) BuySellEntryItem(name.abuchen.portfolio.datatransfer.Extractor.BuySellEntryItem) PDFInputFile(name.abuchen.portfolio.datatransfer.pdf.PDFInputFile) Assert.assertNotNull(org.junit.Assert.assertNotNull) AccountTransaction(name.abuchen.portfolio.model.AccountTransaction) Assert.assertTrue(org.junit.Assert.assertTrue) IOException(java.io.IOException) Test(org.junit.Test) Security(name.abuchen.portfolio.model.Security) Collectors(java.util.stream.Collectors) List(java.util.List) AssertImportActions(name.abuchen.portfolio.datatransfer.actions.AssertImportActions) Unit(name.abuchen.portfolio.model.Transaction.Unit) Optional(java.util.Optional) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) TransactionItem(name.abuchen.portfolio.datatransfer.Extractor.TransactionItem) ArrayList(java.util.ArrayList) AccountTransaction(name.abuchen.portfolio.model.AccountTransaction) Security(name.abuchen.portfolio.model.Security) IOException(java.io.IOException) OnvistaPDFExtractor(name.abuchen.portfolio.datatransfer.pdf.OnvistaPDFExtractor) Item(name.abuchen.portfolio.datatransfer.Extractor.Item) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) TransactionItem(name.abuchen.portfolio.datatransfer.Extractor.TransactionItem) BuySellEntryItem(name.abuchen.portfolio.datatransfer.Extractor.BuySellEntryItem) Client(name.abuchen.portfolio.model.Client) Test(org.junit.Test)

Example 33 with Extractor

use of name.abuchen.portfolio.datatransfer.Extractor 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)));
}
Also used : CoreMatchers.is(org.hamcrest.CoreMatchers.is) PortfolioTransaction(name.abuchen.portfolio.model.PortfolioTransaction) Money(name.abuchen.portfolio.money.Money) Values(name.abuchen.portfolio.money.Values) Client(name.abuchen.portfolio.model.Client) Item(name.abuchen.portfolio.datatransfer.Extractor.Item) CurrencyUnit(name.abuchen.portfolio.money.CurrencyUnit) LocalDateTime(java.time.LocalDateTime) IsEmptyCollection.empty(org.hamcrest.collection.IsEmptyCollection.empty) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) OnvistaPDFExtractor(name.abuchen.portfolio.datatransfer.pdf.OnvistaPDFExtractor) ArrayList(java.util.ArrayList) CoreMatchers.instanceOf(org.hamcrest.CoreMatchers.instanceOf) Assert.assertThat(org.junit.Assert.assertThat) Extractor(name.abuchen.portfolio.datatransfer.Extractor) TransactionItem(name.abuchen.portfolio.datatransfer.Extractor.TransactionItem) BuySellEntry(name.abuchen.portfolio.model.BuySellEntry) BuySellEntryItem(name.abuchen.portfolio.datatransfer.Extractor.BuySellEntryItem) PDFInputFile(name.abuchen.portfolio.datatransfer.pdf.PDFInputFile) Assert.assertNotNull(org.junit.Assert.assertNotNull) AccountTransaction(name.abuchen.portfolio.model.AccountTransaction) Assert.assertTrue(org.junit.Assert.assertTrue) IOException(java.io.IOException) Test(org.junit.Test) Security(name.abuchen.portfolio.model.Security) Collectors(java.util.stream.Collectors) List(java.util.List) AssertImportActions(name.abuchen.portfolio.datatransfer.actions.AssertImportActions) Unit(name.abuchen.portfolio.model.Transaction.Unit) Optional(java.util.Optional) OnvistaPDFExtractor(name.abuchen.portfolio.datatransfer.pdf.OnvistaPDFExtractor) Item(name.abuchen.portfolio.datatransfer.Extractor.Item) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) TransactionItem(name.abuchen.portfolio.datatransfer.Extractor.TransactionItem) BuySellEntryItem(name.abuchen.portfolio.datatransfer.Extractor.BuySellEntryItem) BuySellEntry(name.abuchen.portfolio.model.BuySellEntry) BuySellEntryItem(name.abuchen.portfolio.datatransfer.Extractor.BuySellEntryItem) ArrayList(java.util.ArrayList) Client(name.abuchen.portfolio.model.Client) IOException(java.io.IOException) Test(org.junit.Test)

Example 34 with Extractor

use of name.abuchen.portfolio.datatransfer.Extractor in project portfolio by buchen.

the class OnvistaPDFExtractorTest method testKontoauszugMehrereBuchungen.

@Test
public void testKontoauszugMehrereBuchungen() throws IOException {
    OnvistaPDFExtractor extractor = new OnvistaPDFExtractor(new Client());
    List<Exception> errors = new ArrayList<Exception>();
    List<Item> results = extractor.extract(PDFInputFile.loadTestCase(getClass(), "OnvistaKontoauszugMehrereBuchungen.txt"), errors);
    assertThat(errors, empty());
    assertThat(results.size(), is(1));
    new AssertImportActions().check(results, CurrencyUnit.EUR);
    Optional<Item> item = results.stream().filter(i -> i instanceof TransactionItem).findFirst();
    assertThat(item.isPresent(), is(true));
    assertThat(item.get().getSubject(), instanceOf(AccountTransaction.class));
    AccountTransaction transaction = (AccountTransaction) item.get().getSubject();
    assertThat(transaction.getType(), is(AccountTransaction.Type.REMOVAL));
    assertThat(transaction.getDateTime(), is(LocalDateTime.parse("2015-04-03T00:00")));
    assertThat(transaction.getMonetaryAmount(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(0.62))));
}
Also used : CoreMatchers.is(org.hamcrest.CoreMatchers.is) PortfolioTransaction(name.abuchen.portfolio.model.PortfolioTransaction) Money(name.abuchen.portfolio.money.Money) Values(name.abuchen.portfolio.money.Values) Client(name.abuchen.portfolio.model.Client) Item(name.abuchen.portfolio.datatransfer.Extractor.Item) CurrencyUnit(name.abuchen.portfolio.money.CurrencyUnit) LocalDateTime(java.time.LocalDateTime) IsEmptyCollection.empty(org.hamcrest.collection.IsEmptyCollection.empty) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) OnvistaPDFExtractor(name.abuchen.portfolio.datatransfer.pdf.OnvistaPDFExtractor) ArrayList(java.util.ArrayList) CoreMatchers.instanceOf(org.hamcrest.CoreMatchers.instanceOf) Assert.assertThat(org.junit.Assert.assertThat) Extractor(name.abuchen.portfolio.datatransfer.Extractor) TransactionItem(name.abuchen.portfolio.datatransfer.Extractor.TransactionItem) BuySellEntry(name.abuchen.portfolio.model.BuySellEntry) BuySellEntryItem(name.abuchen.portfolio.datatransfer.Extractor.BuySellEntryItem) PDFInputFile(name.abuchen.portfolio.datatransfer.pdf.PDFInputFile) Assert.assertNotNull(org.junit.Assert.assertNotNull) AccountTransaction(name.abuchen.portfolio.model.AccountTransaction) Assert.assertTrue(org.junit.Assert.assertTrue) IOException(java.io.IOException) Test(org.junit.Test) Security(name.abuchen.portfolio.model.Security) Collectors(java.util.stream.Collectors) List(java.util.List) AssertImportActions(name.abuchen.portfolio.datatransfer.actions.AssertImportActions) Unit(name.abuchen.portfolio.model.Transaction.Unit) Optional(java.util.Optional) OnvistaPDFExtractor(name.abuchen.portfolio.datatransfer.pdf.OnvistaPDFExtractor) Item(name.abuchen.portfolio.datatransfer.Extractor.Item) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) TransactionItem(name.abuchen.portfolio.datatransfer.Extractor.TransactionItem) BuySellEntryItem(name.abuchen.portfolio.datatransfer.Extractor.BuySellEntryItem) TransactionItem(name.abuchen.portfolio.datatransfer.Extractor.TransactionItem) ArrayList(java.util.ArrayList) AccountTransaction(name.abuchen.portfolio.model.AccountTransaction) Client(name.abuchen.portfolio.model.Client) IOException(java.io.IOException) AssertImportActions(name.abuchen.portfolio.datatransfer.actions.AssertImportActions) Test(org.junit.Test)

Example 35 with Extractor

use of name.abuchen.portfolio.datatransfer.Extractor 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()));
}
Also used : CoreMatchers.is(org.hamcrest.CoreMatchers.is) PortfolioTransaction(name.abuchen.portfolio.model.PortfolioTransaction) Money(name.abuchen.portfolio.money.Money) Values(name.abuchen.portfolio.money.Values) Client(name.abuchen.portfolio.model.Client) Item(name.abuchen.portfolio.datatransfer.Extractor.Item) CurrencyUnit(name.abuchen.portfolio.money.CurrencyUnit) LocalDateTime(java.time.LocalDateTime) IsEmptyCollection.empty(org.hamcrest.collection.IsEmptyCollection.empty) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) OnvistaPDFExtractor(name.abuchen.portfolio.datatransfer.pdf.OnvistaPDFExtractor) ArrayList(java.util.ArrayList) CoreMatchers.instanceOf(org.hamcrest.CoreMatchers.instanceOf) Assert.assertThat(org.junit.Assert.assertThat) Extractor(name.abuchen.portfolio.datatransfer.Extractor) TransactionItem(name.abuchen.portfolio.datatransfer.Extractor.TransactionItem) BuySellEntry(name.abuchen.portfolio.model.BuySellEntry) BuySellEntryItem(name.abuchen.portfolio.datatransfer.Extractor.BuySellEntryItem) PDFInputFile(name.abuchen.portfolio.datatransfer.pdf.PDFInputFile) Assert.assertNotNull(org.junit.Assert.assertNotNull) AccountTransaction(name.abuchen.portfolio.model.AccountTransaction) Assert.assertTrue(org.junit.Assert.assertTrue) IOException(java.io.IOException) Test(org.junit.Test) Security(name.abuchen.portfolio.model.Security) Collectors(java.util.stream.Collectors) List(java.util.List) AssertImportActions(name.abuchen.portfolio.datatransfer.actions.AssertImportActions) Unit(name.abuchen.portfolio.model.Transaction.Unit) Optional(java.util.Optional) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) BuySellEntry(name.abuchen.portfolio.model.BuySellEntry) TransactionItem(name.abuchen.portfolio.datatransfer.Extractor.TransactionItem) ArrayList(java.util.ArrayList) AccountTransaction(name.abuchen.portfolio.model.AccountTransaction) Security(name.abuchen.portfolio.model.Security) IOException(java.io.IOException) AssertImportActions(name.abuchen.portfolio.datatransfer.actions.AssertImportActions) OnvistaPDFExtractor(name.abuchen.portfolio.datatransfer.pdf.OnvistaPDFExtractor) Item(name.abuchen.portfolio.datatransfer.Extractor.Item) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) TransactionItem(name.abuchen.portfolio.datatransfer.Extractor.TransactionItem) BuySellEntryItem(name.abuchen.portfolio.datatransfer.Extractor.BuySellEntryItem) BuySellEntryItem(name.abuchen.portfolio.datatransfer.Extractor.BuySellEntryItem) Client(name.abuchen.portfolio.model.Client) Test(org.junit.Test)

Aggregations

Extractor (name.abuchen.portfolio.datatransfer.Extractor)55 ArrayList (java.util.ArrayList)52 List (java.util.List)49 PDFInputFile (name.abuchen.portfolio.datatransfer.pdf.PDFInputFile)48 Client (name.abuchen.portfolio.model.Client)48 LocalDateTime (java.time.LocalDateTime)47 Collectors (java.util.stream.Collectors)47 AccountTransaction (name.abuchen.portfolio.model.AccountTransaction)47 BuySellEntry (name.abuchen.portfolio.model.BuySellEntry)47 PortfolioTransaction (name.abuchen.portfolio.model.PortfolioTransaction)47 Security (name.abuchen.portfolio.model.Security)47 Money (name.abuchen.portfolio.money.Money)47 Values (name.abuchen.portfolio.money.Values)47 IOException (java.io.IOException)46 Optional (java.util.Optional)46 BuySellEntryItem (name.abuchen.portfolio.datatransfer.Extractor.BuySellEntryItem)46 Item (name.abuchen.portfolio.datatransfer.Extractor.Item)46 SecurityItem (name.abuchen.portfolio.datatransfer.Extractor.SecurityItem)46 TransactionItem (name.abuchen.portfolio.datatransfer.Extractor.TransactionItem)46 AssertImportActions (name.abuchen.portfolio.datatransfer.actions.AssertImportActions)46