2019-09-01 22:50:56 -04:00
|
|
|
{-
|
|
|
|
|
|
|
|
mtlstats
|
|
|
|
Copyright (C) 2019 Rhéal Lamothe
|
|
|
|
<rheal.lamothe@gmail.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or (at
|
|
|
|
your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
-}
|
|
|
|
|
|
|
|
module FormatSpec (spec) where
|
|
|
|
|
|
|
|
import Test.Hspec (Spec, context, describe, it, shouldBe)
|
|
|
|
|
|
|
|
import Mtlstats.Format
|
|
|
|
|
|
|
|
spec :: Spec
|
2019-09-02 09:30:49 -04:00
|
|
|
spec = describe "Mtlstats.Format" $ do
|
2019-09-01 22:50:56 -04:00
|
|
|
padNumSpec
|
2019-09-02 09:30:49 -04:00
|
|
|
leftSpec
|
2019-09-02 09:40:57 -04:00
|
|
|
rightSpec
|
2019-09-02 09:54:04 -04:00
|
|
|
centreSpec
|
2019-09-02 22:56:29 -04:00
|
|
|
overlaySpec
|
2019-09-02 10:29:32 -04:00
|
|
|
monthSpec
|
2019-09-01 22:50:56 -04:00
|
|
|
|
|
|
|
padNumSpec :: Spec
|
|
|
|
padNumSpec = describe "padNum" $ do
|
|
|
|
|
|
|
|
context "zero, four digits" $
|
|
|
|
it "should be 0000" $
|
|
|
|
padNum 4 0 `shouldBe` "0000"
|
|
|
|
|
|
|
|
context "123, four digits" $
|
|
|
|
it "should be 0123" $
|
|
|
|
padNum 4 123 `shouldBe` "0123"
|
|
|
|
|
|
|
|
context "12345, four digits" $
|
|
|
|
it "should be 12345" $
|
|
|
|
padNum 4 12345 `shouldBe` "12345"
|
|
|
|
|
|
|
|
context "-12, four digits" $
|
|
|
|
it "should be -012" $
|
|
|
|
padNum 4 (-12) `shouldBe` "-012"
|
|
|
|
|
|
|
|
context "-1234, four digits" $
|
|
|
|
it "should be -1234" $
|
|
|
|
padNum 4 (-1234) `shouldBe` "-1234"
|
2019-09-02 09:30:49 -04:00
|
|
|
|
|
|
|
leftSpec :: Spec
|
|
|
|
leftSpec = describe "left" $ do
|
|
|
|
|
|
|
|
context "fit" $
|
|
|
|
it "should pad the text" $
|
|
|
|
left 5 "foo" `shouldBe` "foo "
|
|
|
|
|
|
|
|
context "overflow" $
|
|
|
|
it "should truncate the text" $
|
|
|
|
left 2 "foo" `shouldBe` "fo"
|
2019-09-02 09:40:57 -04:00
|
|
|
|
|
|
|
rightSpec :: Spec
|
|
|
|
rightSpec = describe "right" $ do
|
|
|
|
|
|
|
|
context "fit" $
|
|
|
|
it "should pad the text" $
|
|
|
|
right 5 "foo" `shouldBe` " foo"
|
|
|
|
|
|
|
|
context "overflow" $
|
|
|
|
it "should truncate the text" $
|
|
|
|
right 2 "foo" `shouldBe` "oo"
|
2019-09-02 09:54:04 -04:00
|
|
|
|
|
|
|
centreSpec :: Spec
|
|
|
|
centreSpec = describe "centre" $ do
|
|
|
|
|
|
|
|
context "fit" $
|
|
|
|
it "should pad the text" $
|
|
|
|
centre 5 "foo" `shouldBe` " foo "
|
|
|
|
|
|
|
|
context "overflow" $
|
|
|
|
it "should truncate the text" $
|
|
|
|
centre 2 "foo" `shouldBe` "fo"
|
2019-09-02 10:29:32 -04:00
|
|
|
|
2019-09-02 22:56:29 -04:00
|
|
|
overlaySpec :: Spec
|
|
|
|
overlaySpec = describe "overlay" $ do
|
|
|
|
|
|
|
|
context "first string shorter" $
|
|
|
|
it "should overlay" $
|
|
|
|
overlay "foo" "abc123" `shouldBe` "foo123"
|
|
|
|
|
|
|
|
context "first string longer" $
|
|
|
|
it "should overlay" $
|
|
|
|
overlay "abc123" "foo" `shouldBe` "abc123"
|
|
|
|
|
2019-09-02 10:29:32 -04:00
|
|
|
monthSpec :: Spec
|
|
|
|
monthSpec = describe "month" $ do
|
|
|
|
|
|
|
|
context "January" $
|
|
|
|
it "should return \"JAN\"" $
|
|
|
|
month 1 `shouldBe` "JAN"
|
|
|
|
|
|
|
|
context "invalid" $
|
|
|
|
it "should return an empty string" $
|
|
|
|
month 0 `shouldBe` ""
|