slackbuilder/tests/SlackBuilder/LatestVersionCheckSpec.hs
Eugen Wissner 7e59a8460d
All checks were successful
Build / audit (push) Successful in 14m54s
Build / test (push) Successful in 14m46s
Add match function for simple tag globbing
2024-03-21 17:52:37 +01:00

41 lines
1.4 KiB
Haskell

{- This Source Code Form is subject to the terms of the Mozilla Public License,
v. 2.0. If a copy of the MPL was not distributed with this file, You can
obtain one at https://mozilla.org/MPL/2.0/. -}
module SlackBuilder.LatestVersionCheckSpec
( spec
) where
import SlackBuilder.LatestVersionCheck
import Test.Hspec (Spec, describe, it, shouldBe)
spec :: Spec
spec = do
describe "stableTagTransform" $ do
it "excludes tags with +" $
let given = "v2.6.0+unreleased"
actual = stableTagTransform given
in actual `shouldBe` Nothing
it "recognizes a stable version" $
let given = "v2.6.0"
actual = stableTagTransform given
expected = Just "2.6.0"
in actual `shouldBe` expected
describe "match" $ do
it "matches an exact tag prefixed with v" $
let expected = Just "2.6.0"
actual = match "(v)2.6.0" "v2.6.0"
in actual `shouldBe` expected
it "matches a glob pattern prefixed with v" $
let expected = Just "2.6.0"
actual = match "(v)*" "v2.6.0"
in actual `shouldBe` expected
it "ignores suffix after wildcard" $
let expected = Just "2.6.0"
actual = match "(v)*(-rc1)" "v2.6.0-rc1"
in actual `shouldBe` expected