elm-review/tests/ErrorMessageTest.elm

857 lines
25 KiB
Elm
Raw Normal View History

2019-07-09 09:15:24 +03:00
module ErrorMessageTest exposing (all)
import Elm.Syntax.Range exposing (Range)
import Expect exposing (Expectation)
import Review.Fix as Fix
import Review.Rule as Rule exposing (Error)
import Review.Test.ErrorMessage as ErrorMessage exposing (ExpectedErrorData)
2019-07-09 09:15:24 +03:00
import Test exposing (Test, describe, test)
all : Test
all =
describe "Test.ErrorMessage"
[ parsingFailureTest
2019-07-09 09:15:24 +03:00
, didNotExpectErrorsTest
, messageMismatchTest
, underMismatchTest
2019-07-28 01:56:31 +03:00
, unexpectedDetailsTest
, emptyDetailsTest
, wrongLocationTest
, expectedMoreErrorsTest
2019-07-09 09:15:24 +03:00
, tooManyErrorsTest
, locationIsAmbiguousInSourceCodeTest
, errorListLengthMismatchTest
, missingFixesTest
, unexpectedFixesTest
, fixedCodeMismatchTest
, unchangedSourceAfterFixTest
, invalidSourceAfterFixTest
, hasCollisionsInFixRangesTest
2019-07-09 09:15:24 +03:00
]
expectMessageEqual : String -> String -> Expectation
expectMessageEqual expectedMessage =
Expect.all
[ Expect.equal <| String.trim expectedMessage
, \receivedMessage ->
Expect.all
(String.lines receivedMessage
|> List.map
(\line () ->
(String.length line <= 76)
|> Expect.true ("Message has line longer than 76 characters:\n\n" ++ line)
)
)
()
]
parsingFailureTest : Test
parsingFailureTest =
test "parsingFailure" <|
2019-07-09 09:15:24 +03:00
\() ->
ErrorMessage.parsingFailure
|> expectMessageEqual """
TEST SOURCE CODE PARSING ERROR
2019-07-09 09:15:24 +03:00
I could not parse the test source code, because it was not valid Elm code.
Hint: Maybe you forgot to add the module definition at the top, like:
2019-07-09 09:15:24 +03:00
`module A exposing (..)`"""
2019-07-09 09:15:24 +03:00
didNotExpectErrorsTest : Test
didNotExpectErrorsTest =
test "didNotExpectErrors" <|
\() ->
let
errors : List Error
errors =
[ Rule.error
{ message = "Some error"
, details = [ "Some details" ]
}
dummyRange
, Rule.error
{ message = "Some other error"
, details = [ "Some other details" ]
}
dummyRange
2019-07-09 09:15:24 +03:00
]
in
ErrorMessage.didNotExpectErrors errors
|> expectMessageEqual """
DID NOT EXPECT ERRORS
2019-07-09 09:15:24 +03:00
I expected no errors but found:
- `Some error`
at { start = { row = 2, column = 1 }, end = { row = 2, column = 5 } }
- `Some other error`
at { start = { row = 2, column = 1 }, end = { row = 2, column = 5 } }
"""
2019-07-09 09:15:24 +03:00
messageMismatchTest : Test
messageMismatchTest =
test "messageMismatch" <|
2019-07-09 09:15:24 +03:00
\() ->
let
expectedError : ExpectedErrorData
2019-07-09 09:15:24 +03:00
expectedError =
{ message = "Remove the use of `Debug` before shipping to production"
2019-07-28 01:56:31 +03:00
, details = [ "Some details" ]
, under = "Debug.log"
}
2019-07-09 09:15:24 +03:00
error : Error
error =
Rule.error
{ message = "Some error"
, details = [ "Some details" ]
}
dummyRange
2019-07-09 09:15:24 +03:00
in
ErrorMessage.messageMismatch expectedError error
|> expectMessageEqual """
UNEXPECTED ERROR MESSAGE
2019-07-09 09:15:24 +03:00
I was looking for the error with the following message:
`Remove the use of `Debug` before shipping to production`
2019-07-09 09:15:24 +03:00
but I found the following error message:
`Some error`"""
2019-07-09 09:15:24 +03:00
underMismatchTest : Test
underMismatchTest =
describe "underMismatch"
2019-07-09 09:15:24 +03:00
[ test "with single-line extracts" <|
\() ->
let
error : Error
error =
Rule.error
{ message = "Some error"
, details = [ "Some details" ]
}
dummyRange
2019-07-09 09:15:24 +03:00
in
ErrorMessage.underMismatch
2019-07-09 09:15:24 +03:00
error
{ under = "abcd"
, codeAtLocation = "abcd = 1"
}
|> expectMessageEqual """
UNEXPECTED ERROR LOCATION
2019-07-09 09:15:24 +03:00
I found an error with the following message:
`Some error`
which I was expecting, but I found it under:
`abcd = 1`
when I was expecting it under:
`abcd`
Hint: Maybe you're passing the `Range` of a wrong node when
calling `Rule.error`."""
2019-07-09 09:15:24 +03:00
, test "with multi-line extracts" <|
\() ->
let
error : Error
error =
Rule.error
{ message = "Some other error"
, details = [ "Some other details" ]
}
dummyRange
2019-07-09 09:15:24 +03:00
in
ErrorMessage.underMismatch
2019-07-09 09:15:24 +03:00
error
{ under = "abcd =\n 1\n + 2"
, codeAtLocation = "abcd =\n 1"
}
|> expectMessageEqual """
UNEXPECTED ERROR LOCATION
2019-07-09 09:15:24 +03:00
I found an error with the following message:
`Some other error`
which I was expecting, but I found it under:
```
abcd =
1
```
when I was expecting it under:
```
abcd =
1
+ 2
```
Hint: Maybe you're passing the `Range` of a wrong node when
calling `Rule.error`."""
2019-07-09 09:15:24 +03:00
]
2019-07-28 01:56:31 +03:00
unexpectedDetailsTest : Test
unexpectedDetailsTest =
describe "unexpectedDetails"
[ test "with single-line details" <|
\() ->
let
expectedDetails : List String
expectedDetails =
[ "Some details" ]
error : Error
error =
Rule.error
{ message = "Some error"
, details = [ "Some other details" ]
}
dummyRange
in
ErrorMessage.unexpectedDetails
expectedDetails
error
|> expectMessageEqual """
UNEXPECTED ERROR DETAILS
I found an error with the following message:
`Some error`
which I was expecting, but its details were:
`Some other details`
when I was expecting them to be:
`Some details`"""
, test "with multi-line details" <|
\() ->
let
expectedDetails : List String
expectedDetails =
[ "Some"
, "details"
]
error : Error
error =
Rule.error
{ message = "Some other error"
, details =
[ "Some"
, "other"
, "details"
]
}
dummyRange
in
ErrorMessage.unexpectedDetails
expectedDetails
error
|> expectMessageEqual """
UNEXPECTED ERROR DETAILS
I found an error with the following message:
`Some other error`
which I was expecting, but its details were:
```
Some
other
details
```
when I was expecting them to be:
```
Some
details
```
"""
]
emptyDetailsTest : Test
emptyDetailsTest =
describe "emptyDetails"
[ test "with single-line details" <|
\() ->
let
error : Error
error =
Rule.error
{ message = "Some error"
, details = [ "Some details" ]
}
dummyRange
in
ErrorMessage.emptyDetails
error
|> expectMessageEqual """
EMPTY ERROR DETAILS
I found an error with the following message:
`Some error`
2019-07-28 15:45:09 +03:00
but its details were empty. I require having details as I believe they will
2019-07-28 01:56:31 +03:00
help the user who encounters the problem.
The details could:
- explain what the problem is
- give suggestions on how to solve the problem or alternatives"""
]
wrongLocationTest : Test
wrongLocationTest =
describe "wrongLocation"
2019-07-09 09:15:24 +03:00
[ test "with single-line extracts" <|
\() ->
let
error : Error
error =
Rule.error
{ message = "Some error"
, details = [ "Some details" ]
}
2019-07-09 09:15:24 +03:00
{ start = { row = 3, column = 1 }, end = { row = 3, column = 5 } }
in
ErrorMessage.wrongLocation
2019-07-09 09:15:24 +03:00
error
{ start = { row = 2, column = 1 }, end = { row = 2, column = 5 } }
"abcd"
|> expectMessageEqual """
UNEXPECTED ERROR LOCATION
2019-07-09 09:15:24 +03:00
I was looking for the error with the following message:
`Some error`
under the following code:
`abcd`
and I found it, but the exact location you specified is not the one I found.
I was expecting the error at:
2019-07-09 09:15:24 +03:00
{ start = { row = 2, column = 1 }, end = { row = 2, column = 5 } }
but I found it at:
{ start = { row = 3, column = 1 }, end = { row = 3, column = 5 } }
"""
2019-07-09 09:15:24 +03:00
, test "with multi-line extracts" <|
\() ->
let
error : Error
error =
Rule.error
{ message = "Some other error"
, details = [ "Some other details" ]
}
2019-07-09 09:15:24 +03:00
{ start = { row = 4, column = 1 }, end = { row = 5, column = 3 } }
in
ErrorMessage.wrongLocation
2019-07-09 09:15:24 +03:00
error
{ start = { row = 2, column = 1 }, end = { row = 3, column = 3 } }
"abcd =\n 1"
|> expectMessageEqual """
UNEXPECTED ERROR LOCATION
2019-07-09 09:15:24 +03:00
I was looking for the error with the following message:
`Some other error`
under the following code:
```
abcd =
1
```
and I found it, but the exact location you specified is not the one I found.
I was expecting the error at:
2019-07-09 09:15:24 +03:00
{ start = { row = 2, column = 1 }, end = { row = 3, column = 3 } }
but I found it at:
{ start = { row = 4, column = 1 }, end = { row = 5, column = 3 } }
"""
2019-07-09 09:15:24 +03:00
]
expectedMoreErrorsTest : Test
expectedMoreErrorsTest =
test "expectedMoreErrors" <|
2019-07-09 09:15:24 +03:00
\() ->
let
missingErrors : List ExpectedErrorData
2019-07-09 09:15:24 +03:00
missingErrors =
[ { message = "Remove the use of `Debug` before shipping to production"
2019-07-28 01:56:31 +03:00
, details = [ "Some details" ]
, under = "Debug.log"
}
, { message = "Remove the use of `Debug` before shipping to production"
2019-07-28 01:56:31 +03:00
, details = [ "Some details" ]
, under = "Debug.log"
}
2019-07-09 09:15:24 +03:00
]
in
ErrorMessage.expectedMoreErrors missingErrors
|> expectMessageEqual """
RULE REPORTED LESS ERRORS THAN EXPECTED
2019-07-09 09:15:24 +03:00
I expected to see 2 more errors:
- `Remove the use of `Debug` before shipping to production`
- `Remove the use of `Debug` before shipping to production`
"""
2019-07-09 09:15:24 +03:00
tooManyErrorsTest : Test
tooManyErrorsTest =
describe "tooManyErrors"
[ test "with one extra error" <|
\() ->
let
extraErrors : List Rule.Error
extraErrors =
[ Rule.error
{ message = "Remove the use of `Debug` before shipping to production"
, details = [ "Some details about Debug" ]
}
2019-07-09 09:15:24 +03:00
{ start = { row = 2, column = 1 }, end = { row = 2, column = 5 } }
]
in
ErrorMessage.tooManyErrors extraErrors
|> expectMessageEqual """
RULE REPORTED MORE ERRORS THAN EXPECTED
2019-07-09 09:15:24 +03:00
I found 1 error too many:
- `Remove the use of `Debug` before shipping to production`
at { start = { row = 2, column = 1 }, end = { row = 2, column = 5 } }
"""
2019-07-09 09:15:24 +03:00
, test "with multiple extra errors" <|
\() ->
let
extraErrors : List Rule.Error
extraErrors =
[ Rule.error
{ message = "Remove the use of `Debug` before shipping to production"
, details = [ "Some details about Debug" ]
}
2019-07-09 09:15:24 +03:00
{ start = { row = 2, column = 1 }, end = { row = 2, column = 5 } }
, Rule.error
{ message = "Remove the use of `Debug` before shipping to production"
, details = [ "Some details about Debug" ]
}
2019-07-09 09:15:24 +03:00
{ start = { row = 3, column = 1 }, end = { row = 3, column = 5 } }
]
in
ErrorMessage.tooManyErrors extraErrors
|> expectMessageEqual """
RULE REPORTED MORE ERRORS THAN EXPECTED
2019-07-09 09:15:24 +03:00
I found 2 errors too many:
- `Remove the use of `Debug` before shipping to production`
at { start = { row = 2, column = 1 }, end = { row = 2, column = 5 } }
- `Remove the use of `Debug` before shipping to production`
at { start = { row = 3, column = 1 }, end = { row = 3, column = 5 } }
"""
2019-07-09 09:15:24 +03:00
]
locationIsAmbiguousInSourceCodeTest : Test
locationIsAmbiguousInSourceCodeTest =
describe "locationIsAmbiguousInSourceCode"
2019-07-09 09:15:24 +03:00
[ test "with single-line extracts" <|
\() ->
let
sourceCode : String
sourceCode =
"module A exposing (..)\nabcd\nabcd"
under : String
under =
"abcd"
error : Error
error =
Rule.error
{ message = "Some error"
, details = [ "Some details" ]
}
2019-07-09 09:15:24 +03:00
{ start = { row = 3, column = 1 }, end = { row = 3, column = 5 } }
in
ErrorMessage.locationIsAmbiguousInSourceCode
2019-07-09 09:15:24 +03:00
sourceCode
error
under
(String.indexes under sourceCode)
|> expectMessageEqual """
AMBIGUOUS ERROR LOCATION
2019-07-09 09:15:24 +03:00
Your test passes, but where the message appears is ambiguous.
You are looking for the following error message:
`Some error`
and expecting to see it under:
`abcd`
I found 2 locations where that code appeared. Please use
`Review.Rule.atExactly` to make the part you were targetting unambiguous.
2019-07-09 09:15:24 +03:00
Tip: I found them at:
- { start = { row = 2, column = 1 }, end = { row = 2, column = 5 } }
- { start = { row = 3, column = 1 }, end = { row = 3, column = 5 } }
"""
2019-07-09 09:15:24 +03:00
, test "with multi-line extracts" <|
\() ->
let
sourceCode : String
sourceCode =
"module A exposing (..)\nabcd =\n 1\nabcd =\n 1\nabcd =\n 1"
under : String
under =
"abcd =\n 1"
error : Error
error =
Rule.error
{ message = "Some other error"
, details = [ "Some other details" ]
}
2019-07-09 09:15:24 +03:00
{ start = { row = 3, column = 1 }, end = { row = 4, column = 3 } }
in
ErrorMessage.locationIsAmbiguousInSourceCode
2019-07-09 09:15:24 +03:00
sourceCode
error
under
(String.indexes under sourceCode)
|> expectMessageEqual """
AMBIGUOUS ERROR LOCATION
2019-07-09 09:15:24 +03:00
Your test passes, but where the message appears is ambiguous.
You are looking for the following error message:
`Some other error`
and expecting to see it under:
```
abcd =
1
```
I found 3 locations where that code appeared. Please use
`Review.Rule.atExactly` to make the part you were targetting unambiguous.
2019-07-09 09:15:24 +03:00
Tip: I found them at:
- { start = { row = 2, column = 1 }, end = { row = 3, column = 4 } }
- { start = { row = 4, column = 1 }, end = { row = 5, column = 4 } }
- { start = { row = 6, column = 1 }, end = { row = 7, column = 4 } }
"""
2019-07-09 09:15:24 +03:00
]
errorListLengthMismatchTest : Test
errorListLengthMismatchTest =
test "errorListLengthMismatch" <|
\() ->
ErrorMessage.errorListLengthMismatch 1417 1418
|> expectMessageEqual """
MISMATCH BETWEEN NUMBER OF MODULES AND NUMBER OF LISTS OF ERRORS
You passed a list of 1417 modules to this test, but a list of 1418 lists
of errors.
I expect each item in the list of expected errors to correspond to the
module at the same position in the module list. Since the two lists have
different sizes, I'm not sure how to associate the last modules or errors.
If you expect no errors to be reported for a module, use an empty list:
test "..." <|
\\() ->
[ sourceCode1, sourceCode2 ]
|> Review.Test.runMulti rule
|> Review.Test.expectErrorsForFiles
[ [] -- Expect no errors reported in `sourceCode1`
, [ Review.Test.error theErrorForSourceCode2 ]
]
"""
missingFixesTest : Test
missingFixesTest =
test "missingFixes" <|
\() ->
let
expectedError : ExpectedErrorData
expectedError =
{ message = "Some error"
, details = [ "Some details" ]
, under = "Debug.log"
}
in
ErrorMessage.missingFixes expectedError
|> expectMessageEqual """
MISSING FIXES
I expected that the error with the following message
`Some error`
would provide some fixes, but I didn't find any.
Hint: Maybe you forgot to call `Rule.withFixes` on the error that you
created, or maybe the list of provided fixes was empty."""
unexpectedFixesTest : Test
unexpectedFixesTest =
test "unexpectedFixes" <|
\() ->
let
range : Range
range =
{ start = { row = 3, column = 1 }, end = { row = 4, column = 3 } }
error : Error
error =
Rule.error
{ message = "Some error"
, details = [ "Some details" ]
}
range
|> Rule.withFixes [ Fix.removeRange range ]
in
ErrorMessage.unexpectedFixes error
|> expectMessageEqual """
UNEXPECTED FIXES
I expected that the error with the following message
`Some error`
would not have any fixes, but it provided some.
Because the error provides fixes, I require providing the expected result
of the automatic fix. Otherwise, there is no way to know whether the fix
will result in a correct and in the intended result.
To fix this, you can call `Review.Test.whenFixed` on your error:
Review.Test.error
{ message = "<message>"
, details = "<details>"
, under = "<under>"
}
|> Review.Test.whenFixed "<source code>"
"""
fixedCodeMismatchTest : Test
fixedCodeMismatchTest =
test "fixedCodeMismatch" <|
\() ->
let
sourceCode : String
sourceCode =
"""module A exposing (b)
abcd =
1"""
expectedSourceCode : String
expectedSourceCode =
"""module A exposing (b)
abcd =
2"""
error : Error
error =
Rule.error
{ message = "Some error"
, details = [ "Some details" ]
}
{ start = { row = 3, column = 1 }, end = { row = 3, column = 5 } }
in
ErrorMessage.fixedCodeMismatch
sourceCode
expectedSourceCode
error
|> expectMessageEqual """
FIXED CODE MISMATCH
I found a different fixed source code than expected for the error with the
following message:
`Some error`
I found the following result after the fixes have been applied:
```
module A exposing (b)
abcd =
1
```
but I was expecting:
```
module A exposing (b)
abcd =
2
```"""
unchangedSourceAfterFixTest : Test
unchangedSourceAfterFixTest =
test "unchangedSourceAfterFix" <|
\() ->
let
error : Error
error =
Rule.error
{ message = "Some error"
, details = [ "Some details" ]
}
{ start = { row = 3, column = 1 }, end = { row = 3, column = 5 } }
in
ErrorMessage.unchangedSourceAfterFix error
|> expectMessageEqual """
UNCHANGED SOURCE AFTER FIX
I got something unexpected when applying the fixes provided by the error
with the following message:
`Some error`
I expected the fix to make some changes to the source code, but it resulted
in the same source code as before the fixes.
This is problematic because I will tell the user that this rule provides an
automatic fix, but I will have to disappoint them when I later find out it
doesn't do anything.
Hint: Maybe you inserted an empty string into the source code."""
invalidSourceAfterFixTest : Test
invalidSourceAfterFixTest =
test "invalidSourceAfterFix" <|
\() ->
let
sourceCode : String
sourceCode =
"""ule A exposing (b)
abcd =
1"""
error : Error
error =
Rule.error
{ message = "Some error"
, details = [ "Some details" ]
}
{ start = { row = 3, column = 1 }, end = { row = 3, column = 5 } }
in
ErrorMessage.invalidSourceAfterFix
error
sourceCode
|> expectMessageEqual """
INVALID SOURCE AFTER FIX
I got something unexpected when applying the fixes provided by the error
with the following message:
`Some error`
I was unable to parse the source code after applying the fixes. Here is
the result of the automatic fixing:
```
ule A exposing (b)
abcd =
1
```
This is problematic because fixes are meant to help the user, and applying
this fix will give them more work to do. After the fix has been applied,
the problem should be solved and the user should not have to think about it
anymore. If a fix can not be applied fully, it should not be applied at
all."""
hasCollisionsInFixRangesTest : Test
hasCollisionsInFixRangesTest =
test "hasCollisionsInFixRanges" <|
\() ->
let
error : Error
error =
Rule.error
{ message = "Some error"
, details = [ "Some details" ]
}
{ start = { row = 3, column = 1 }, end = { row = 3, column = 5 } }
in
ErrorMessage.hasCollisionsInFixRanges error
|> expectMessageEqual """
FOUND COLLISIONS IN FIX RANGES
I got something unexpected when applying the fixes provided by the error
with the following message:
`Some error`
I found that some fixes were targeting (partially or completely) the same
section of code. The problem with that is that I can't determine which fix
to apply first, and the result will be different and potentially invalid
based on the order in which I apply these fixes.
For this reason, I require that the ranges (for replacing and removing) and
the positions (for inserting) of every fix to be mutually exclusive.
Hint: Maybe you duplicated a fix, or you targetted the wrong node for one
of your fixes."""
2019-07-09 09:15:24 +03:00
dummyRange : Range
dummyRange =
{ start = { row = 2, column = 1 }, end = { row = 2, column = 5 } }