hadolint-2.14.0: test/Hadolint/Rule/DL3033Spec.hs
module Hadolint.Rule.DL3033Spec (spec) where
import Data.Default
import Helpers
import Test.Hspec
spec :: SpecWith ()
spec = do
let ?config = def
describe "DL3033 - Specify version with `yum install -y <package>-<version>`" $ do
it "not ok without yum version pinning" $ do
ruleCatches "DL3033" "RUN yum install -y tomcat && yum clean all"
onBuildRuleCatches "DL3033" "RUN yum install -y tomcat && yum clean all"
it "ok with yum version pinning" $ do
ruleCatchesNot "DL3033" "RUN yum install -y tomcat-9.2 && yum clean all"
ruleCatchesNot "DL3033" "RUN bash -c `# not even a yum command`"
onBuildRuleCatchesNot "DL3033" "RUN yum install -y tomcat-9.2 && yum clean all"
onBuildRuleCatchesNot "DL3033" "RUN bash -c `# not even a yum command`"
it "ok with yum version pinning - version contains epoch" $ do
ruleCatchesNot "DL3033" "RUN yum install -y openssl-1:1.1.1k"
onBuildRuleCatchesNot "DL3033" "RUN yum install -y openssl-1:1.1.1k"
it "ok with yum version pinning - package name contains `-`" $ do
ruleCatchesNot "DL3033" "RUN yum install -y rpm-sign-4.16.1.3"
onBuildRuleCatchesNot "DL3033" "RUN yum install -y rpm-sign-4.16.1.3"
it "ok with yum version pinning - package name contains `-` and `+`" $ do
ruleCatchesNot "DL3033" "RUN yum install -y gcc-c++-1.1.1"
onBuildRuleCatchesNot "DL3033" "RUN yum install -y gcc-c++-1.1.1"
it "not ok without yum version pinning - modules" $ do
ruleCatches "DL3033" "RUN yum module install -y tomcat && yum clean all"
onBuildRuleCatches "DL3033" "RUN yum module install -y tomcat && yum clean all"
it "ok with yum version pinning - modules" $ do
ruleCatchesNot "DL3033" "RUN yum module install -y tomcat:9 && yum clean all"
ruleCatchesNot "DL3033" "RUN bash -c `# not even a yum command`"
onBuildRuleCatchesNot "DL3033" "RUN yum module install -y tomcat:9 && yum clean all"
onBuildRuleCatchesNot "DL3033" "RUN bash -c `# not even a yum command`"