A test helper to easily create files and directories for testing purposes.
- Organises test files according to the test structure
- Cleans up test files, but leaves them in place if the test fails, so you can examine them
- Generates random file names that are consistent each test run
- Supports Spek and Kotest
Framework | Link | Dependency |
---|---|---|
Spek | de.joshuagleitze:spek-testfiles:<version> |
|
Kotest | de.joshuagleitze:kotest-files:<version> |
Create a testFiles
instance for your Spek by using
the testFiles()
function:
import de.joshuagleitze.testfiles.DeletionMode.*
import de.joshuagleitze.testfiles.spek.testFiles
import org.spekframework.spek2.Spek
import org.spekframework.spek2.style.specification.describe
object ExampleSpek: Spek({
val testFiles = testFiles()
describe("using test files") {
it("generates file names") {
testFiles.createFile()
testFiles.createDirectory()
}
it("cleans up files") {
testFiles.createFile("irrelevant", delete = Always)
testFiles.createFile("default mode", delete = IfSuccessful)
testFiles.createFile("output", delete = Never)
}
}
})
Use the global testFiles
property:
import de.joshuagleitze.testfiles.DeletionMode.*
import de.joshuagleitze.testfiles.kotest.testFiles
import io.kotest.core.spec.style.DescribeSpec
class ExampleSpek: DescribeSpec({
describe("using test files") {
it("generates file names") {
testFiles.createFile()
testFiles.createDirectory()
}
it("cleans up files") {
testFiles.createFile("irrelevant", delete = Always)
testFiles.createFile("default mode", delete = IfSuccessful)
testFiles.createFile("output", delete = Never)
}
}
})
testfiles
will automatically pick the most appropriate folder to create the files in. Concretely, it uses this logic (
see DefaultTestFiles.determineTestFilesRootDirectory):
Case | Test File Directory | Use Case |
---|---|---|
<pwd>/build exists |
<pwd>/build/test-outputs |
Gradle users |
<pwd>/target exists |
<pwd>/target/test-outputs |
Maven users |
<pwd>/test-outputs exists |
<pwd>/test-outputs |
Other users wishing to have the files in the project directory |
else | <tmpdir>/spek-test-outputs |
Fallback |
The files in the test directory will be organized into directories according to the test structure.
For example, the “output” file from the example above would be created at <test file directory>/[ExampleSpek]/[using test files]/[cleans up files]/output
.
Per default, testiles
will delete created files and directories if the current test or group was successful and retain them if the test or
group failed. This allows you to examine test output after tests fails, but does not clutter your test output folder.
The behaviour can be changed by passing the
correct DeletionMode
to createFile
or createDirectory
:
DeletionMode |
behaviour |
---|---|
Always |
Always delete the created file after the test or group has run. |
IfSuccessful |
Delete the file if the test or group ran through successfully; retain the file if the test or group failed. The default value. |
Never |
always retain the file after the test run. |
Retained files will be deleted once the group or test they were created for is executed again.
If no file or directory name is provided, testfiles
will create one. Names are constructed following the pattern test-<number>
where <number>
is a randomly generated, non-negative integer. The random generator is seeded with the current test directory path to make
sure the same test will always get the same file names every execution.
For example, the first generated file from the example above might have the
path <test file directory>/[ExampleSpek]/[using test files]/[generates file names]/test-162363182
.
If a file name is provided, the name must not be wrapped in angle brackets.