Search in sources :

Example 21 with SecurityItem

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

the class OnvistaPDFExtractorTest method assertSecurityEinAusbuchungDividendenRechte.

private Security assertSecurityEinAusbuchungDividendenRechte(List<Item> results) {
    Optional<Item> item = results.stream().filter(i -> i instanceof SecurityItem).findFirst();
    assertThat(item.isPresent(), is(true));
    Security security = ((SecurityItem) item.get()).getSecurity();
    assertThat(security.getIsin(), is("DE000A2AA2C3"));
    assertThat(security.getName(), is("Deutsche Telekom AG Dividend in Kind-Cash Line"));
    return security;
}
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) 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) Security(name.abuchen.portfolio.model.Security)

Example 22 with SecurityItem

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

the class OnvistaPDFExtractorTest method assertSecurityBuySparplan.

private Security assertSecurityBuySparplan(List<Item> results) {
    Optional<Item> item = results.stream().filter(i -> i instanceof SecurityItem).findFirst();
    assertThat(item.isPresent(), is(true));
    Security security = ((SecurityItem) item.get()).getSecurity();
    assertThat(security.getIsin(), is("DE0006289473"));
    assertThat(security.getName(), is("iS.eb.r.Go.G.1.5-2.5y U.ETF DE Inhaber-Anteile"));
    return security;
}
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) 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) Security(name.abuchen.portfolio.model.Security)

Example 23 with SecurityItem

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

the class OnvistaPDFExtractorTest method assertSecurityUmtauschOriginal.

private Security assertSecurityUmtauschOriginal(Item item) {
    Security security = ((SecurityItem) item).getSecurity();
    assertThat(security.getIsin(), is("LU0140355917"));
    assertThat(security.getName(), is("Allianz Euro Bond Fund Inhaber-Anteile A (EUR) o.N."));
    return security;
}
Also used : SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) Security(name.abuchen.portfolio.model.Security)

Example 24 with SecurityItem

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

the class OnvistaPDFExtractorTest method testDepotauszug.

@Test
public void testDepotauszug() throws IOException {
    OnvistaPDFExtractor extractor = new OnvistaPDFExtractor(new Client());
    List<Exception> errors = new ArrayList<Exception>();
    List<Item> results = extractor.extract(PDFInputFile.loadTestCase(getClass(), "OnvistaDepotauszug.txt"), errors);
    assertThat(errors, empty());
    assertThat(results.size(), is(26));
    // check first security
    Security security = assertFirstSecurityDepotauszug(results);
    // check transaction (first security, in)
    Optional<Item> item = results.stream().filter(i -> i instanceof TransactionItem).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("2010-12-31T00:00")));
    assertThat(transaction.getShares(), is(Values.Share.factorize(4)));
    // check second security
    assertSecurityErtragsgutschriftKupon(results.stream().filter(i -> i instanceof SecurityItem).collect(Collectors.toList()).get(3));
    Item secondItem = results.stream().filter(i -> i instanceof TransactionItem).collect(Collectors.toList()).get(3);
    // check second transaction (second security, in)
    assertThat(secondItem.getSubject(), instanceOf(PortfolioTransaction.class));
    PortfolioTransaction entry2 = (PortfolioTransaction) secondItem.getSubject();
    assertThat(entry2.getType(), is(PortfolioTransaction.Type.DELIVERY_INBOUND));
    assertThat(entry2.getCurrencyCode(), is(CurrencyUnit.EUR));
    assertThat(entry2.getDateTime(), is(LocalDateTime.parse("2010-12-31T00:00")));
    assertThat(entry2.getShares(), is(Values.Share.factorize(1)));
}
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) 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 25 with SecurityItem

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

the class OnvistaPDFExtractorTest method assertFirstSecurityDepotauszug.

private Security assertFirstSecurityDepotauszug(List<Item> results) {
    Optional<Item> item = results.stream().filter(i -> i instanceof SecurityItem).findFirst();
    assertThat(item.isPresent(), is(true));
    Security security = ((SecurityItem) item.get()).getSecurity();
    assertThat(security.getIsin(), is("DE000PAH0038"));
    assertThat(security.getName(), is("Porsche Automobil Holding SE Inhaber-Vorzugsaktien o.St.o.N"));
    return security;
}
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) 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) Security(name.abuchen.portfolio.model.Security)

Aggregations

SecurityItem (name.abuchen.portfolio.datatransfer.Extractor.SecurityItem)163 Security (name.abuchen.portfolio.model.Security)163 ArrayList (java.util.ArrayList)150 Item (name.abuchen.portfolio.datatransfer.Extractor.Item)150 Client (name.abuchen.portfolio.model.Client)149 Test (org.junit.Test)149 TransactionItem (name.abuchen.portfolio.datatransfer.Extractor.TransactionItem)145 IOException (java.io.IOException)144 BuySellEntryItem (name.abuchen.portfolio.datatransfer.Extractor.BuySellEntryItem)143 BuySellEntry (name.abuchen.portfolio.model.BuySellEntry)141 List (java.util.List)122 AccountTransaction (name.abuchen.portfolio.model.AccountTransaction)122 CoreMatchers.is (org.hamcrest.CoreMatchers.is)122 Assert.assertThat (org.junit.Assert.assertThat)122 Values (name.abuchen.portfolio.money.Values)121 LocalDateTime (java.time.LocalDateTime)120 Money (name.abuchen.portfolio.money.Money)120 IsEmptyCollection.empty (org.hamcrest.collection.IsEmptyCollection.empty)120 PortfolioTransaction (name.abuchen.portfolio.model.PortfolioTransaction)119 Unit (name.abuchen.portfolio.model.Transaction.Unit)116