and testGroup. Replacing these removes a layer of indirection, and reduces the need to depend on Hledger.Utils.Test.
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Haskell
		
	
	
	
	
	
{-# LANGUAGE FlexibleInstances   #-}
 | 
						|
{-# LANGUAGE OverloadedStrings   #-}
 | 
						|
{-# LANGUAGE ScopedTypeVariables #-}
 | 
						|
{-|
 | 
						|
 | 
						|
Journal entries report, used by the print command.
 | 
						|
 | 
						|
-}
 | 
						|
 | 
						|
module Hledger.Reports.EntriesReport (
 | 
						|
  EntriesReport,
 | 
						|
  EntriesReportItem,
 | 
						|
  entriesReport,
 | 
						|
  -- * Tests
 | 
						|
  tests_EntriesReport
 | 
						|
)
 | 
						|
where
 | 
						|
 | 
						|
import Data.List (sortBy)
 | 
						|
import Data.Ord (comparing)
 | 
						|
import Data.Time (fromGregorian)
 | 
						|
 | 
						|
import Hledger.Data
 | 
						|
import Hledger.Query (Query(..))
 | 
						|
import Hledger.Reports.ReportOptions
 | 
						|
import Hledger.Utils
 | 
						|
 | 
						|
 | 
						|
-- | A journal entries report is a list of whole transactions as
 | 
						|
-- originally entered in the journal (mostly). This is used by eg
 | 
						|
-- hledger's print command and hledger-web's journal entries view.
 | 
						|
type EntriesReport = [EntriesReportItem]
 | 
						|
type EntriesReportItem = Transaction
 | 
						|
 | 
						|
-- | Select transactions for an entries report.
 | 
						|
entriesReport :: ReportSpec -> Journal -> EntriesReport
 | 
						|
entriesReport rspec@ReportSpec{_rsReportOpts=ropts} =
 | 
						|
    sortBy (comparing $ transactionDateFn ropts) . jtxns
 | 
						|
    . journalApplyValuationFromOpts rspec{_rsReportOpts=ropts{show_costs_=True}}
 | 
						|
    . filterJournalTransactions (_rsQuery rspec)
 | 
						|
 | 
						|
tests_EntriesReport = testGroup "EntriesReport" [
 | 
						|
  testGroup "entriesReport" [
 | 
						|
     testCase "not acct" $ (length $ entriesReport defreportspec{_rsQuery=Not . Acct $ toRegex' "bank"} samplejournal) @?= 1
 | 
						|
    ,testCase "date" $ (length $ entriesReport defreportspec{_rsQuery=Date $ DateSpan (Just $ fromGregorian 2008 06 01) (Just $ fromGregorian 2008 07 01)} samplejournal) @?= 3
 | 
						|
  ]
 | 
						|
 ]
 | 
						|
 |