Newer
Older
{-# LANGUAGE OverloadedStrings #-}
, posixTimes
, hasVoucher
import Data.Text
( Text
)
import Data.Time.Clock
( UTCTime(UTCTime)
)
import Data.Time.Clock.POSIX
( POSIXTime
, posixSecondsToUTCTime
)
import Web.Stripe.Types
( Charge(Charge)
, StatementDescription(StatementDescription)
, MetaData(MetaData)
, Description(Description)
, CustomerId(CustomerId)
, InvoiceId(InvoiceId)
, ChargeId(ChargeId)
, Expandable(Id)
, Currency(USD, UnknownCurrency)
, Amount(Amount)
, StripeList(StripeList, list, totalCount, hasMore)
)
import Web.Stripe.Event
( Event(Event, eventId, eventCreated, eventLiveMode, eventType, eventData, eventObject, eventPendingWebHooks, eventRequest)
, EventType(ChargeSucceededEvent)
, EventData(ChargeEvent)
, EventId(EventId)
)
import Test.QuickCheck
( Gen
, Arbitrary
, arbitrary
, Positive(Positive)
, oneof
, suchThatMap
)
import Test.QuickCheck.Instances.Time
( -- Get the `Gen UTCTime` instance
)
import Test.QuickCheck.Instances.Text
( -- Get the `Gen Text` instance
)
instance Arbitrary Charge where
arbitrary = Charge
<$> arbitrary -- chargeId :: ChargeId
<*> posixTimes -- chargeCreated :: UTCTime
<*> arbitrary -- chargeLiveMode :: Bool
<*> arbitrary -- chargePaid :: Bool
<*> arbitrary -- chargeAmount :: Amount
<*> oneof
[ return UnknownCurrency
, return USD
] -- chargeCurrency :: Currency
<*> return False -- chargeRefunded :: Bool
<*> return Nothing -- chargeCreditCard :: Maybe Card
<*> arbitrary -- chargeCaptured :: Bool
<*> return mempty -- chargeRefunds :: StripeList Refund
<*> return Nothing -- chargeBalanceTransaction :: Maybe (Expandable TransactionId)
<*> return Nothing -- chargeFailureMessage :: Maybe Text
<*> return Nothing -- chargeFailureCode :: Maybe Text
<*> return 0 -- chargeAmountRefunded :: Int
<*> arbitrary -- chargeCustomerId :: Maybe (Expandable CustomerId)
<*> return Nothing -- chargeInvoice :: Maybe (Expandable InvoiceId)
<*> arbitrary -- chargeDescription :: Maybe Description
<*> return Nothing -- chargeDispute :: Maybe Dispute
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<*> arbitrary -- chargeMetaData :: MetaData
<*> arbitrary -- chargeStatementDescription :: Maybe StatementDescription
<*> arbitrary -- chargeReceiptEmail :: Maybe Text
<*> arbitrary -- chargeReceiptNumber :: Maybe Text
instance Semigroup (StripeList a) where
-- Very weak implementation
x <> y = StripeList (list x <> list y) "" "" Nothing (hasMore x || hasMore y)
instance Monoid (StripeList a) where
mempty = StripeList [] "" "" (Just 0) False
instance Arbitrary Amount where
arbitrary = Amount <$> arbitrary
instance Arbitrary EventId where
arbitrary = EventId <$> arbitrary
instance Arbitrary StatementDescription where
arbitrary = StatementDescription <$> arbitrary
instance Arbitrary MetaData where
arbitrary = MetaData <$> arbitrary
instance Arbitrary Description where
arbitrary = Description <$> arbitrary
instance Arbitrary InvoiceId where
arbitrary = InvoiceId <$> arbitrary
instance Arbitrary ChargeId where
arbitrary = ChargeId <$> arbitrary
instance Arbitrary CustomerId where
arbitrary = CustomerId <$> arbitrary
instance Arbitrary a => Arbitrary (Expandable a) where
arbitrary = Id <$> arbitrary
chargeSucceededEvents :: Gen Event
chargeSucceededEvents =
Event
<$> arbitrary -- eventId
<*> posixTimes -- eventCreated
<*> arbitrary -- eventLiveMode
<*> return ChargeSucceededEvent -- eventType
<*> (ChargeEvent
<$> arbitrary -- the charge
) -- eventData
<*> arbitrary -- eventPendingWebHooks
<*> arbitrary -- eventRequest
data GoodChargeEvent = GoodChargeEvent Event deriving (Show, Eq)
instance Arbitrary GoodChargeEvent where
arbitrary = chargeSucceededEvents `suchThatMap` (Just . GoodChargeEvent)
posixTimes :: Gen UTCTime
posixTimes = (arbitrary :: Gen Integer) `suchThatMap` (Just . posixSecondsToUTCTime . fromIntegral . abs)
hasVoucher :: MetaData -> Bool
hasVoucher (MetaData items) = any (== "Voucher") . (map fst) $ items