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
|
-- Tests for the compiler's handling of incremental builds, i.e. the code in
-- Language.PureScript.Make.
module TestMake where
import Prelude ()
import Prelude.Compat
import qualified Language.PureScript as P
import qualified Language.PureScript.CST as CST
import Control.Monad
import Control.Exception (tryJust)
import Control.Monad.IO.Class (liftIO)
import Control.Concurrent.MVar (readMVar, newMVar, modifyMVar_)
import Data.Time.Calendar
import Data.Time.Clock
import qualified Data.Text as T
import Data.Set (Set)
import qualified Data.Set as Set
import qualified Data.Map as M
import System.FilePath
import System.Directory
import System.IO.Error (isDoesNotExistError)
import System.IO.UTF8 (readUTF8FilesT, writeUTF8FileT)
import Test.Tasty
import Test.Tasty.Hspec
utcMidnightOnDate :: Integer -> Int -> Int -> UTCTime
utcMidnightOnDate day month year = UTCTime (fromGregorian day month year) (secondsToDiffTime 0)
timestampA, timestampB, timestampC, timestampD, timestampE, timestampF :: UTCTime
timestampA = utcMidnightOnDate 2019 1 1
timestampB = utcMidnightOnDate 2019 1 2
timestampC = utcMidnightOnDate 2019 1 3
timestampD = utcMidnightOnDate 2019 1 4
timestampE = utcMidnightOnDate 2019 1 5
timestampF = utcMidnightOnDate 2019 1 6
main :: IO TestTree
main = testSpec "make" spec
spec :: Spec
spec = do
let sourcesDir = "tests/purs/make"
let moduleNames = Set.fromList . map P.moduleNameFromString
before_ (rimraf modulesDir >> rimraf sourcesDir >> createDirectory sourcesDir) $ do
it "does not recompile if there are no changes" $ do
let modulePath = sourcesDir </> "Module.purs"
writeFileWithTimestamp modulePath timestampA "module Module where\nfoo = 0\n"
compile [modulePath] `shouldReturn` moduleNames ["Module"]
compile [modulePath] `shouldReturn` moduleNames []
it "recompiles if files have changed" $ do
let modulePath = sourcesDir </> "Module.purs"
writeFileWithTimestamp modulePath timestampA "module Module where\nfoo = 0\n"
compile [modulePath] `shouldReturn` moduleNames ["Module"]
writeFileWithTimestamp modulePath timestampB "module Module where\nfoo = 1\n"
compile [modulePath] `shouldReturn` moduleNames ["Module"]
it "does not recompile if hashes have not changed" $ do
let modulePath = sourcesDir </> "Module.purs"
moduleContent = "module Module where\nfoo = 0\n"
writeFileWithTimestamp modulePath timestampA moduleContent
compile [modulePath] `shouldReturn` moduleNames ["Module"]
writeFileWithTimestamp modulePath timestampB moduleContent
compile [modulePath] `shouldReturn` moduleNames []
it "recompiles if the file path for a module has changed" $ do
let modulePath1 = sourcesDir </> "Module1.purs"
modulePath2 = sourcesDir </> "Module2.purs"
moduleContent = "module Module where\nfoo = 0\n"
writeFileWithTimestamp modulePath1 timestampA moduleContent
writeFileWithTimestamp modulePath2 timestampA moduleContent
compile [modulePath1] `shouldReturn` moduleNames ["Module"]
compile [modulePath2] `shouldReturn` moduleNames ["Module"]
it "recompiles if an FFI file was added" $ do
let moduleBasePath = sourcesDir </> "Module"
modulePath = moduleBasePath ++ ".purs"
moduleFFIPath = moduleBasePath ++ ".js"
moduleContent = "module Module where\nfoo = 0\n"
writeFileWithTimestamp modulePath timestampA moduleContent
compile [modulePath] `shouldReturn` moduleNames ["Module"]
writeFileWithTimestamp moduleFFIPath timestampB "exports.bar = 1;\n"
compile [modulePath] `shouldReturn` moduleNames ["Module"]
it "recompiles if an FFI file was removed" $ do
let moduleBasePath = sourcesDir </> "Module"
modulePath = moduleBasePath ++ ".purs"
moduleFFIPath = moduleBasePath ++ ".js"
moduleContent = "module Module where\nfoo = 0\n"
writeFileWithTimestamp modulePath timestampA moduleContent
writeFileWithTimestamp moduleFFIPath timestampB "exports.bar = 1;\n"
compile [modulePath] `shouldReturn` moduleNames ["Module"]
removeFile moduleFFIPath
compile [modulePath] `shouldReturn` moduleNames ["Module"]
it "recompiles downstream modules when a module is rebuilt" $ do
let moduleAPath = sourcesDir </> "A.purs"
moduleBPath = sourcesDir </> "B.purs"
moduleAContent1 = "module A where\nfoo = 0\n"
moduleAContent2 = "module A where\nfoo = 1\n"
moduleBContent = "module B where\nimport A (foo)\nbar = foo\n"
writeFileWithTimestamp moduleAPath timestampA moduleAContent1
writeFileWithTimestamp moduleBPath timestampB moduleBContent
compile [moduleAPath, moduleBPath] `shouldReturn` moduleNames ["A", "B"]
writeFileWithTimestamp moduleAPath timestampC moduleAContent2
compile [moduleAPath, moduleBPath] `shouldReturn` moduleNames ["A", "B"]
it "only recompiles downstream modules when a module is rebuilt" $ do
let moduleAPath = sourcesDir </> "A.purs"
moduleBPath = sourcesDir </> "B.purs"
moduleCPath = sourcesDir </> "C.purs"
modulePaths = [moduleAPath, moduleBPath, moduleCPath]
moduleAContent1 = "module A where\nfoo = 0\n"
moduleAContent2 = "module A where\nfoo = 1\n"
moduleBContent = "module B where\nimport A (foo)\nbar = foo\n"
moduleCContent = "module C where\nbaz = 3\n"
writeFileWithTimestamp moduleAPath timestampA moduleAContent1
writeFileWithTimestamp moduleBPath timestampB moduleBContent
writeFileWithTimestamp moduleCPath timestampC moduleCContent
compile modulePaths `shouldReturn` moduleNames ["A", "B", "C"]
writeFileWithTimestamp moduleAPath timestampD moduleAContent2
compile modulePaths `shouldReturn` moduleNames ["A", "B"]
it "does not necessarily recompile modules which were not part of the previous batch" $ do
let moduleAPath = sourcesDir </> "A.purs"
moduleBPath = sourcesDir </> "B.purs"
moduleCPath = sourcesDir </> "C.purs"
modulePaths = [moduleAPath, moduleBPath, moduleCPath]
batch1 = [moduleAPath, moduleBPath]
batch2 = [moduleAPath, moduleCPath]
moduleAContent = "module A where\nfoo = 0\n"
moduleBContent = "module B where\nimport A (foo)\nbar = foo\n"
moduleCContent = "module C where\nbaz = 3\n"
writeFileWithTimestamp moduleAPath timestampA moduleAContent
writeFileWithTimestamp moduleBPath timestampB moduleBContent
writeFileWithTimestamp moduleCPath timestampC moduleCContent
compile modulePaths `shouldReturn` moduleNames ["A", "B", "C"]
compile batch1 `shouldReturn` moduleNames []
compile batch2 `shouldReturn` moduleNames []
it "recompiles if a module fails to compile" $ do
let modulePath = sourcesDir </> "Module.purs"
moduleContent = "module Module where\nfoo :: Int\nfoo = \"not an int\"\n"
writeFileWithTimestamp modulePath timestampA moduleContent
compileAllowingFailures [modulePath] `shouldReturn` moduleNames ["Module"]
compileAllowingFailures [modulePath] `shouldReturn` moduleNames ["Module"]
rimraf :: FilePath -> IO ()
rimraf =
void . tryJust (guard . isDoesNotExistError) . removeDirectoryRecursive
-- | Returns a set of the modules for which a rebuild was attempted, including
-- the make result.
compileWithResult :: [FilePath] -> IO (Either P.MultipleErrors [P.ExternsFile], Set P.ModuleName)
compileWithResult input = do
recompiled <- newMVar Set.empty
moduleFiles <- readUTF8FilesT input
(makeResult, _) <- P.runMake P.defaultOptions $ do
ms <- CST.parseModulesFromFiles id moduleFiles
let filePathMap = M.fromList $ map (\(fp, pm) -> (P.getModuleName $ CST.resPartial pm, Right fp)) ms
foreigns <- P.inferForeignModules filePathMap
let makeActions =
(P.buildMakeActions modulesDir filePathMap foreigns True)
{ P.progress = \(P.CompilingModule mn) ->
liftIO $ modifyMVar_ recompiled (return . Set.insert mn)
}
P.make makeActions (map snd ms)
recompiledModules <- readMVar recompiled
pure (makeResult, recompiledModules)
-- | Compile, returning the set of modules which were rebuilt, and failing if
-- any errors occurred.
compile :: [FilePath] -> IO (Set P.ModuleName)
compile input = do
(result, recompiled) <- compileWithResult input
case result of
Left errs ->
fail (P.prettyPrintMultipleErrors P.defaultPPEOptions errs)
Right _ ->
pure recompiled
compileAllowingFailures :: [FilePath] -> IO (Set P.ModuleName)
compileAllowingFailures input = fmap snd (compileWithResult input)
writeFileWithTimestamp :: FilePath -> UTCTime -> T.Text -> IO ()
writeFileWithTimestamp path mtime contents = do
writeUTF8FileT path contents
setModificationTime path mtime
-- | Use a different output directory to ensure that we don't get interference
-- from other test results
modulesDir :: FilePath
modulesDir = ".test_modules" </> "make"
|