mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-11-28 12:16:11 +03:00
2617bd5f66
Also fixed path issues when running on Windows.
83 lines
3.6 KiB
Haskell
83 lines
3.6 KiB
Haskell
module Generator.WebAppGeneratorTest where
|
|
|
|
import Test.Tasty.Hspec
|
|
|
|
import System.FilePath ((</>))
|
|
import qualified Path as P
|
|
|
|
import qualified StrongPath as SP
|
|
import Util
|
|
import qualified CompileOptions
|
|
import Generator.WebAppGenerator
|
|
import Generator.FileDraft
|
|
import qualified Generator.FileDraft.TemplateFileDraft as TmplFD
|
|
import qualified Generator.FileDraft.CopyFileDraft as CopyFD
|
|
import qualified Generator.FileDraft.TextFileDraft as TextFD
|
|
import qualified Generator.WebAppGenerator.Common as Common
|
|
import Wasp
|
|
import Fixtures (fpRoot)
|
|
|
|
-- TODO(martin): We could define Arbitrary instance for Wasp, define properties over
|
|
-- generator functions and then do property testing on them, that would be cool.
|
|
|
|
spec_WebAppGenerator :: Spec
|
|
spec_WebAppGenerator = do
|
|
let testApp = (App "TestApp" "Test App")
|
|
let testEntity = (Entity "TestEntity" [EntityField "testField" EftString])
|
|
let testWasp = (fromApp testApp) `addEntity` testEntity
|
|
let testCompileOptions = CompileOptions.CompileOptions
|
|
{ CompileOptions.externalCodeDirPath = SP.fromPathAbsDir $ fpRoot P.</> [P.reldir|test/src|]
|
|
}
|
|
|
|
describe "generateWebApp" $ do
|
|
-- NOTE: This test does not (for now) check that content of files is correct or
|
|
-- that they will successfully be written, it checks only that their
|
|
-- destinations are correct.
|
|
it "Given a simple Wasp, creates file drafts at expected destinations" $ do
|
|
let fileDrafts = generateWebApp testWasp testCompileOptions
|
|
let testEntityDstDirInSrc
|
|
= "entities" </> (Util.camelToKebabCase (entityName testEntity))
|
|
let expectedFileDraftDstPaths = map ((SP.toFilePath Common.webAppRootDirInProjectRootDir) </>) $ concat $
|
|
[ [ "README.md"
|
|
, "package.json"
|
|
, ".gitignore"
|
|
]
|
|
, map ("public" </>)
|
|
[ "favicon.ico"
|
|
, "index.html"
|
|
, "manifest.json"
|
|
]
|
|
, map ((SP.toFilePath Common.webAppSrcDirInWebAppRootDir) </>)
|
|
[ "logo.png"
|
|
, "index.css"
|
|
, "index.js"
|
|
, "reducers.js"
|
|
, "router.js"
|
|
, "serviceWorker.js"
|
|
, "store" </> "index.js"
|
|
, "store" </> "middleware" </> "logger.js"
|
|
, testEntityDstDirInSrc </> "actions.js"
|
|
, testEntityDstDirInSrc </> "actionTypes.js"
|
|
, testEntityDstDirInSrc </> "state.js"
|
|
]
|
|
]
|
|
|
|
mapM_
|
|
-- NOTE(martin): I added fd to the pair here in order to have it
|
|
-- printed when shouldBe fails, otherwise I could not know which
|
|
-- file draft failed.
|
|
(\dstPath -> (dstPath, existsFdWithDst fileDrafts dstPath)
|
|
`shouldBe` (dstPath, True))
|
|
expectedFileDraftDstPaths
|
|
|
|
|
|
existsFdWithDst :: [FileDraft] -> FilePath -> Bool
|
|
existsFdWithDst fds dstPath = any ((== dstPath) . getFileDraftDstPath) fds
|
|
|
|
-- TODO(martin): This should really become part of the Writeable typeclass,
|
|
-- since it is smth we want to do for all file drafts.
|
|
getFileDraftDstPath :: FileDraft -> FilePath
|
|
getFileDraftDstPath (FileDraftTemplateFd fd) = SP.toFilePath $ TmplFD._dstPath fd
|
|
getFileDraftDstPath (FileDraftCopyFd fd) = SP.toFilePath $ CopyFD._dstPath fd
|
|
getFileDraftDstPath (FileDraftTextFd fd) = SP.toFilePath $ TextFD._dstPath fd
|