Search in sources :

Example 21 with OnvistaPDFExtractor

use of name.abuchen.portfolio.datatransfer.pdf.OnvistaPDFExtractor 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)

Example 22 with OnvistaPDFExtractor

use of name.abuchen.portfolio.datatransfer.pdf.OnvistaPDFExtractor in project portfolio by buchen.

the class OnvistaPDFExtractorTest method testKontoauszugEinzelneBuchung.

@Test
public void testKontoauszugEinzelneBuchung() throws IOException {
    OnvistaPDFExtractor extractor = new OnvistaPDFExtractor(new Client());
    List<Exception> errors = new ArrayList<Exception>();
    List<Item> results = extractor.extract(PDFInputFile.loadTestCase(getClass(), "OnvistaKontoauszugEinzelneBuchung.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.DEPOSIT));
    assertThat(transaction.getDateTime(), is(LocalDateTime.parse("2010-10-31T00:00")));
    assertThat(transaction.getMonetaryAmount(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(37.66))));
}
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 23 with OnvistaPDFExtractor

use of name.abuchen.portfolio.datatransfer.pdf.OnvistaPDFExtractor in project portfolio by buchen.

the class OnvistaPDFExtractorTest method testMehrereTransaktionenInEinerDatei.

@Test
public void testMehrereTransaktionenInEinerDatei() throws IOException {
    OnvistaPDFExtractor extractor = new OnvistaPDFExtractor(new Client());
    List<Exception> errors = new ArrayList<Exception>();
    List<Item> results = extractor.extract(PDFInputFile.loadTestCase(getClass(), "OnvistaMultipartKaufVerkauf.txt"), errors);
    assertThat(errors, empty());
    assertThat(results.size(), is(3));
    new AssertImportActions().check(results, CurrencyUnit.EUR);
    List<Item> item = results.stream().filter(i -> i instanceof BuySellEntryItem).collect(Collectors.toList());
    assertThat(item.isEmpty(), is(false));
    Item firstItem = item.get(0);
    assertNotNull(firstItem);
    assertThat(firstItem.getSubject(), instanceOf(BuySellEntry.class));
    BuySellEntry firstEntry = (BuySellEntry) firstItem.getSubject();
    assertThat(firstEntry.getPortfolioTransaction().getType(), is(PortfolioTransaction.Type.SELL));
    assertThat(firstEntry.getAccountTransaction().getType(), is(AccountTransaction.Type.SELL));
    assertThat(firstEntry.getPortfolioTransaction().getCurrencyCode(), is(CurrencyUnit.EUR));
    assertThat(firstEntry.getPortfolioTransaction().getShares(), is(Values.Share.factorize(20)));
    assertThat(firstEntry.getPortfolioTransaction().getMonetaryAmount(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(623.49))));
    assertThat(firstEntry.getPortfolioTransaction().getDateTime(), is(LocalDateTime.of(2016, 9, 2, 9, 10)));
    assertThat(firstEntry.getPortfolioTransaction().getUnitSum(Unit.Type.FEE), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(5))));
    Item secondItem = item.get(1);
    assertNotNull(secondItem);
    assertThat(secondItem.getSubject(), instanceOf(BuySellEntry.class));
    BuySellEntry secondEntry = (BuySellEntry) secondItem.getSubject();
    assertThat(secondEntry.getPortfolioTransaction().getType(), is(PortfolioTransaction.Type.SELL));
    assertThat(secondEntry.getAccountTransaction().getType(), is(AccountTransaction.Type.SELL));
    assertThat(secondEntry.getPortfolioTransaction().getCurrencyCode(), is(CurrencyUnit.EUR));
    assertThat(secondEntry.getPortfolioTransaction().getShares(), is(Values.Share.factorize(80)));
    assertThat(secondEntry.getPortfolioTransaction().getMonetaryAmount(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(2508.47))));
    assertThat(secondEntry.getPortfolioTransaction().getDateTime(), is(LocalDateTime.parse("2016-09-02T09:10")));
    assertThat(secondEntry.getPortfolioTransaction().getUnitSum(Unit.Type.FEE), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(1.5))));
}
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) AssertImportActions(name.abuchen.portfolio.datatransfer.actions.AssertImportActions) Test(org.junit.Test)

Example 24 with OnvistaPDFExtractor

use of name.abuchen.portfolio.datatransfer.pdf.OnvistaPDFExtractor in project portfolio by buchen.

the class OnvistaPDFExtractorTest method testWertpapierEinloesung.

@Test
public void testWertpapierEinloesung() throws IOException {
    OnvistaPDFExtractor extractor = new OnvistaPDFExtractor(new Client());
    List<Exception> errors = new ArrayList<Exception>();
    List<Item> results = extractor.extract(PDFInputFile.loadTestCase(getClass(), "OnvistaEinloesung.txt"), errors);
    assertThat(errors, empty());
    assertThat(results.size(), is(2));
    assertSecurityEinloesung(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.SELL));
    assertThat(entry.getAccountTransaction().getType(), is(AccountTransaction.Type.SELL));
    assertThat(entry.getPortfolioTransaction().getCurrencyCode(), is(CurrencyUnit.EUR));
    assertThat(entry.getPortfolioTransaction().getMonetaryAmount(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(51.85))));
    assertThat(entry.getPortfolioTransaction().getDateTime(), is(is(LocalDateTime.parse("2014-11-17T00:00"))));
    assertThat(entry.getPortfolioTransaction().getShares(), is(Values.Share.factorize(1)));
    assertThat(entry.getPortfolioTransaction().getUnitSum(Unit.Type.TAX), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(4.45))));
}
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 25 with OnvistaPDFExtractor

use of name.abuchen.portfolio.datatransfer.pdf.OnvistaPDFExtractor in project portfolio by buchen.

the class OnvistaPDFExtractorTest method testErtragsgutschriftDividende2.

@Test
public void testErtragsgutschriftDividende2() throws IOException {
    OnvistaPDFExtractor extractor = new OnvistaPDFExtractor(new Client());
    List<Exception> errors = new ArrayList<>();
    List<Item> results = extractor.extract(PDFInputFile.loadTestCase(getClass(), "OnvistaErtragsgutschriftDividende2.txt"), errors);
    assertThat(errors, empty());
    assertThat(results.size(), is(6));
    // transaction #1
    Security security = // 
    results.stream().filter(// 
    i -> i instanceof Extractor.SecurityItem).map(// 
    i -> i.getSecurity()).filter(// 
    s -> "FR0010296061".equals(s.getIsin())).findFirst().get();
    assertThat(security.getName(), is("Lyxor ETF MSCI USA Actions au Porteur D-EUR o.N."));
    AccountTransaction transaction = // 
    results.stream().filter(// 
    i -> i instanceof Extractor.TransactionItem).filter(// 
    i -> "FR0010296061".equals(i.getSecurity().getIsin())).map(i -> (AccountTransaction) ((Extractor.TransactionItem) i).getSubject()).findFirst().get();
    assertThat(transaction.getType(), is(AccountTransaction.Type.DIVIDENDS));
    assertThat(transaction.getSecurity(), is(security));
    assertThat(transaction.getCurrencyCode(), is(CurrencyUnit.EUR));
    assertThat(transaction.getDateTime(), is(LocalDateTime.parse("2016-12-16T00:00")));
    assertThat(transaction.getMonetaryAmount(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(1.8))));
    assertThat(transaction.getShares(), is(Values.Share.factorize(1.0545)));
    // transaction #2
    security = // 
    results.stream().filter(// 
    i -> i instanceof Extractor.SecurityItem).map(// 
    i -> i.getSecurity()).filter(// 
    s -> "FR0010315770".equals(s.getIsin())).findFirst().get();
    assertThat(security.getName(), is("Lyxor ETF MSCI WORLD FCP Actions au Port.D-EUR o.N."));
    transaction = // 
    results.stream().filter(// 
    i -> i instanceof Extractor.TransactionItem).filter(// 
    i -> "FR0010315770".equals(i.getSecurity().getIsin())).map(i -> (AccountTransaction) ((Extractor.TransactionItem) i).getSubject()).findFirst().get();
    assertThat(transaction.getType(), is(AccountTransaction.Type.DIVIDENDS));
    assertThat(transaction.getSecurity(), is(security));
    assertThat(transaction.getCurrencyCode(), is(CurrencyUnit.EUR));
    assertThat(transaction.getDateTime(), is(LocalDateTime.parse("2016-12-16T00:00")));
    assertThat(transaction.getMonetaryAmount(), is(Money.of(CurrencyUnit.EUR, Values.Amount.factorize(1.8))));
    assertThat(transaction.getShares(), is(Values.Share.factorize(1.2879)));
}
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) TransactionItem(name.abuchen.portfolio.datatransfer.Extractor.TransactionItem) 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) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) OnvistaPDFExtractor(name.abuchen.portfolio.datatransfer.pdf.OnvistaPDFExtractor) Extractor(name.abuchen.portfolio.datatransfer.Extractor) Client(name.abuchen.portfolio.model.Client) Test(org.junit.Test)

Aggregations

OnvistaPDFExtractor (name.abuchen.portfolio.datatransfer.pdf.OnvistaPDFExtractor)28 IOException (java.io.IOException)27 ArrayList (java.util.ArrayList)27 BuySellEntryItem (name.abuchen.portfolio.datatransfer.Extractor.BuySellEntryItem)27 Item (name.abuchen.portfolio.datatransfer.Extractor.Item)27 SecurityItem (name.abuchen.portfolio.datatransfer.Extractor.SecurityItem)27 TransactionItem (name.abuchen.portfolio.datatransfer.Extractor.TransactionItem)27 AssertImportActions (name.abuchen.portfolio.datatransfer.actions.AssertImportActions)27 Client (name.abuchen.portfolio.model.Client)27 Test (org.junit.Test)27 LocalDateTime (java.time.LocalDateTime)26 List (java.util.List)26 Optional (java.util.Optional)26 Collectors (java.util.stream.Collectors)26 Extractor (name.abuchen.portfolio.datatransfer.Extractor)26 PDFInputFile (name.abuchen.portfolio.datatransfer.pdf.PDFInputFile)26 AccountTransaction (name.abuchen.portfolio.model.AccountTransaction)26 BuySellEntry (name.abuchen.portfolio.model.BuySellEntry)26 PortfolioTransaction (name.abuchen.portfolio.model.PortfolioTransaction)26 Security (name.abuchen.portfolio.model.Security)26