Skip to content

refactor plugin: add reproducer and fix for #3795 #4016

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/hls-refactor-plugin/hls-refactor-plugin.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ test-suite tests
hs-source-dirs: test
main-is: Main.hs
other-modules: Test.AddArgument
ghc-options: -O0 -threaded -rtsopts -with-rtsopts=-N -Wunused-imports
ghc-options: -O0 -threaded -rtsopts -with-rtsopts=-N -Wno-name-shadowing
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

-Wunused-imports is already part of -Wall imported via import: warnings.
On the other hand these tests rely on shadowing a lot, so disabling this warning.

build-depends:
, base
, filepath
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ matchVariableNotInScope message
| otherwise = Nothing
where
matchVariableNotInScopeTyped message
| Just [name, typ] <- matchRegexUnifySpaces message "Variable not in scope: ([^ ]+) :: ([^*•]+)" =
| Just [name, typ0] <- matchRegexUnifySpaces message "Variable not in scope: ([^ ]+) :: ([^*•]+)"
, -- When some name in scope is similar to not-in-scope variable, the type is followed by
-- "Suggested fix: Perhaps use ..."
typ:_ <- T.splitOn " Suggested fix:" typ0 =
Just (name, typ)
| otherwise = Nothing
matchVariableNotInScopeUntyped message
Expand Down
88 changes: 53 additions & 35 deletions plugins/hls-refactor-plugin/test/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TypeOperators #-}
{-# OPTIONS_GHC -Wno-deprecations -Wno-unticked-promoted-constructors #-}
{-# OPTIONS_GHC -Wno-unticked-promoted-constructors #-}

module Main
( main
Expand All @@ -33,9 +33,7 @@ import Ide.Types
import qualified Language.LSP.Protocol.Lens as L
import Language.LSP.Protocol.Message
import Language.LSP.Protocol.Types hiding
(SemanticTokenAbsolute (length, line),
SemanticTokenRelative (length),
SemanticTokensEdit (_start),
(SemanticTokensEdit (_start),
mkRange)
import Language.LSP.Test
import System.Directory
Expand Down Expand Up @@ -81,6 +79,7 @@ tests =
, completionTests
]

initializeTests :: TestTree
initializeTests = withResource acquire release tests
where
tests :: IO (TResponseMessage Method_Initialize) -> TestTree
Expand Down Expand Up @@ -640,7 +639,10 @@ renameActionTests = testGroup "rename actions"
doc <- createDoc "Testing.hs" "haskell" content
_ <- waitForDiagnostics
actionsOrCommands <- getCodeActions doc (Range (Position 3 12) (Position 3 20))
[fixTypo] <- pure [action | InR action@CodeAction{ _title = actionTitle } <- actionsOrCommands, "monus" `T.isInfixOf` actionTitle , "Replace" `T.isInfixOf` actionTitle]
[fixTypo] <- pure [action | InR action@CodeAction{ _title = actionTitle } <- actionsOrCommands
, "monus" `T.isInfixOf` actionTitle
, "Replace" `T.isInfixOf` actionTitle
]
executeCodeAction fixTypo
contentAfterAction <- documentContents doc
let expectedContentAfterAction = T.unlines
Expand All @@ -659,9 +661,11 @@ renameActionTests = testGroup "rename actions"
, "foo = 'bread"
]
doc <- createDoc "Testing.hs" "haskell" content
diags <- waitForDiagnostics
_ <- waitForDiagnostics
actionsOrCommands <- getCodeActions doc (Range (Position 4 6) (Position 4 12))
[fixTypo] <- pure [action | InR action@CodeAction{ _title = actionTitle } <- actionsOrCommands, "break" `T.isInfixOf` actionTitle ]
[fixTypo] <- pure [action | InR action@CodeAction{ _title = actionTitle } <- actionsOrCommands
, "break" `T.isInfixOf` actionTitle
]
executeCodeAction fixTypo
contentAfterAction <- documentContents doc
let expectedContentAfterAction = T.unlines
Expand Down Expand Up @@ -776,9 +780,9 @@ typeWildCardActionTests = testGroup "type wildcard actions"
doc <- createDoc "Testing.hs" "haskell" content
_ <- waitForDiagnostics
actionsOrCommands <- getAllCodeActions doc
let [addSignature] = [action | InR action@CodeAction { _title = actionTitle } <- actionsOrCommands
, "Use type signature" `T.isInfixOf` actionTitle
]
[addSignature] <- pure [action | InR action@CodeAction { _title = actionTitle } <- actionsOrCommands
, "Use type signature" `T.isInfixOf` actionTitle
]
executeCodeAction addSignature
contentAfterAction <- documentContents doc
liftIO $ expectedContentAfterAction @=? contentAfterAction
Expand Down Expand Up @@ -1782,7 +1786,7 @@ suggestAddRecordFieldImportTests = testGroup "suggest imports of record fields w
doc <- createDoc "Test.hs" "haskell" before
waitForProgressDone
_ <- waitForDiagnostics
let defLine = fromIntegral $ 1 + 2
let defLine = 3
range = Range (Position defLine 0) (Position defLine maxBound)
actions <- getCodeActions doc range
action <- liftIO $ pickActionWithTitle "Add foo to the import list of B" actions
Expand Down Expand Up @@ -1913,7 +1917,6 @@ suggestImportDisambiguationTests = testGroup "suggest import disambiguation acti
contentAfterAction <- documentContents doc
liftIO $ T.replace "\r\n" "\n" expected @=? contentAfterAction
compareHideFunctionTo = compareTwo "HideFunction.hs"
auxFiles = ["AVec.hs", "BVec.hs", "CVec.hs", "DVec.hs", "EVec.hs", "FVec.hs"]
withTarget file locs k = runWithExtraFiles "hiding" $ \dir -> do
doc <- openDoc file "haskell"
void $ expectDiagnostics [(file, [(DiagnosticSeverity_Error, loc, "Ambiguous occurrence") | loc <- locs])]
Expand Down Expand Up @@ -2122,9 +2125,8 @@ insertNewDefinitionTests = testGroup "insert new definition actions"
]
docB <- createDoc "ModuleB.hs" "haskell" (T.unlines $ txtB ++ txtB')
_ <- waitForDiagnostics
InR action@CodeAction { _title = actionTitle } : _
<- filter (\(InR CodeAction{_title=x}) -> "Define" `T.isPrefixOf` x) <$>
getCodeActions docB (R 0 0 0 50)
action@CodeAction { _title = actionTitle } : _
<- findCodeActionsByPrefix docB (R 0 0 0 50) ["Define"]
liftIO $ actionTitle @?= "Define select :: [Bool] -> Bool"
executeCodeAction action
contentAfterAction <- documentContents docB
Expand All @@ -2134,6 +2136,27 @@ insertNewDefinitionTests = testGroup "insert new definition actions"
, "select = _"
]
++ txtB')
, testSession "insert new function definition - with similar suggestion in scope" $ do
doc <- createDoc "Module.hs" "haskell" $ T.unlines
[ "import Control.Monad" -- brings `mplus` into scope, leading to additional suggestion
-- "Perhaps use \8216mplus\8217 (imported from Control.Monad)"
, "f :: Int -> Int"
, "f x = plus x x"
]
_ <- waitForDiagnostics
action@CodeAction { _title = actionTitle } : _
<- findCodeActionsByPrefix doc (R 2 0 2 13) ["Define"]
liftIO $ actionTitle @?= "Define plus :: Int -> Int -> Int"
executeCodeAction action
contentAfterAction <- documentContents doc
liftIO $ contentAfterAction @?= T.unlines
[ "import Control.Monad"
, "f :: Int -> Int"
, "f x = plus x x"
, ""
, "plus :: Int -> Int -> Int"
, "plus = _"
]
, testSession "define a hole" $ do
let txtB =
["foo True = _select [True]"
Expand All @@ -2146,9 +2169,8 @@ insertNewDefinitionTests = testGroup "insert new definition actions"
]
docB <- createDoc "ModuleB.hs" "haskell" (T.unlines $ txtB ++ txtB')
_ <- waitForDiagnostics
InR action@CodeAction { _title = actionTitle } : _
<- filter (\(InR CodeAction{_title=x}) -> "Define" `T.isPrefixOf` x) <$>
getCodeActions docB (R 0 0 0 50)
action@CodeAction { _title = actionTitle } : _
<- findCodeActionsByPrefix docB (R 0 0 0 50) ["Define"]
liftIO $ actionTitle @?= "Define select :: [Bool] -> Bool"
executeCodeAction action
contentAfterAction <- documentContents docB
Expand Down Expand Up @@ -2180,9 +2202,8 @@ insertNewDefinitionTests = testGroup "insert new definition actions"
, "haddock = undefined"]
docB <- createDoc "ModuleB.hs" "haskell" (T.unlines start)
_ <- waitForDiagnostics
InR action@CodeAction { _title = actionTitle } : _
<- filter (\(InR CodeAction{_title=x}) -> "Define" `T.isPrefixOf` x) <$>
getCodeActions docB (R 1 0 0 50)
action@CodeAction { _title = actionTitle } : _
<- findCodeActionsByPrefix docB (R 1 0 0 50) ["Define"]
liftIO $ actionTitle @?= "Define select :: Int -> Bool"
executeCodeAction action
contentAfterAction <- documentContents docB
Expand All @@ -2206,9 +2227,8 @@ insertNewDefinitionTests = testGroup "insert new definition actions"
, "normal = undefined"]
docB <- createDoc "ModuleB.hs" "haskell" (T.unlines start)
_ <- waitForDiagnostics
InR action@CodeAction { _title = actionTitle } : _
<- filter (\(InR CodeAction{_title=x}) -> "Define" `T.isPrefixOf` x) <$>
getCodeActions docB (R 1 0 0 50)
action@CodeAction { _title = actionTitle } : _
<- findCodeActionsByPrefix docB (R 1 0 0 50) ["Define"]
liftIO $ actionTitle @?= "Define select :: Int -> Bool"
executeCodeAction action
contentAfterAction <- documentContents docB
Expand All @@ -2223,9 +2243,8 @@ insertNewDefinitionTests = testGroup "insert new definition actions"
]
docB <- createDoc "ModuleB.hs" "haskell" (T.unlines $ txtB ++ txtB')
_ <- waitForDiagnostics
InR action@CodeAction { _title = actionTitle } : _
<- filter (\(InR CodeAction{_title=x}) -> "Define" `T.isPrefixOf` x) <$>
getCodeActions docB (R 0 0 0 50)
action@CodeAction { _title = actionTitle } : _ <-
findCodeActionsByPrefix docB (R 0 0 0 50) ["Define"]
liftIO $ actionTitle @?= "Define select :: _"
executeCodeAction action
contentAfterAction <- documentContents docB
Expand All @@ -2237,6 +2256,7 @@ insertNewDefinitionTests = testGroup "insert new definition actions"
++ txtB')
]


deleteUnusedDefinitionTests :: TestTree
deleteUnusedDefinitionTests = testGroup "delete unused definition action"
[ testSession "delete unused top level binding" $
Expand Down Expand Up @@ -2573,8 +2593,10 @@ importRenameActionTests = testGroup "import rename actions"
]
doc <- createDoc "Testing.hs" "haskell" content
_ <- waitForDiagnostics
actionsOrCommands <- getCodeActions doc (Range (Position 1 8) (Position 1 16))
let [changeToMap] = [action | InR action@CodeAction{ _title = actionTitle } <- actionsOrCommands, ("Data." <> modname) `T.isInfixOf` actionTitle ]
actionsOrCommands <- getCodeActions doc (R 1 8 1 16)
[changeToMap] <- pure [action | InR action@CodeAction{ _title = actionTitle } <- actionsOrCommands
, ("Data." <> modname) `T.isInfixOf` actionTitle
]
executeCodeAction changeToMap
contentAfterAction <- documentContents doc
let expectedContentAfterAction = T.unlines
Expand Down Expand Up @@ -3845,12 +3867,8 @@ pattern R x y x' y' = Range (Position x y) (Position x' y')
-- Which we need to do on macOS since the $TMPDIR can be in @/private/var@ or
-- @/var@
withTempDir :: (FilePath -> IO a) -> IO a
withTempDir f = System.IO.Extra.withTempDir $ \dir -> do
dir' <- canonicalizePath dir
f dir'

ignoreForGHC92 :: String -> TestTree -> TestTree
ignoreForGHC92 = ignoreForGhcVersions [GHC92]
withTempDir f = System.IO.Extra.withTempDir $ \dir ->
canonicalizePath dir >>= f

brokenForGHC94 :: String -> TestTree -> TestTree
brokenForGHC94 = knownBrokenForGhcVersions [GHC94]
Expand Down
4 changes: 1 addition & 3 deletions plugins/hls-refactor-plugin/test/Test/AddArgument.hs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ import Data.List.Extra
import qualified Data.Text as T
import Development.IDE.Types.Location
import Language.LSP.Protocol.Types hiding
(SemanticTokenAbsolute (length, line),
SemanticTokenRelative (length),
SemanticTokensEdit (_start),
(SemanticTokensEdit (_start),
mkRange)
import Language.LSP.Test
import Test.Tasty
Expand Down