{- mtlstats Copyright (C) 2019 Rhéal Lamothe 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 . -} module UtilSpec (spec) where import qualified Data.Map as M import Test.Hspec (Spec, context, describe, it, shouldBe) import Mtlstats.Util spec :: Spec spec = describe "Mtlstats.Util" $ do nthSpec modifyNthSpec updateMapSpec sliceSpec nthSpec :: Spec nthSpec = describe "nth" $ mapM_ (\(n, expected) -> context (show n) $ it ("should be " ++ show expected) $ let xs = ["foo", "bar", "baz"] in nth n xs `shouldBe` expected) -- index, expected [ ( 0, Just "foo" ) , ( 1, Just "bar" ) , ( 2, Just "baz" ) , ( 3, Nothing ) , ( -1, Nothing ) ] modifyNthSpec :: Spec modifyNthSpec = describe "modifyNth" $ do context "in bounds" $ it "should modify the value" $ modifyNth 1 succ [1, 2, 3] `shouldBe` [1, 3, 3] context "out of bounds" $ it "should not modify the value" $ modifyNth 3 succ [1, 2, 3] `shouldBe` [1, 2, 3] context "negative index" $ it "should not modify the value" $ modifyNth (-1) succ [1, 2, 3] `shouldBe` [1, 2, 3] updateMapSpec :: Spec updateMapSpec = describe "updateMap" $ do let input = M.fromList [(1, 2), (3, 5)] context "key found" $ let expected = M.fromList [(1, 3), (3, 5)] in it "should update the value" $ updateMap 1 10 succ input `shouldBe` expected context "key not found" $ let expected = M.fromList [(1, 2), (3, 5), (10, 11)] in it "should create a new value and update the default" $ updateMap 10 10 succ input `shouldBe` expected sliceSpec :: Spec sliceSpec = describe "slice" $ do let list = [2, 4, 6, 8] context "sublist" $ it "should return the sublist" $ slice 1 2 list `shouldBe` [4, 6] context "too large" $ it "should return as much of the list as possible" $ slice 1 100 list `shouldBe` [4, 6, 8] context "negative offset" $ it "should return the correct number of elements from the beginning" $ slice (-10) 2 list `shouldBe` [2, 4]