mirror of https://github.com/ghostfolio/ghostfolio
17 changed files with 194 additions and 60 deletions
@ -0,0 +1,131 @@ |
|||||
|
import { Activity } from '@ghostfolio/api/app/order/interfaces/activities.interface'; |
||||
|
import { |
||||
|
activityDummyData, |
||||
|
symbolProfileDummyData |
||||
|
} from '@ghostfolio/api/app/portfolio/calculator/portfolio-calculator-test-utils'; |
||||
|
import { |
||||
|
PortfolioCalculatorFactory, |
||||
|
PerformanceCalculationType |
||||
|
} from '@ghostfolio/api/app/portfolio/calculator/portfolio-calculator.factory'; |
||||
|
import { CurrentRateService } from '@ghostfolio/api/app/portfolio/current-rate.service'; |
||||
|
import { CurrentRateServiceMock } from '@ghostfolio/api/app/portfolio/current-rate.service.mock'; |
||||
|
import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.service'; |
||||
|
import { parseDate } from '@ghostfolio/common/helper'; |
||||
|
|
||||
|
import { Big } from 'big.js'; |
||||
|
|
||||
|
jest.mock('@ghostfolio/api/app/portfolio/current-rate.service', () => { |
||||
|
return { |
||||
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||
|
CurrentRateService: jest.fn().mockImplementation(() => { |
||||
|
return CurrentRateServiceMock; |
||||
|
}) |
||||
|
}; |
||||
|
}); |
||||
|
|
||||
|
describe('PortfolioCalculator', () => { |
||||
|
let currentRateService: CurrentRateService; |
||||
|
let exchangeRateDataService: ExchangeRateDataService; |
||||
|
let factory: PortfolioCalculatorFactory; |
||||
|
|
||||
|
beforeEach(() => { |
||||
|
currentRateService = new CurrentRateService(null, null, null, null); |
||||
|
|
||||
|
exchangeRateDataService = new ExchangeRateDataService( |
||||
|
null, |
||||
|
null, |
||||
|
null, |
||||
|
null |
||||
|
); |
||||
|
|
||||
|
factory = new PortfolioCalculatorFactory( |
||||
|
currentRateService, |
||||
|
exchangeRateDataService |
||||
|
); |
||||
|
}); |
||||
|
|
||||
|
describe('compute portfolio snapshot', () => { |
||||
|
it.only('with fee activity', async () => { |
||||
|
const spy = jest |
||||
|
.spyOn(Date, 'now') |
||||
|
.mockImplementation(() => parseDate('2021-12-18').getTime()); |
||||
|
|
||||
|
const activities: Activity[] = [ |
||||
|
{ |
||||
|
...activityDummyData, |
||||
|
date: new Date('2021-09-01'), |
||||
|
fee: 49, |
||||
|
quantity: 0, |
||||
|
SymbolProfile: { |
||||
|
...symbolProfileDummyData, |
||||
|
currency: 'USD', |
||||
|
dataSource: 'MANUAL', |
||||
|
name: 'Account Opening Fee', |
||||
|
symbol: '2c463fb3-af07-486e-adb0-8301b3d72141' |
||||
|
}, |
||||
|
type: 'FEE', |
||||
|
unitPrice: 0 |
||||
|
} |
||||
|
]; |
||||
|
|
||||
|
const portfolioCalculator = factory.createCalculator({ |
||||
|
activities, |
||||
|
calculationType: PerformanceCalculationType.TWR, |
||||
|
currency: 'USD' |
||||
|
}); |
||||
|
|
||||
|
const portfolioSnapshot = await portfolioCalculator.computeSnapshot( |
||||
|
parseDate('2021-11-30') |
||||
|
); |
||||
|
|
||||
|
spy.mockRestore(); |
||||
|
|
||||
|
expect(portfolioSnapshot).toEqual({ |
||||
|
currentValueInBaseCurrency: new Big('0'), |
||||
|
errors: [], |
||||
|
grossPerformance: new Big('0'), |
||||
|
grossPerformancePercentage: new Big('0'), |
||||
|
grossPerformancePercentageWithCurrencyEffect: new Big('0'), |
||||
|
grossPerformanceWithCurrencyEffect: new Big('0'), |
||||
|
hasErrors: true, |
||||
|
netPerformance: new Big('0'), |
||||
|
netPerformancePercentage: new Big('0'), |
||||
|
netPerformancePercentageWithCurrencyEffect: new Big('0'), |
||||
|
netPerformanceWithCurrencyEffect: new Big('0'), |
||||
|
positions: [ |
||||
|
{ |
||||
|
averagePrice: new Big('0'), |
||||
|
currency: 'USD', |
||||
|
dataSource: 'MANUAL', |
||||
|
dividend: new Big('0'), |
||||
|
dividendInBaseCurrency: new Big('0'), |
||||
|
fee: new Big('49'), |
||||
|
firstBuyDate: '2021-09-01', |
||||
|
grossPerformance: null, |
||||
|
grossPerformancePercentage: null, |
||||
|
grossPerformancePercentageWithCurrencyEffect: null, |
||||
|
grossPerformanceWithCurrencyEffect: null, |
||||
|
investment: new Big('0'), |
||||
|
investmentWithCurrencyEffect: new Big('0'), |
||||
|
marketPrice: null, |
||||
|
marketPriceInBaseCurrency: 0, |
||||
|
netPerformance: null, |
||||
|
netPerformancePercentage: null, |
||||
|
netPerformancePercentageWithCurrencyEffect: null, |
||||
|
netPerformanceWithCurrencyEffect: null, |
||||
|
quantity: new Big('0'), |
||||
|
symbol: '2c463fb3-af07-486e-adb0-8301b3d72141', |
||||
|
tags: [], |
||||
|
timeWeightedInvestment: new Big('0'), |
||||
|
timeWeightedInvestmentWithCurrencyEffect: new Big('0'), |
||||
|
transactionCount: 1, |
||||
|
valueInBaseCurrency: new Big('0') |
||||
|
} |
||||
|
], |
||||
|
totalFeesWithCurrencyEffect: new Big('49'), |
||||
|
totalInvestment: new Big('0'), |
||||
|
totalInvestmentWithCurrencyEffect: new Big('0') |
||||
|
}); |
||||
|
}); |
||||
|
}); |
||||
|
}); |
@ -1,6 +1,9 @@ |
|||||
|
import { Big } from 'big.js'; |
||||
|
|
||||
import { TransactionPointSymbol } from './transaction-point-symbol.interface'; |
import { TransactionPointSymbol } from './transaction-point-symbol.interface'; |
||||
|
|
||||
export interface TransactionPoint { |
export interface TransactionPoint { |
||||
date: string; |
date: string; |
||||
|
fees: Big; |
||||
items: TransactionPointSymbol[]; |
items: TransactionPointSymbol[]; |
||||
} |
} |
||||
|
Loading…
Reference in new issue