This repository was archived by the owner on Oct 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 206
/
Copy pathCabalHelperSpec.hs
239 lines (207 loc) · 8.26 KB
/
CabalHelperSpec.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
{-# LANGUAGE OverloadedStrings #-}
module CabalHelperSpec where
import Data.Maybe (isJust)
import Haskell.Ide.Engine.Cradle
import HIE.Bios.Types (runCradle, cradleOptsProg, Cradle, CradleLoadResult(..))
import Test.Hspec
import System.FilePath
import System.Directory (findExecutable, getCurrentDirectory, removeFile)
import TestUtils
rootPath :: FilePath -> FilePath
rootPath cwd = cwd </> "test" </> "testdata" </> "cabal-helper"
implicitExePath :: FilePath -> FilePath
implicitExePath cwd = rootPath cwd </> "implicit-exe"
monoRepoPath :: FilePath -> FilePath
monoRepoPath cwd = rootPath cwd </> "mono-repo"
subPackagePath :: FilePath -> FilePath
subPackagePath cwd = rootPath cwd </> "sub-package"
simpleCabalPath :: FilePath -> FilePath
simpleCabalPath cwd = rootPath cwd </> "simple-cabal"
simpleStackPath :: FilePath -> FilePath
simpleStackPath cwd = rootPath cwd </> "simple-stack"
multiSourceDirsPath :: FilePath -> FilePath
multiSourceDirsPath cwd = rootPath cwd </> "multi-source-dirs"
spec :: Spec
spec = beforeAll_ setupStackFiles $ do
describe "stack and cabal executables should be accesible" $ do
it "cabal is accesible" $ do
stack <- findExecutable "cabal"
stack `shouldSatisfy` isJust
it "stack is accesible" $ do
cabal <- findExecutable "stack"
cabal `shouldSatisfy` isJust
describe "cabal-helper spec" $ do
describe "find entry point" findCabalHelperEntryPointSpec
describe "cradle discovery and loading" cabalHelperCradleSpec
cabalHelperCradleSpec :: Spec
cabalHelperCradleSpec = do
cwd <- runIO getCurrentDirectory
describe "dummy filepath, finds none-cradle" $ do
it "implicit exe" $ do
crdl <- cabalHelperCradle (implicitExePath cwd </> "File.hs")
crdl `shouldSatisfy` isCabalCradle
it "mono repo" $ do
crdl <- cabalHelperCradle (monoRepoPath cwd </> "File.hs")
crdl `shouldSatisfy` isCabalCradle
it "stack repo" $ do
crdl <- cabalHelperCradle (simpleStackPath cwd </> "File.hs")
crdl `shouldSatisfy` isStackCradle
it "cabal repo" $
pendingWith "Can not work because of global `cabal.project`"
-- crdl <- cabalHelperCradle (simpleCabalPath cwd </> "File.hs")
-- crdl `shouldSatisfy` isCabalCradle
it "sub package" $ do
crdl <- cabalHelperCradle (subPackagePath cwd </> "File.hs")
crdl `shouldSatisfy` isStackCradle
it "multi-source-dirs" $ do
crdl <- cabalHelperCradle (multiSourceDirsPath cwd </> "File.hs")
crdl `shouldSatisfy` isStackCradle
describe "existing projects" $ do
it "implicit exe" $ do
let fp = implicitExePath cwd </> "src" </> "Exe.hs"
componentTest fp isCabalCradle
it "mono repo" $ do
let fp = monoRepoPath cwd </> "A" </> "Main.hs"
componentTest fp isCabalCradle
it "stack repo" $ do
let fp = simpleStackPath cwd </> "MyLib.hs"
componentTest fp isStackCradle
it "cabal repo" $
pendingWith "Can not work because of global `cabal.project`"
-- let fp = (simpleCabalPath cwd </> "MyLib.hs")
-- componentTest fp isStackCradle
it "sub package" $ do
let fp = subPackagePath cwd </> "plugins-api" </> "PluginLib.hs"
componentTest fp isStackCradle
it "multi-source-dirs, nested dir" $ do
let fp = multiSourceDirsPath cwd </> "src" </> "input" </> "Lib.hs"
componentTest fp isStackCradle
it "multi-source-dirs" $ do
let fp = multiSourceDirsPath cwd </> "src" </> "BetterLib.hs"
componentTest fp isStackCradle
componentTest :: FilePath -> (Cradle CabalHelper -> Bool) -> Expectation
componentTest fp testCradleType = do
crdl <- cabalHelperCradle fp
crdl `shouldSatisfy` testCradleType
-- TODO: this works but CI crashes
-- loadComponent crdl fp
loadComponent :: Cradle CabalHelper -> FilePath -> Expectation
loadComponent crdl fp = do
result <- runCradle (cradleOptsProg crdl) (\_ -> return ()) fp
case result of
CradleFail err -> expectationFailure $ "Loading should not have failed: " ++ show err
_ -> return ()
return ()
findCabalHelperEntryPointSpec :: Spec
findCabalHelperEntryPointSpec = do
cwd <- runIO getCurrentDirectory
describe "implicit exe" $ do
it "dummy filepath" $ do
let dummyFile = implicitExePath cwd </> "File.hs"
cabalTest dummyFile
it "source component" $ do
let libFile = implicitExePath cwd </> "src" </> "Lib.hs"
cabalTest libFile
it "executable component" $ do
let mainFile = implicitExePath cwd </> "src" </> "Exe.hs"
cabalTest mainFile
describe "mono repo" $ do
it "dummy filepath" $ do
let dummyFile = monoRepoPath cwd </> "File.hs"
cabalTest dummyFile
it "existing executable" $ do
let mainFile = monoRepoPath cwd </> "A" </> "Main.hs"
cabalTest mainFile
describe "sub package repo" $ do
it "dummy filepath" $ do
let dummyFile = subPackagePath cwd </> "File.hs"
stackTest dummyFile
it "existing executable" $ do
let mainFile = subPackagePath cwd </> "plugins-api" </> "PluginLib.hs"
stackTest mainFile
describe "stack repo" $ do
it "dummy filepath" $ do
let dummyFile = simpleStackPath cwd </> "File.hs"
stackTest dummyFile
it "real filepath" $ do
let dummyFile = simpleStackPath cwd </> "MyLib.hs"
stackTest dummyFile
describe "multi-source-dirs" $ do
it "dummy filepath" $ do
let dummyFile = multiSourceDirsPath cwd </> "File.hs"
stackTest dummyFile
it "real filepath" $ do
let dummyFile = multiSourceDirsPath cwd </> "src" </> "BetterLib.hs"
stackTest dummyFile
it "nested filpath" $ do
let dummyFile = multiSourceDirsPath cwd </> "src" </> "input" </> "Lib.hs"
stackTest dummyFile
describe "simple cabal repo" $
it "Find project root with dummy filepath" $
pendingWith "Change test-setup, we will always find `cabal.project` in root dir"
-- -------------------------------------------------------------
cabalTest :: FilePath -> IO ()
cabalTest fp = do
entryPoint <- findCabalHelperEntryPoint fp
let Just proj = entryPoint
isCabal = isCabalProject proj
shouldBe isCabal True
stackTest :: FilePath -> IO ()
stackTest fp = do
entryPoint <- findCabalHelperEntryPoint fp
let Just proj = entryPoint
isStack = isStackProject proj
shouldBe isStack True
-- -------------------------------------------------------------
setupStackFiles :: IO ()
setupStackFiles = do
resolver <- readResolver
cwd <- getCurrentDirectory
writeFile (implicitExePath cwd </> "stack.yaml") (standardStackYaml resolver)
writeFile (monoRepoPath cwd </> "stack.yaml") (monoRepoStackYaml resolver)
writeFile (subPackagePath cwd </> "stack.yaml") (subPackageStackYaml resolver)
writeFile (simpleStackPath cwd </> "stack.yaml") (standardStackYaml resolver)
writeFile (multiSourceDirsPath cwd </> "stack.yaml")
(standardStackYaml resolver)
cleanupStackFiles :: IO ()
cleanupStackFiles = do
cwd <- getCurrentDirectory
removeFile (implicitExePath cwd </> "stack.yaml")
removeFile (monoRepoPath cwd </> "stack.yaml")
removeFile (subPackagePath cwd </> "stack.yaml")
removeFile (simpleStackPath cwd </> "stack.yaml")
removeFile (multiSourceDirsPath cwd </> "stack.yaml")
-- -------------------------------------------------------------
standardStackYaml :: String -> String
standardStackYaml resolver = unlines
[ "# WARNING: THIS FILE IS AUTOGENERATED IN test/utils/CabalHelperSpec. IT WILL BE OVERWRITTEN ON EVERY TEST RUN"
, "resolver: " ++ resolver
, "packages:"
, "- '.'"
, "extra-deps: []"
, "flags: {}"
, "extra-package-dbs: []"
]
monoRepoStackYaml :: String -> String
monoRepoStackYaml resolver = unlines
[ "# WARNING: THIS FILE IS AUTOGENERATED IN test/utils/CabalHelperSpec. IT WILL BE OVERWRITTEN ON EVERY TEST RUN"
, "resolver: " ++ resolver
, "packages:"
, "- 'A'"
, "- 'B'"
, "- 'C'"
, "extra-deps: []"
, "flags: {}"
, "extra-package-dbs: []"
]
subPackageStackYaml :: String -> String
subPackageStackYaml resolver = unlines
[ "# WARNING: THIS FILE IS AUTOGENERATED IN test/unit/CabalHelperSpec. IT WILL BE OVERWRITTEN ON EVERY TEST RUN"
, "resolver: " ++ resolver
, "packages:"
, "- '.'"
, "- 'plugins-api'"
, "extra-deps: []"
, "flags: {}"
, "extra-package-dbs: []"
]