Files
kotlin-fork/libraries/stdlib/jvm/test/testUtilsJVM.kt
T
Abduqodiri Qurbonzoda f8c587ddcf Fix security vulnerability in Path recursive functions #KT-63103
* Prohibit files with name "." or ".."
* Detect cycles caused by files with name "/"
* Prohibit copy outside the target directory

The commit also moves zip-related tests to PathRecursiveFunctionsZipTest.
2024-02-09 17:20:15 +00:00

53 lines
1.7 KiB
Kotlin

/*
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package test
import java.util.*
import kotlin.test.assertEquals
private val isJava8 = System.getProperty("java.version").startsWith("1.8.")
internal fun testOnJvm8(f: () -> Unit) {
if (isJava8) {
f()
}
}
internal fun testOnJvm9AndAbove(f: () -> Unit) {
if (!isJava8) {
f()
}
}
public actual fun assertTypeEquals(expected: Any?, actual: Any?) {
assertEquals(expected?.javaClass, actual?.javaClass)
}
public actual val TestPlatform.Companion.current: TestPlatform get() = TestPlatform.Jvm
@Suppress("HasPlatformType", "UNCHECKED_CAST")
public fun <T> platformNull() = Collections.singletonList(null as T).first()
public actual val isFloat32RangeEnforced: Boolean = true
public actual val supportsOctalLiteralInRegex: Boolean get() = true
public actual val supportsEscapeAnyCharInRegex: Boolean get() = true
public actual val regexSplitUnicodeCodePointHandling: Boolean get() = false
public actual object BackReferenceHandling {
actual val captureLargestValidIndex: Boolean get() = true
actual val notYetDefinedGroup: HandlingOption = HandlingOption.MATCH_NOTHING
actual val notYetDefinedNamedGroup: HandlingOption = HandlingOption.THROW
actual val enclosingGroup: HandlingOption = HandlingOption.MATCH_NOTHING
actual val nonExistentGroup: HandlingOption = HandlingOption.MATCH_NOTHING
actual val nonExistentNamedGroup: HandlingOption = HandlingOption.THROW
actual val groupZero: HandlingOption = HandlingOption.THROW
}