package prog8tests.helpers import org.junit.jupiter.api.Test import kotlin.test.* import kotlin.io.path.* import prog8.ast.IBuiltinFunctions import prog8.ast.IMemSizer import prog8.ast.IStringEncoding import prog8.ast.base.DataType import prog8.ast.base.Position import prog8.ast.expressions.Expression import prog8.ast.expressions.InferredTypes import prog8.ast.expressions.NumericLiteralValue import java.nio.file.Path val workingDir = Path("").absolute() // Note: Path(".") does NOT work..! val fixturesDir = workingDir.resolve("test/fixtures") val resourcesDir = workingDir.resolve("res") val outputDir = workingDir.resolve("build/tmp/test") inline fun assumeReadable(path: Path) { assertTrue(path.isReadable(), "sanity check: should be readable: ${path.absolute()}") } inline fun assumeReadableFile(path: Path) { assertTrue(path.isRegularFile(), "sanity check: should be normal file: ${path.absolute()}") } inline fun assumeDirectory(path: Path) { assertTrue(path.isDirectory(), "sanity check; should be directory: $path") } inline fun assumeNotExists(path: Path) { assertFalse(path.exists(), "sanity check: should not exist: ${path.absolute()}") } inline fun sanityCheckDirectories(workingDirName: String? = null) { if (workingDirName != null) assertEquals(workingDirName, workingDir.fileName.toString(), "name of current working dir") assumeDirectory(workingDir) assumeDirectory(fixturesDir) assumeDirectory(resourcesDir) assumeDirectory(outputDir) } val DummyEncoding = object : IStringEncoding { override fun encodeString(str: String, altEncoding: Boolean): List { TODO("Not yet implemented") } override fun decodeString(bytes: List, altEncoding: Boolean): String { TODO("Not yet implemented") } } val DummyFunctions = object : IBuiltinFunctions { override val names: Set = emptySet() override val purefunctionNames: Set = emptySet() override fun constValue( name: String, args: List, position: Position, memsizer: IMemSizer ): NumericLiteralValue? = null override fun returnType(name: String, args: MutableList) = InferredTypes.InferredType.unknown() } val DummyMemsizer = object : IMemSizer { override fun memorySize(dt: DataType): Int = 0 }