Steup CI #1

Merged
cyclane merged 4 commits from setup-ci into main 2023-12-20 15:34:41 +00:00
4 changed files with 79 additions and 34 deletions
Showing only changes of commit 1fd3fa8907 - Show all commits

View File

@ -11,3 +11,6 @@ tab_width = 4
[{*.yaml,*.yml}] [{*.yaml,*.yml}]
indent_size = 2 indent_size = 2
[{*.kt,*.kts}]
ij_kotlin_packages_to_use_import_on_demand = org.junit.jupiter.api

View File

@ -8,7 +8,10 @@ import java.nio.file.Path
class FSCreator { class FSCreator {
// Create entry, leaving existing folders' contents, but overwriting existing files. // Create entry, leaving existing folders' contents, but overwriting existing files.
@Throws(FileSystemException::class) @Throws(FileSystemException::class)
fun create(entryToCreate: FSEntry, destination: String) { fun create(
entryToCreate: FSEntry,
destination: String,
) {
val queue = ArrayDeque<Pair<FSEntry, Path>>() val queue = ArrayDeque<Pair<FSEntry, Path>>()
queue.add(entryToCreate to Path.of(destination)) queue.add(entryToCreate to Path.of(destination))
@ -20,7 +23,8 @@ class FSCreator {
is FSFile -> Files.createFile(path) is FSFile -> Files.createFile(path)
is FSFolder -> Files.createDirectory(path) is FSFolder -> Files.createDirectory(path)
} }
} catch (_: FileAlreadyExistsException) {} // Allow files/folders to already exist. } catch (_: FileAlreadyExistsException) {
} // Allow files/folders to already exist.
when (entry) { when (entry) {
is FSFile -> Files.write(path, entry.content.toByteArray()) is FSFile -> Files.write(path, entry.content.toByteArray())
is FSFolder -> queue.addAll(entry.entries.map { it to path }) is FSFolder -> queue.addAll(entry.entries.map { it to path })

View File

@ -29,19 +29,36 @@ class FSCreatorTest {
fun `create entries`() { fun `create entries`() {
val readme = FSFile("README", "Hello World!") val readme = FSFile("README", "Hello World!")
val gomod = FSFile("go.mod", "module example.com/hello-world\n\ngo1.21.5") val gomod = FSFile("go.mod", "module example.com/hello-world\n\ngo1.21.5")
val maingo = FSFile("main.go", "package main\n\nimport \"example.com/hello-world/utils\"\n\n" + val maingo =
"func main() {\n\tprintln(\"Hello World!\")\n}") FSFile(
val helloworldgo = FSFile("hello-world.go", "package utils\n\nfunc PrintHelloWorld() {\n" + "main.go",
"\tprintln(\"Hello World!\")\n}") "package main\n\nimport \"example.com/hello-world/utils\"\n\n" +
"func main() {\n\tprintln(\"Hello World!\")\n}",
)
val helloworldgo =
FSFile(
"hello-world.go",
"package utils\n\nfunc PrintHelloWorld() {\n" +
"\tprintln(\"Hello World!\")\n}",
)
assertDoesNotThrow("should create entries") { assertDoesNotThrow("should create entries") {
creator.create(FSFolder("folder", listOf( creator.create(
FSFolder(
"folder",
listOf(
readme, readme,
gomod, gomod,
maingo, maingo,
FSFolder("utils", listOf( FSFolder(
helloworldgo "utils",
)) listOf(
)), "_tmp") helloworldgo,
),
),
),
),
"_tmp",
)
} }
// If objects don't exist, these functions will throw anyway, so don't explicitly check for existence. // If objects don't exist, these functions will throw anyway, so don't explicitly check for existence.
// Similarly, don't explicitly check if an object is a directory. // Similarly, don't explicitly check if an object is a directory.
@ -54,25 +71,46 @@ class FSCreatorTest {
@Test @Test
fun `create existing entries`() { fun `create existing entries`() {
assertDoesNotThrow("creation one") { assertDoesNotThrow("creation one") {
creator.create(FSFolder("folder", listOf( creator.create(
FSFolder("sub-folder", listOf( FSFolder(
FSFile("hi", "hi") "folder",
)), listOf(
FSFolder(
"sub-folder",
listOf(
FSFile("hi", "hi"),
),
),
FSFolder("another-folder", listOf()), FSFolder("another-folder", listOf()),
FSFile("1.txt", "One!"), FSFile("1.txt", "One!"),
FSFile("2.txt", "Two!") FSFile("2.txt", "Two!"),
)), "_tmp") ),
),
"_tmp",
)
} }
assertDoesNotThrow("creation two") { assertDoesNotThrow("creation two") {
creator.create(FSFolder("folder", listOf( creator.create(
FSFolder("another-folder", listOf( FSFolder(
FSFolder("secrets", listOf( "folder",
FSFile("secret", "P4ssW0rd") listOf(
)) FSFolder(
)), "another-folder",
listOf(
FSFolder(
"secrets",
listOf(
FSFile("secret", "P4ssW0rd"),
),
),
),
),
FSFile("1.txt", "One is a good number"), FSFile("1.txt", "One is a good number"),
FSFile("3.txt", "Three!") FSFile("3.txt", "Three!"),
)), "_tmp") ),
),
"_tmp",
)
} }
assertEquals("hi", Files.readString(Path.of("_tmp/folder/sub-folder/hi"))) assertEquals("hi", Files.readString(Path.of("_tmp/folder/sub-folder/hi")))
assertEquals("P4ssW0rd", Files.readString(Path.of("_tmp/folder/another-folder/secrets/secret"))) assertEquals("P4ssW0rd", Files.readString(Path.of("_tmp/folder/another-folder/secrets/secret")))