mirror of
https://github.com/irmen/prog8.git
synced 2024-11-22 15:33:02 +00:00
145 lines
5.0 KiB
Kotlin
145 lines
5.0 KiB
Kotlin
package prog8tests.ast
|
|
|
|
import io.kotest.assertions.throwables.shouldThrow
|
|
import io.kotest.core.spec.style.AnnotationSpec
|
|
import io.kotest.matchers.shouldBe
|
|
import io.kotest.matchers.string.shouldContain
|
|
import prog8.parser.SourceCode
|
|
import prog8.parser.SourceCode.Companion.libraryFilePrefix
|
|
import prog8tests.ast.helpers.assumeNotExists
|
|
import prog8tests.ast.helpers.assumeReadableFile
|
|
import prog8tests.ast.helpers.fixturesDir
|
|
import prog8tests.ast.helpers.resourcesDir
|
|
import kotlin.io.path.Path
|
|
|
|
|
|
class TestSourceCode: AnnotationSpec() {
|
|
|
|
@Test
|
|
fun testFromString() {
|
|
val text = """
|
|
main { }
|
|
"""
|
|
val src = SourceCode.Text(text)
|
|
val actualText = src.getCharStream().toString()
|
|
|
|
src.origin shouldContain Regex("^<String@[0-9a-f\\-]+>$")
|
|
actualText shouldBe text
|
|
src.isFromResources shouldBe false
|
|
src.isFromFilesystem shouldBe false
|
|
src.toString().startsWith("prog8.parser.SourceCode") shouldBe true
|
|
}
|
|
|
|
@Test
|
|
fun testFromPathWithNonExistingPath() {
|
|
val filename = "i_do_not_exist.p8"
|
|
val path = assumeNotExists(fixturesDir, filename)
|
|
shouldThrow<NoSuchFileException> { SourceCode.File(path) }
|
|
}
|
|
|
|
@Test
|
|
fun testFromPathWithMissingExtension_p8() {
|
|
val pathWithoutExt = assumeNotExists(fixturesDir,"simple_main")
|
|
assumeReadableFile(fixturesDir,"simple_main.p8")
|
|
shouldThrow<NoSuchFileException> { SourceCode.File(pathWithoutExt) }
|
|
}
|
|
|
|
@Test
|
|
fun testFromPathWithDirectory() {
|
|
shouldThrow<AccessDeniedException> { SourceCode.File(fixturesDir) }
|
|
}
|
|
|
|
@Test
|
|
fun testFromPathWithExistingPath() {
|
|
val filename = "simple_main.p8"
|
|
val path = assumeReadableFile(fixturesDir, filename)
|
|
val src = SourceCode.File(path)
|
|
val expectedOrigin = SourceCode.relative(path).toString()
|
|
src.origin shouldBe expectedOrigin
|
|
src.readText() shouldBe path.toFile().readText()
|
|
src.isFromResources shouldBe false
|
|
src.isFromFilesystem shouldBe true
|
|
}
|
|
|
|
@Test
|
|
fun testFromPathWithExistingNonNormalizedPath() {
|
|
val filename = "simple_main.p8"
|
|
val path = Path(".", "test", "..", "test", "fixtures", filename)
|
|
val srcFile = assumeReadableFile(path).toFile()
|
|
val src = SourceCode.File(path)
|
|
val expectedOrigin = SourceCode.relative(path).toString()
|
|
src.origin shouldBe expectedOrigin
|
|
src.readText() shouldBe srcFile.readText()
|
|
}
|
|
|
|
@Test
|
|
fun testFromResourcesWithExistingP8File_withoutLeadingSlash() {
|
|
val pathString = "prog8lib/math.p8"
|
|
val srcFile = assumeReadableFile(resourcesDir, pathString).toFile()
|
|
val src = SourceCode.Resource(pathString)
|
|
|
|
src.origin shouldBe "$libraryFilePrefix/$pathString"
|
|
src.readText() shouldBe srcFile.readText()
|
|
src.isFromResources shouldBe true
|
|
src.isFromFilesystem shouldBe false
|
|
}
|
|
|
|
@Test
|
|
fun testFromResourcesWithExistingP8File_withLeadingSlash() {
|
|
val pathString = "/prog8lib/math.p8"
|
|
val srcFile = assumeReadableFile(resourcesDir, pathString.substring(1)).toFile()
|
|
val src = SourceCode.Resource(pathString)
|
|
|
|
src.origin shouldBe "$libraryFilePrefix$pathString"
|
|
src.readText() shouldBe srcFile.readText()
|
|
}
|
|
|
|
@Test
|
|
fun testFromResourcesWithExistingAsmFile_withoutLeadingSlash() {
|
|
val pathString = "prog8lib/math.asm"
|
|
val srcFile = assumeReadableFile(resourcesDir, pathString).toFile()
|
|
val src = SourceCode.Resource(pathString)
|
|
|
|
src.origin shouldBe "$libraryFilePrefix/$pathString"
|
|
src.readText() shouldBe srcFile.readText()
|
|
src.isFromResources shouldBe true
|
|
}
|
|
|
|
@Test
|
|
fun testFromResourcesWithExistingAsmFile_withLeadingSlash() {
|
|
val pathString = "/prog8lib/math.asm"
|
|
val srcFile = assumeReadableFile(resourcesDir, pathString.substring(1)).toFile()
|
|
val src = SourceCode.Resource(pathString)
|
|
|
|
src.origin shouldBe "$libraryFilePrefix$pathString"
|
|
src.readText() shouldBe srcFile.readText()
|
|
}
|
|
|
|
@Test
|
|
fun testFromResourcesWithNonNormalizedPath() {
|
|
val pathString = "/prog8lib/../prog8lib/math.p8"
|
|
val srcFile = assumeReadableFile(resourcesDir, pathString.substring(1)).toFile()
|
|
val src = SourceCode.Resource(pathString)
|
|
|
|
src.origin shouldBe "$libraryFilePrefix/prog8lib/math.p8"
|
|
src.readText() shouldBe srcFile.readText()
|
|
src.isFromResources shouldBe true
|
|
}
|
|
|
|
|
|
@Test
|
|
fun testFromResourcesWithNonExistingFile_withLeadingSlash() {
|
|
val pathString = "/prog8lib/i_do_not_exist"
|
|
assumeNotExists(resourcesDir, pathString.substring(1))
|
|
|
|
shouldThrow<NoSuchFileException> { SourceCode.Resource(pathString) }
|
|
}
|
|
@Test
|
|
fun testFromResourcesWithNonExistingFile_withoutLeadingSlash() {
|
|
val pathString = "prog8lib/i_do_not_exist"
|
|
assumeNotExists(resourcesDir, pathString)
|
|
|
|
shouldThrow<NoSuchFileException> { SourceCode.Resource(pathString) }
|
|
}
|
|
}
|