Skip to content

Commit 31a5c4d

Browse files
committed
Add test for duplicate environment variables when invoking testsuite
Adds a simple test case that identifies and reports duplicate environment variables in the Cabal environment. For issue (#10718)
1 parent 071d18f commit 31a5c4d

File tree

5 files changed

+32
-0
lines changed

5 files changed

+32
-0
lines changed

cabal-testsuite/PackageTests/DuplicateEnvVars/cabal.out

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
packages: p
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import Test.Cabal.Prelude
2+
3+
main = cabalTest $ recordMode DoNotRecord $ do
4+
res <- cabal' "test" ["all"]
5+
assertOutputContains "No duplicate environment variables found" res
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module Main where
2+
3+
import Data.List (group, sort)
4+
import System.Environment (getEnvironment)
5+
6+
main = do
7+
env <- getEnvironment
8+
let sortedEnv = sort env
9+
duplicates = filter (\g -> length g > 1) $ group $ map fst sortedEnv
10+
11+
if null duplicates
12+
then putStrLn "No duplicate environment variables found."
13+
else do
14+
putStrLn "Found duplicate environment variables:"
15+
mapM_ (\d -> putStrLn $ " - " ++ head d) duplicates
16+
fail "Test failed due to duplicate environment variables"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
cabal-version: 3.0
2+
name: p
3+
version: 0.1.0.0
4+
build-type: Simple
5+
6+
test-suite env-test
7+
default-language: Haskell2010
8+
type: exitcode-stdio-1.0
9+
main-is: Main.hs
10+
build-depends: base

0 commit comments

Comments
 (0)