mirror of
https://github.com/jfmengels/elm-review.git
synced 2024-12-17 22:51:32 +03:00
100 lines
3.2 KiB
Elm
100 lines
3.2 KiB
Elm
|
module ReadmeStartsWithProjectTitleTest exposing (all)
|
||
|
|
||
|
import Elm.Project
|
||
|
import Json.Decode as Decode
|
||
|
import ReadmeStartsWithProjectTitle exposing (rule)
|
||
|
import Review.Project as Project exposing (Project)
|
||
|
import Review.Test exposing (ReviewResult)
|
||
|
import Test exposing (Test, describe, test)
|
||
|
|
||
|
|
||
|
testRule : Project -> ReviewResult
|
||
|
testRule project =
|
||
|
"""module SomeModule exposing (a)
|
||
|
a = 1"""
|
||
|
|> Review.Test.runWithProjectData project rule
|
||
|
|
||
|
|
||
|
createElmJson : String -> { path : String, raw : String, project : Elm.Project.Project }
|
||
|
createElmJson rawElmJson =
|
||
|
case Decode.decodeString Elm.Project.decoder rawElmJson of
|
||
|
Ok elmJson ->
|
||
|
{ path = "elm.json"
|
||
|
, raw = rawElmJson
|
||
|
, project = elmJson
|
||
|
}
|
||
|
|
||
|
Err _ ->
|
||
|
Debug.todo "Invalid elm.json supplied to test"
|
||
|
|
||
|
|
||
|
packageElmJson : String
|
||
|
packageElmJson =
|
||
|
"""
|
||
|
{
|
||
|
"type": "package",
|
||
|
"name": "author/package",
|
||
|
"summary": "Summary",
|
||
|
"license": "BSD-3-Clause",
|
||
|
"version": "1.0.0",
|
||
|
"exposed-modules": [
|
||
|
"Exposed"
|
||
|
],
|
||
|
"elm-version": "0.19.0 <= v < 0.20.0",
|
||
|
"dependencies": {
|
||
|
"elm/core": "1.0.0 <= v < 2.0.0",
|
||
|
"author/package-with-foo": "1.0.0 <= v < 2.0.0",
|
||
|
"author/package-with-bar": "1.0.0 <= v < 2.0.0"
|
||
|
},
|
||
|
"test-dependencies": {}
|
||
|
}"""
|
||
|
|
||
|
|
||
|
all : Test
|
||
|
all =
|
||
|
describe "ReadmeStartsWithProjectTitle"
|
||
|
[ test "should not report an error if there is no elm.json file" <|
|
||
|
\() ->
|
||
|
Project.new
|
||
|
|> testRule
|
||
|
|> Review.Test.expectNoErrors
|
||
|
, test "should report an error if there is no README.md file" <|
|
||
|
\() ->
|
||
|
Project.new
|
||
|
|> Project.withElmJson (createElmJson packageElmJson)
|
||
|
|> testRule
|
||
|
|> Review.Test.expectErrors
|
||
|
[ Review.Test.error
|
||
|
{ message = "TODO"
|
||
|
, details = [ "TODO" ]
|
||
|
, under = "module"
|
||
|
}
|
||
|
]
|
||
|
, test "should report an error if the README.md file doesn't start with the project name" <|
|
||
|
\() ->
|
||
|
Project.new
|
||
|
|> Project.withElmJson (createElmJson packageElmJson)
|
||
|
-- TODO Add README
|
||
|
|> testRule
|
||
|
|> Review.Test.expectErrors
|
||
|
[ Review.Test.error
|
||
|
{ message = "TODO"
|
||
|
, details = [ "TODO" ]
|
||
|
, under = "module"
|
||
|
}
|
||
|
]
|
||
|
, test "should not report an error if the README.md file starts with the project name" <|
|
||
|
\() ->
|
||
|
Project.new
|
||
|
|> Project.withElmJson (createElmJson packageElmJson)
|
||
|
-- TODO Add README
|
||
|
|> testRule
|
||
|
|> Review.Test.expectErrors
|
||
|
[ Review.Test.error
|
||
|
{ message = "TODO"
|
||
|
, details = [ "TODO" ]
|
||
|
, under = "module"
|
||
|
}
|
||
|
]
|
||
|
]
|