mirror of
https://github.com/haskell/ghcide.git
synced 2024-12-13 18:23:38 +03:00
215 lines
7.5 KiB
Haskell
215 lines
7.5 KiB
Haskell
-- Copyright (c) 2019 The DAML Authors. All rights reserved.
|
|
-- SPDX-License-Identifier: Apache-2.0
|
|
|
|
{-# LANGUAGE DuplicateRecordFields #-}
|
|
|
|
module Main (main) where
|
|
|
|
import Control.Monad (void)
|
|
import qualified Data.Text as T
|
|
import Development.IDE.Test
|
|
import Development.IDE.Test.Runfiles
|
|
import Language.Haskell.LSP.Test
|
|
import Language.Haskell.LSP.Types
|
|
import Language.Haskell.LSP.Types.Capabilities
|
|
import System.Environment.Blank (setEnv)
|
|
import System.IO.Extra
|
|
import Test.Tasty
|
|
import Test.Tasty.HUnit
|
|
|
|
|
|
main :: IO ()
|
|
main = defaultMain $ testGroup "HIE"
|
|
[ testSession "open close" $ do
|
|
doc <- openDoc' "Testing.hs" "haskell" ""
|
|
void (message :: Session ProgressStartNotification)
|
|
closeDoc doc
|
|
void (message :: Session ProgressDoneNotification)
|
|
, diagnosticTests
|
|
]
|
|
|
|
|
|
diagnosticTests :: TestTree
|
|
diagnosticTests = testGroup "diagnostics"
|
|
[ testSession "fix syntax error" $ do
|
|
let content = T.unlines [ "module Testing wher" ]
|
|
doc <- openDoc' "Testing.hs" "haskell" content
|
|
expectDiagnostics [("Testing.hs", [(DsError, (0, 15), "parse error")])]
|
|
let change = TextDocumentContentChangeEvent
|
|
{ _range = Just (Range (Position 0 15) (Position 0 19))
|
|
, _rangeLength = Nothing
|
|
, _text = "where"
|
|
}
|
|
changeDoc doc [change]
|
|
expectDiagnostics [("Testing.hs", [])]
|
|
, testSession "introduce syntax error" $ do
|
|
let content = T.unlines [ "module Testing where" ]
|
|
doc <- openDoc' "Testing.hs" "haskell" content
|
|
void (message :: Session ProgressStartNotification)
|
|
let change = TextDocumentContentChangeEvent
|
|
{ _range = Just (Range (Position 0 15) (Position 0 18))
|
|
, _rangeLength = Nothing
|
|
, _text = "wher"
|
|
}
|
|
changeDoc doc [change]
|
|
expectDiagnostics [("Testing.hs", [(DsError, (0, 15), "parse error")])]
|
|
, testSession "variable not in scope" $ do
|
|
let content = T.unlines
|
|
[ "module Testing where"
|
|
, "foo :: Int -> Int -> Int"
|
|
, "foo a b = a + ab"
|
|
, "bar :: Int -> Int -> Int"
|
|
, "bar a b = cd + b"
|
|
]
|
|
_ <- openDoc' "Testing.hs" "haskell" content
|
|
expectDiagnostics
|
|
[ ( "Testing.hs"
|
|
, [ (DsError, (2, 14), "Variable not in scope: ab")
|
|
, (DsError, (4, 10), "Variable not in scope: cd")
|
|
]
|
|
)
|
|
]
|
|
, testSession "type error" $ do
|
|
let content = T.unlines
|
|
[ "module Testing where"
|
|
, "foo :: Int -> String -> Int"
|
|
, "foo a b = a + b"
|
|
]
|
|
_ <- openDoc' "Testing.hs" "haskell" content
|
|
expectDiagnostics
|
|
[ ( "Testing.hs"
|
|
, [(DsError, (2, 14), "Couldn't match type '[Char]' with 'Int'")]
|
|
)
|
|
]
|
|
, testSession "remove required module" $ do
|
|
let contentA = T.unlines [ "module ModuleA where" ]
|
|
docA <- openDoc' "ModuleA.hs" "haskell" contentA
|
|
let contentB = T.unlines
|
|
[ "module ModuleB where"
|
|
, "import ModuleA"
|
|
]
|
|
_ <- openDoc' "ModuleB.hs" "haskell" contentB
|
|
let change = TextDocumentContentChangeEvent
|
|
{ _range = Just (Range (Position 0 0) (Position 0 20))
|
|
, _rangeLength = Nothing
|
|
, _text = ""
|
|
}
|
|
changeDoc docA [change]
|
|
expectDiagnostics [("ModuleB.hs", [(DsError, (1, 0), "Could not find module")])]
|
|
, testSession "add missing module" $ do
|
|
let contentB = T.unlines
|
|
[ "module ModuleB where"
|
|
, "import ModuleA"
|
|
]
|
|
_ <- openDoc' "ModuleB.hs" "haskell" contentB
|
|
expectDiagnostics [("ModuleB.hs", [(DsError, (1, 7), "Could not find module")])]
|
|
let contentA = T.unlines [ "module ModuleA where" ]
|
|
_ <- openDoc' "ModuleA.hs" "haskell" contentA
|
|
expectDiagnostics [("ModuleB.hs", [])]
|
|
, testSession "cyclic module dependency" $ do
|
|
let contentA = T.unlines
|
|
[ "module ModuleA where"
|
|
, "import ModuleB"
|
|
]
|
|
let contentB = T.unlines
|
|
[ "module ModuleB where"
|
|
, "import ModuleA"
|
|
]
|
|
_ <- openDoc' "ModuleA.hs" "haskell" contentA
|
|
_ <- openDoc' "ModuleB.hs" "haskell" contentB
|
|
expectDiagnostics
|
|
[ ( "ModuleA.hs"
|
|
, [(DsError, (1, 7), "Cyclic module dependency between ModuleA, ModuleB")]
|
|
)
|
|
, ( "ModuleB.hs"
|
|
, [(DsError, (1, 7), "Cyclic module dependency between ModuleA, ModuleB")]
|
|
)
|
|
]
|
|
, testSession "cyclic module dependency with hs-boot" $ do
|
|
let contentA = T.unlines
|
|
[ "module ModuleA where"
|
|
, "import {-# SOURCE #-} ModuleB"
|
|
]
|
|
let contentB = T.unlines
|
|
[ "module ModuleB where"
|
|
, "import ModuleA"
|
|
]
|
|
let contentBboot = T.unlines
|
|
[ "module ModuleB where"
|
|
]
|
|
_ <- openDoc' "ModuleA.hs" "haskell" contentA
|
|
_ <- openDoc' "ModuleB.hs" "haskell" contentB
|
|
_ <- openDoc' "ModuleB.hs-boot" "haskell" contentBboot
|
|
expectDiagnostics []
|
|
, testSession "correct reference used with hs-boot" $ do
|
|
let contentB = T.unlines
|
|
[ "module ModuleB where"
|
|
, "import {-# SOURCE #-} ModuleA"
|
|
]
|
|
let contentA = T.unlines
|
|
[ "module ModuleA where"
|
|
, "import ModuleB"
|
|
, "x = 5"
|
|
]
|
|
let contentAboot = T.unlines
|
|
[ "module ModuleA where"
|
|
]
|
|
let contentC = T.unlines
|
|
[ "module ModuleC where"
|
|
, "import ModuleA"
|
|
-- this reference will fail if it gets incorrectly
|
|
-- resolved to the hs-boot file
|
|
, "y = x"
|
|
]
|
|
_ <- openDoc' "ModuleB.hs" "haskell" contentB
|
|
_ <- openDoc' "ModuleA.hs" "haskell" contentA
|
|
_ <- openDoc' "ModuleA.hs-boot" "haskell" contentAboot
|
|
_ <- openDoc' "ModuleC.hs" "haskell" contentC
|
|
expectDiagnostics []
|
|
, testSession "redundant import" $ do
|
|
let contentA = T.unlines ["module ModuleA where"]
|
|
let contentB = T.unlines
|
|
[ "{-# OPTIONS_GHC -Wunused-imports #-}"
|
|
, "module ModuleB where"
|
|
, "import ModuleA"
|
|
]
|
|
_ <- openDoc' "ModuleA.hs" "haskell" contentA
|
|
_ <- openDoc' "ModuleB.hs" "haskell" contentB
|
|
expectDiagnostics
|
|
[ ( "ModuleB.hs"
|
|
, [(DsWarning, (2, 0), "The import of 'ModuleA' is redundant")]
|
|
)
|
|
]
|
|
]
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
-- Utils
|
|
|
|
|
|
testSession :: String -> Session () -> TestTree
|
|
testSession name =
|
|
testCase name . run .
|
|
-- Check that any diagnostics produced were already consumed by the test case.
|
|
--
|
|
-- If in future we add test cases where we don't care about checking the diagnostics,
|
|
-- this could move elsewhere.
|
|
--
|
|
-- Experimentally, 0.5s seems to be long enough to wait for any final diagnostics to appear.
|
|
( >> expectNoMoreDiagnostics 0.5)
|
|
|
|
|
|
run :: Session a -> IO a
|
|
run s = withTempDir $ \dir -> do
|
|
ghcideExe <- locateGhcideExecutable
|
|
let cmd = unwords [ghcideExe, "--lsp", "--cwd", dir]
|
|
-- HIE calls getXgdDirectory which assumes that HOME is set.
|
|
-- Only sets HOME if it wasn't already set.
|
|
setEnv "HOME" "/homeless-shelter" False
|
|
runSessionWithConfig conf cmd fullCaps { _window = Just $ WindowClientCapabilities $ Just True } dir s
|
|
where
|
|
conf = defaultConfig
|
|
-- If you uncomment this you can see all messages
|
|
-- which can be quite useful for debugging.
|
|
-- { logMessages = True, logColor = False, logStdErr = True }
|