mirror of
https://github.com/jfmengels/elm-review.git
synced 2024-11-23 23:05:35 +03:00
120 lines
4.1 KiB
Elm
120 lines
4.1 KiB
Elm
port module NoUselessPatternMatchingTest exposing (all)
|
|
|
|
import Expect
|
|
import Test exposing (describe, test, Test)
|
|
import Lint.Rules.NoUselessPatternMatching exposing (rule)
|
|
import Lint.Types exposing (Error)
|
|
|
|
|
|
uselessError : Error
|
|
uselessError =
|
|
Error "NoUselessPatternMatching" "Useless case expression: It will always evaluate to the same value"
|
|
|
|
|
|
uselessPatternError : Error
|
|
uselessPatternError =
|
|
Error "NoUselessPatternMatching" "Useless patterns: Some will always evaluate to the same value as the default pattern"
|
|
|
|
|
|
tests : List Test
|
|
tests =
|
|
[ test "should not report cases with different results" <|
|
|
\() ->
|
|
rule """a = case b of
|
|
Just c -> a
|
|
Nothing -> 1
|
|
"""
|
|
|> Expect.equal []
|
|
, test "should report case expression where all pattern end up with the same result" <|
|
|
\() ->
|
|
rule """a = case b of
|
|
Just c -> 1
|
|
Nothing -> 1
|
|
"""
|
|
|> Expect.equal [ uselessError ]
|
|
, test "should report case expression where all pattern have the same expression" <|
|
|
\() ->
|
|
rule """a = case b of
|
|
Just c -> b
|
|
Nothing -> b
|
|
"""
|
|
|> Expect.equal [ uselessError ]
|
|
, test "should not report case expression where all pattern end up with the same body, but introduce and use variables with pattern matching" <|
|
|
\() ->
|
|
rule """a = case b of
|
|
Just b -> b
|
|
Nothing -> b
|
|
"""
|
|
|> Expect.equal []
|
|
, test "should report case expression where all pattern end up with the same body, and introduce but don't use variables with pattern matching" <|
|
|
\() ->
|
|
rule """a = case b of
|
|
Just g c D e -> b
|
|
Nothing -> b
|
|
"""
|
|
|> Expect.equal [ uselessError ]
|
|
, test "should report patterns that have the same value as the default pattern and do not introduce variables" <|
|
|
\() ->
|
|
rule """a = case b of
|
|
Foo -> c
|
|
Bar -> b
|
|
a -> b
|
|
"""
|
|
|> Expect.equal [ uselessPatternError ]
|
|
, test "should report patterns that have the same value as the default pattern and do not introduce variables (with _)" <|
|
|
\() ->
|
|
rule """a = case foo of
|
|
Nothing -> 2
|
|
Just -> 1
|
|
_ -> 1
|
|
"""
|
|
|> Expect.equal [ uselessPatternError ]
|
|
, test "should not report patterns that have the same value as the default pattern but introduce and use variables" <|
|
|
\() ->
|
|
rule """a = case b of
|
|
Foo -> c
|
|
Bar b -> b
|
|
a -> b
|
|
"""
|
|
|> Expect.equal []
|
|
, test "should report patterns that have the same value as the default pattern, even if they introduce and don't use variables" <|
|
|
\() ->
|
|
rule """a = case b of
|
|
Foo -> c
|
|
Bar d -> b
|
|
a -> b
|
|
"""
|
|
|> Expect.equal [ uselessPatternError ]
|
|
, test "should not report patterns where there is no default pattern" <|
|
|
\() ->
|
|
rule """a = case b of
|
|
Foo -> c
|
|
Bar -> b
|
|
Baz -> b
|
|
"""
|
|
|> Expect.equal []
|
|
, test "should not report case where there is only one pattern (which introduces and uses variables)" <|
|
|
\() ->
|
|
rule """a = case b of
|
|
Foo d -> d
|
|
"""
|
|
|> Expect.equal []
|
|
, test "should report case where there is only one pattern (which doesn't have variables)" <|
|
|
\() ->
|
|
rule """a = case b of
|
|
Foo -> d
|
|
"""
|
|
|> Expect.equal [ uselessError ]
|
|
, test "should report case where there is only the default pattern" <|
|
|
\() ->
|
|
rule """a = case b of
|
|
_ -> d
|
|
"""
|
|
|> Expect.equal [ uselessError ]
|
|
]
|
|
|
|
|
|
all : Test
|
|
all =
|
|
describe "NoUselessPatternMatching" tests
|