diff --git a/.gitignore b/.gitignore index c50698e..37b75cb 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ nimcache/ /strawboss src/test/nim/runtests +src/test/nim/run_*_tests diff --git a/README.md b/README.md index 6488a47..655d411 100644 --- a/README.md +++ b/README.md @@ -219,3 +219,43 @@ using the handler to update the supervisor's knowledge of the build results and When launched in single-build mode there is no supervisory process. The main process directly executes the requested build steps. + +### Building StrawBoss + +To build StrawBoss locally, checkout the repository and in the repo root run: + + nimble build + +### Testing + +StrawBoss has two test suites, a set of unit tests and a set of functional +tests. All the test code and assets live under the `src/test` subdirectory. + +Each test suite has a runner file that serves as an entry for the test process, +named `run_unit_tests.nim` and `run_functional_tests.nim`. + +#### Unit Tests + +The unit test soruce files live in the `nim/unit` subdirectory and have a +one-to-one correspondence with the StrawBoss source files following this +naming convention: `t.nim`. The unit tests are intended to be run any +time the code is recompiled. + +To run the unit tests, use the `unittest` nimble task: + + nimble unittest + +#### Functional Tests + +The functional test source files live in the `nim/functional` subdirectory. +There is a test project that is used to excercise StrawBoss functionality. To +avoid external coupling it is stored within the StrawBoss repository as a test +asset. To avoid `git` complications it is stored as a Gzipped TAR file and +unpacked to a temporary directory as part of the functional test process. + +As the functional tests are more time-consuming and intensive, they are +expected to bu run when performing a build. + +To run the functional tests, use the `functest` nimble task: + + nimble functest diff --git a/src/main/nim/strawbosspkg/configuration.nim b/src/main/nim/strawbosspkg/configuration.nim index 68d9c5e..8d73c33 100644 --- a/src/main/nim/strawbosspkg/configuration.nim +++ b/src/main/nim/strawbosspkg/configuration.nim @@ -74,8 +74,17 @@ proc findProject*(cfg: StrawBossConfig, projectName: string): ProjectDef = raise newException(KeyError, "multiple projects named " & projectName) else: result = candidates[0] -# internal utils +proc setProject*(cfg: var StrawBossConfig, projectName: string, newDef: ProjectDef): void = + var found = false + for idx in 0..= 0.16.1", "docopt >= 0.1.0", "tempfile", "jester", "bcrypt"] +requires @["nim >= 0.16.1", "docopt >= 0.1.0", "tempfile", "jester", "bcrypt", "untar"] requires "https://github.com/yglukhov/nim-jwt" requires "https://git.jdb-labs.com/jdb/nim-lang-utils.git" -task test, "Runs the test suite.": - exec "nim c -r src/test/nim/runtests.nim" +task functest, "Runs the functional test suite.": + exec "nim c -r src/test/nim/run_functional_tests.nim" + +task unittest, "Runs the unit test suite.": + exec "nim c -r src/test/nim/run_unit_tests.nim"