Search in sources :

Example 71 with SecurityItem

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

the class ComdirectPDFExtractorTest method testDividende2.

@Test
public void testDividende2() throws IOException {
    ComdirectPDFExtractor extractor = new ComdirectPDFExtractor(new Client());
    List<Exception> errors = new ArrayList<Exception>();
    List<Item> results = extractor.extract(PDFInputFile.loadTestCase(getClass(), "comdirectDividende2.txt"), errors);
    assertThat(errors, empty());
    assertThat(results.size(), is(2));
    // security
    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("DE0008232125"));
    assertThat(security.getName(), is("De u t s  c he   L uf  t h a n s a A G"));
    assertThat(security.getWkn(), is("823212"));
    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.DIVIDENDS));
    assertThat(transaction.getSecurity(), is(security));
    assertThat(transaction.getDateTime(), is(LocalDateTime.parse("2009-04-27T00:00")));
    assertThat(transaction.getAmount(), is(Values.Amount.factorize(1546.13)));
    assertThat(transaction.getShares(), is(Values.Share.factorize(3000)));
    assertThat(transaction.getUnitSum(Unit.Type.TAX).getAmount(), is(Values.Amount.factorize(525 + 28.87)));
}
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) ComdirectPDFExtractor(name.abuchen.portfolio.datatransfer.pdf.ComdirectPDFExtractor) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) ArrayList(java.util.ArrayList) CoreMatchers.instanceOf(org.hamcrest.CoreMatchers.instanceOf) Assert.assertThat(org.junit.Assert.assertThat) 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) AccountTransaction(name.abuchen.portfolio.model.AccountTransaction) Type(name.abuchen.portfolio.model.Transaction.Unit.Type) IOException(java.io.IOException) Test(org.junit.Test) Security(name.abuchen.portfolio.model.Security) Collectors(java.util.stream.Collectors) List(java.util.List) 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) 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) ComdirectPDFExtractor(name.abuchen.portfolio.datatransfer.pdf.ComdirectPDFExtractor) Client(name.abuchen.portfolio.model.Client) Test(org.junit.Test)

Example 72 with SecurityItem

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

the class ComdirectPDFExtractorTest method testGutschrift3.

@Test
public void testGutschrift3() throws IOException {
    ComdirectPDFExtractor extractor = new ComdirectPDFExtractor(new Client());
    List<Exception> errors = new ArrayList<Exception>();
    List<Item> results = extractor.extract(PDFInputFile.loadTestCase(getClass(), "comdirectGutschrift3.txt"), errors);
    assertThat(errors, empty());
    assertThat(results.size(), is(2));
    // security
    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("US74348T1025"));
    assertThat(security.getName(), is("P  r os p e c t  C  ap i t a l   C o r p."));
    assertThat(security.getWkn(), is("A0B746"));
    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.DIVIDENDS));
    assertThat(transaction.getSecurity(), is(security));
    assertThat(transaction.getDateTime(), is(LocalDateTime.parse("2017-10-23T00:00")));
    assertThat(transaction.getAmount(), is(Values.Amount.factorize(7.52)));
    assertThat(transaction.getShares(), is(Values.Share.factorize(175)));
}
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) ComdirectPDFExtractor(name.abuchen.portfolio.datatransfer.pdf.ComdirectPDFExtractor) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) ArrayList(java.util.ArrayList) CoreMatchers.instanceOf(org.hamcrest.CoreMatchers.instanceOf) Assert.assertThat(org.junit.Assert.assertThat) 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) AccountTransaction(name.abuchen.portfolio.model.AccountTransaction) Type(name.abuchen.portfolio.model.Transaction.Unit.Type) IOException(java.io.IOException) Test(org.junit.Test) Security(name.abuchen.portfolio.model.Security) Collectors(java.util.stream.Collectors) List(java.util.List) 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) 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) ComdirectPDFExtractor(name.abuchen.portfolio.datatransfer.pdf.ComdirectPDFExtractor) Client(name.abuchen.portfolio.model.Client) Test(org.junit.Test)

Example 73 with SecurityItem

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

the class ComdirectPDFExtractorTest method testWertpapierVerkauf2.

@Test
public void testWertpapierVerkauf2() throws IOException {
    ComdirectPDFExtractor extractor = new ComdirectPDFExtractor(new Client());
    List<Exception> errors = new ArrayList<Exception>();
    List<Item> results = extractor.extract(PDFInputFile.loadTestCase(getClass(), "comdirectWertpapierabrechnung_Verkauf2.txt"), errors);
    assertThat(errors, empty());
    assertThat(results.size(), is(2));
    Optional<Item> item;
    // security
    item = results.stream().filter(i -> i instanceof SecurityItem).findFirst();
    assertThat(item.isPresent(), is(true));
    Security security = ((SecurityItem) item.get()).getSecurity();
    assertThat(security.getName(), is("Boeing Co."));
    assertThat(security.getIsin(), is("US0970231058"));
    assertThat(security.getWkn(), is("850471"));
    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().getAmount(), is(Values.Amount.factorize(20413.33)));
    assertThat(entry.getPortfolioTransaction().getDateTime(), is(LocalDateTime.parse("2016-12-08T00:00")));
    assertThat(entry.getPortfolioTransaction().getUnitSum(Unit.Type.FEE), is(Money.of("EUR", Values.Amount.factorize(56.07))));
    assertThat(entry.getPortfolioTransaction().getShares(), is(Values.Share.factorize(1140)));
}
Also used : 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) BuySellEntry(name.abuchen.portfolio.model.BuySellEntry) ComdirectPDFExtractor(name.abuchen.portfolio.datatransfer.pdf.ComdirectPDFExtractor) BuySellEntryItem(name.abuchen.portfolio.datatransfer.Extractor.BuySellEntryItem) ArrayList(java.util.ArrayList) Client(name.abuchen.portfolio.model.Client) Security(name.abuchen.portfolio.model.Security) IOException(java.io.IOException) Test(org.junit.Test)

Example 74 with SecurityItem

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

the class IBFlexStatementExtractorTest method testIBAcitvityStatement.

@Test
public void testIBAcitvityStatement() throws IOException {
    InputStream activityStatement = getClass().getResourceAsStream("IBActivityStatement.xml");
    Client client = new Client();
    IBFlexStatementExtractor extractor = new IBFlexStatementExtractor(client);
    Extractor.InputFile tempFile = createTempFile(activityStatement);
    List<Exception> errors = new ArrayList<Exception>();
    List<Item> results = extractor.extract(Collections.singletonList(tempFile), errors);
    results.stream().filter(i -> !(i instanceof SecurityItem)).forEach(i -> assertThat(i.getAmount(), notNullValue()));
    assertThat(results.size(), is(29));
    assertFirstSecurity(results.stream().filter(i -> i instanceof SecurityItem).findFirst());
    assertFirstTransaction(results.stream().filter(i -> i instanceof BuySellEntryItem).findFirst());
    assertSecondSecurity(results.stream().filter(i -> i instanceof SecurityItem).reduce((previous, current) -> current).get());
    assertFourthTransaction(results.stream().filter(i -> i instanceof BuySellEntryItem).skip(3).findFirst());
    assertInterestCharge(results.stream().filter(i -> i instanceof TransactionItem).filter(i -> i.getSubject() instanceof AccountTransaction && ((AccountTransaction) i.getSubject()).getType() == Type.INTEREST_CHARGE).findFirst());
    assertTax(results.stream().filter(i -> i instanceof TransactionItem).filter(i -> i.getSubject() instanceof AccountTransaction && ((AccountTransaction) i.getSubject()).getType() == Type.TAXES).findFirst());
    assertFee(results.stream().filter(i -> i instanceof TransactionItem).filter(i -> i.getSubject() instanceof AccountTransaction && ((AccountTransaction) i.getSubject()).getType() == Type.FEES).skip(2).findFirst());
    assertFeeRefund(results.stream().filter(i -> i instanceof TransactionItem).filter(i -> i.getSubject() instanceof AccountTransaction && ((AccountTransaction) i.getSubject()).getType() == Type.FEES_REFUND).findFirst());
// TODO Check CorporateActions
}
Also used : CoreMatchers.is(org.hamcrest.CoreMatchers.is) PortfolioTransaction(name.abuchen.portfolio.model.PortfolioTransaction) Type(name.abuchen.portfolio.model.AccountTransaction.Type) Money(name.abuchen.portfolio.money.Money) Values(name.abuchen.portfolio.money.Values) Client(name.abuchen.portfolio.model.Client) Quote(name.abuchen.portfolio.money.Quote) Item(name.abuchen.portfolio.datatransfer.Extractor.Item) LocalDateTime(java.time.LocalDateTime) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) CoreMatchers.notNullValue(org.hamcrest.CoreMatchers.notNullValue) ArrayList(java.util.ArrayList) IOUtils(org.apache.pdfbox.io.IOUtils) CoreMatchers.instanceOf(org.hamcrest.CoreMatchers.instanceOf) Assert.assertThat(org.junit.Assert.assertThat) TransactionItem(name.abuchen.portfolio.datatransfer.Extractor.TransactionItem) BuySellEntry(name.abuchen.portfolio.model.BuySellEntry) BuySellEntryItem(name.abuchen.portfolio.datatransfer.Extractor.BuySellEntryItem) AccountTransaction(name.abuchen.portfolio.model.AccountTransaction) FileOutputStream(java.io.FileOutputStream) IOException(java.io.IOException) Test(org.junit.Test) Security(name.abuchen.portfolio.model.Security) File(java.io.File) List(java.util.List) Unit(name.abuchen.portfolio.model.Transaction.Unit) Optional(java.util.Optional) Collections(java.util.Collections) InputStream(java.io.InputStream) SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) TransactionItem(name.abuchen.portfolio.datatransfer.Extractor.TransactionItem) InputStream(java.io.InputStream) ArrayList(java.util.ArrayList) AccountTransaction(name.abuchen.portfolio.model.AccountTransaction) IOException(java.io.IOException) 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 75 with SecurityItem

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

the class IBFlexStatementExtractorTest method assertFirstSecurity.

private void assertFirstSecurity(Optional<Item> item) {
    assertThat(item.isPresent(), is(true));
    Security security = ((SecurityItem) item.get()).getSecurity();
    assertThat(security.getIsin(), is("CA38501D2041"));
    assertThat(security.getWkn(), is("80845553"));
    assertThat(security.getName(), is("GRAN COLOMBIA GOLD CORP"));
    assertThat(security.getTickerSymbol(), is("GCM.TO"));
    assertThat(security.getCurrencyCode(), is("CAD"));
}
Also used : SecurityItem(name.abuchen.portfolio.datatransfer.Extractor.SecurityItem) 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