hadolint-2.1.0: test/DL3054.hs
module DL3054 (tests) where
import qualified Data.Map as Map
import qualified Hadolint.Process
import qualified Hadolint.Rule as Rule
import Helpers
import Test.Hspec
tests :: SpecWith ()
tests = do
let ?rulesConfig = Hadolint.Process.RulesConfig [] (Map.fromList [("spdxlabel", Rule.Spdx)]) False
describe "DL3054 - Label `<label>` is not a valid SPDX license identifier." $ do
it "not ok with label not containing SPDX identifier" $ do
ruleCatches "DL3054" "LABEL spdxlabel=\"not-spdx\""
onBuildRuleCatches "DL3054" "LABEL spdxlabel=\"not-spdx\""
it "ok with label containing SPDX identifier" $ do
ruleCatchesNot "DL3054" "LABEL spdxlabel=\"BSD-3-Clause\""
onBuildRuleCatchesNot "DL3054" "LABEL spdxlabel=\"MIT\""
it "ok with other label not containing SPDX identifier" $ do
ruleCatchesNot "DL3054" "LABEL other=\"fooo\""
onBuildRuleCatchesNot "DL3054" "LABEL other=\"bar\""