You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run plugins' test suites with server in the same process (haskell#1628)
* Run plugins' test suites with server in the same process
* Use async
* Update CI
* Add rts options
* Sleep 0.5s after running a session
* Update CI
* Don't use withAsync
* Add timeout
* Cancel the server action when timeout
* Fix cwd
* Close input stream manually, add a lock
* cleanup
* tactics plugin
* Remove sleep
Co-authored-by: Javier Neira <atreyu.bbb@gmail.com>
Copy file name to clipboardexpand all lines: plugins/hls-brittany-plugin/test/Main.hs
+11-7
Original file line number
Diff line number
Diff line change
@@ -2,32 +2,36 @@
2
2
moduleMain(main) where
3
3
4
4
importqualifiedData.ByteString.LazyasBS
5
-
importqualifiedData.Text.EncodingasT
6
-
importqualifiedData.Text.IOasT
7
-
importTest.Hls
5
+
importqualifiedData.Text.EncodingasT
6
+
importqualifiedData.Text.IOasT
7
+
importqualifiedIde.Plugin.BrittanyasBrittany
8
+
importTest.Hls
8
9
9
10
main::IO()
10
11
main = defaultTestRunner tests
11
12
13
+
plugin::PluginDescriptorIdeState
14
+
plugin =Brittany.descriptor "brittany"
15
+
12
16
tests::TestTree
13
17
tests = testGroup "brittany" [
14
-
goldenGitDiff "formats a document with LF endings""test/testdata/BrittanyLF.formatted_document.hs"$runSession testCommand fullCaps"test/testdata"$do
18
+
goldenGitDiff "formats a document with LF endings""test/testdata/BrittanyLF.formatted_document.hs"$runSessionWithServerFormatter plugin "brittany""test/testdata"$do
, goldenGitDiff "formats a document with CRLF endings""test/testdata/BrittanyCRLF.formatted_document.hs"$runSession testCommand fullCaps"test/testdata"$do
23
+
, goldenGitDiff "formats a document with CRLF endings""test/testdata/BrittanyCRLF.formatted_document.hs"$runSessionWithServerFormatter plugin "brittany""test/testdata"$do
, goldenGitDiff "formats a range with LF endings""test/testdata/BrittanyLF.formatted_range.hs"$runSession testCommand fullCaps"test/testdata"$do
28
+
, goldenGitDiff "formats a range with LF endings""test/testdata/BrittanyLF.formatted_range.hs"$runSessionWithServerFormatter plugin "brittany""test/testdata"$do
25
29
doc <- openDoc "BrittanyLF.hs""haskell"
26
30
let range =Range (Position10) (Position222)
27
31
formatRange doc (FormattingOptions4TrueNothingNothingNothing) range
, goldenGitDiff "formats a range with CRLF endings""test/testdata/BrittanyCRLF.formatted_range.hs"$runSession testCommand fullCaps"test/testdata"$do
34
+
, goldenGitDiff "formats a range with CRLF endings""test/testdata/BrittanyCRLF.formatted_range.hs"$runSessionWithServerFormatter plugin "brittany""test/testdata"$do
31
35
doc <- openDoc "BrittanyCRLF.hs""haskell"
32
36
let range =Range (Position10) (Position222)
33
37
formatRange doc (FormattingOptions4TrueNothingNothingNothing) range
0 commit comments