Add count test
This commit is contained in:
parent
8199c1bd57
commit
bb244f47b2
28
test/Spec.hs
28
test/Spec.hs
@ -7,7 +7,29 @@ import Lib (match)
|
|||||||
|
|
||||||
main :: IO ()
|
main :: IO ()
|
||||||
main = hspec $ do
|
main = hspec $ do
|
||||||
describe "Cron ckecker" $ do
|
describe "Cron pattern" $ do
|
||||||
it "matches asterisks" $ do
|
|
||||||
match "* * * * *" (DateTime 2017 10 11 0 0 0) `shouldBe` (True :: Bool)
|
it "matches fixed time" $
|
||||||
|
let
|
||||||
|
pattern = "* * * * * *"
|
||||||
|
date = DateTime 2017 10 11 0 0 0
|
||||||
|
in
|
||||||
|
match pattern date `shouldBe` (True :: Bool)
|
||||||
|
|
||||||
|
it "matches all minutes" $
|
||||||
|
let
|
||||||
|
pattern = "* * * * * *"
|
||||||
|
dates = [DateTime 2017 10 11 0 i 0 | i <- [0..59]]
|
||||||
|
in
|
||||||
|
countMatches pattern dates `shouldBe` (60 :: Int)
|
||||||
|
|
||||||
|
-- it "matches exactly moment" $
|
||||||
|
-- match "0 0 11 10 2017" (DateTime 2017 10 11 0 0 0) `shouldBe` (True :: Bool)
|
||||||
|
|
||||||
|
|
||||||
|
countMatches :: String -> [DateTime] -> Int
|
||||||
|
countMatches p xs = sum $ map (f p) xs
|
||||||
|
where
|
||||||
|
f p d = case match p d of
|
||||||
|
True -> 1
|
||||||
|
False -> 0
|
||||||
|
Loading…
Reference in New Issue
Block a user