4c461d7864
Temporarily exclude these tests from kotlin-stdlib-wasm testing due to KT-51647
232 lines
8.8 KiB
Kotlin
232 lines
8.8 KiB
Kotlin
/*
|
|
* Copyright 2010-2022 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.generated.minmax
|
|
|
|
//
|
|
// NOTE: THIS FILE IS AUTO-GENERATED by the MinMaxTestGenerator.kt
|
|
// See: https://github.com/JetBrains/kotlin/tree/master/libraries/stdlib
|
|
//
|
|
|
|
import kotlin.math.pow
|
|
import kotlin.test.*
|
|
import test.*
|
|
|
|
class MinMaxFloatArrayTest {
|
|
|
|
|
|
private fun expectMinMax(min: Float, max: Float, elements: FloatArray) {
|
|
assertEquals(min, elements.minOrNull())
|
|
assertEquals(max, elements.maxOrNull())
|
|
assertEquals(min, elements.min())
|
|
assertEquals(max, elements.max())
|
|
}
|
|
|
|
@Test
|
|
fun minMax() {
|
|
expectMinMax(1.0F, 1.0F, floatArrayOf(1.0F))
|
|
expectMinMax(1.0F, 2.0F, floatArrayOf(1.0F, 2.0F))
|
|
expectMinMax(1.0F, Float.POSITIVE_INFINITY, floatArrayOf(1.0F, 2.0F, Float.POSITIVE_INFINITY))
|
|
|
|
}
|
|
|
|
@Test
|
|
fun minMaxEmpty() {
|
|
val empty = floatArrayOf()
|
|
assertNull(empty.minOrNull())
|
|
assertNull(empty.maxOrNull())
|
|
assertFailsWith<NoSuchElementException> { empty.min() }
|
|
assertFailsWith<NoSuchElementException> { empty.max() }
|
|
}
|
|
|
|
|
|
@Test
|
|
fun minMaxFloat() {
|
|
val zeroes = floatArrayOf(0.0F, -0.0F).apply { shuffle() }
|
|
val NaNs = floatArrayOf(0.0F, Float.NaN).apply { shuffle() }
|
|
|
|
assertIsNegativeZero(zeroes.min().toDouble())
|
|
assertIsNegativeZero(zeroes.minOrNull()!!.toDouble())
|
|
assertTrue(NaNs.min().isNaN())
|
|
assertTrue(NaNs.minOrNull()!!.isNaN())
|
|
|
|
assertIsPositiveZero(zeroes.max().toDouble())
|
|
assertIsPositiveZero(zeroes.maxOrNull()!!.toDouble())
|
|
assertTrue(NaNs.max().isNaN())
|
|
assertTrue(NaNs.maxOrNull()!!.isNaN())
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun expectMinMaxWith(min: Float, max: Float, elements: FloatArray, comparator: Comparator<Float>) {
|
|
assertEquals(min, elements.minWithOrNull(comparator))
|
|
assertEquals(max, elements.maxWithOrNull(comparator))
|
|
assertEquals(min, elements.minWith(comparator))
|
|
assertEquals(max, elements.maxWith(comparator))
|
|
}
|
|
|
|
@Test
|
|
fun minMaxWith() {
|
|
expectMinMaxWith(1.0F, 1.0F, floatArrayOf(1.0F), naturalOrder())
|
|
expectMinMaxWith(1.0F, 2.0F, floatArrayOf(1.0F, 2.0F), naturalOrder())
|
|
expectMinMaxWith(1.0F, Float.POSITIVE_INFINITY, floatArrayOf(1.0F, 2.0F, Float.POSITIVE_INFINITY), naturalOrder())
|
|
|
|
}
|
|
|
|
@Test
|
|
fun minMaxWithEmpty() {
|
|
val empty = floatArrayOf()
|
|
assertNull(empty.minWithOrNull(naturalOrder()))
|
|
assertNull(empty.maxWithOrNull(naturalOrder()))
|
|
assertFailsWith<NoSuchElementException> { empty.minWith(naturalOrder()) }
|
|
assertFailsWith<NoSuchElementException> { empty.maxWith(naturalOrder()) }
|
|
}
|
|
|
|
|
|
private inline fun <K : Comparable<K>> expectMinMaxBy(min: Float, max: Float, elements: FloatArray, selector: (Float) -> K) {
|
|
assertEquals(min, elements.minBy(selector))
|
|
assertEquals(min, elements.minByOrNull(selector))
|
|
assertEquals(max, elements.maxBy(selector))
|
|
assertEquals(max, elements.maxByOrNull(selector))
|
|
}
|
|
|
|
@Test
|
|
fun minMaxBy() {
|
|
expectMinMaxBy(1.0F, 1.0F, floatArrayOf(1.0F), { it })
|
|
expectMinMaxBy(1.0F, 2.0F, floatArrayOf(1.0F, 2.0F), { it })
|
|
expectMinMaxBy(1.0F, Float.POSITIVE_INFINITY, floatArrayOf(1.0F, 2.0F, Float.POSITIVE_INFINITY), { it })
|
|
|
|
}
|
|
|
|
@Test
|
|
fun minMaxByEmpty() {
|
|
val empty = floatArrayOf()
|
|
assertNull(empty.minByOrNull { it.toString() })
|
|
assertNull(empty.maxByOrNull { it.toString() })
|
|
assertFailsWith<NoSuchElementException> { empty.minBy { it.toString() } }
|
|
assertFailsWith<NoSuchElementException> { empty.maxBy { it.toString() } }
|
|
}
|
|
|
|
@Test
|
|
fun minBySelectorEvaluateOnce() {
|
|
val source = floatArrayOf(1.0F, 2.0F, Float.POSITIVE_INFINITY)
|
|
var c = 0
|
|
source.minBy { c++ }
|
|
assertEquals(3, c)
|
|
c = 0
|
|
source.minByOrNull { c++ }
|
|
assertEquals(3, c)
|
|
}
|
|
|
|
@Test
|
|
fun maxBySelectorEvaluateOnce() {
|
|
val source = floatArrayOf(1.0F, 2.0F, Float.POSITIVE_INFINITY)
|
|
var c = 0
|
|
source.maxBy { c++ }
|
|
assertEquals(3, c)
|
|
c = 0
|
|
source.maxByOrNull { c++ }
|
|
assertEquals(3, c)
|
|
}
|
|
|
|
|
|
private inline fun <R : Comparable<R>> expectMinMaxOf(min: R, max: R, elements: FloatArray, selector: (Float) -> R) {
|
|
assertEquals(min, elements.minOf(selector))
|
|
assertEquals(min, elements.minOfOrNull(selector))
|
|
assertEquals(max, elements.maxOf(selector))
|
|
assertEquals(max, elements.maxOfOrNull(selector))
|
|
}
|
|
|
|
@Test
|
|
fun minMaxOf() {
|
|
expectMinMaxOf(-1.0F, -1.0F, floatArrayOf(1.0F), { -it })
|
|
expectMinMaxOf(-2.0F, -1.0F, floatArrayOf(1.0F, 2.0F), { -it })
|
|
expectMinMaxOf(-Float.POSITIVE_INFINITY, -1.0F, floatArrayOf(1.0F, 2.0F, Float.POSITIVE_INFINITY), { -it })
|
|
|
|
}
|
|
|
|
@Test
|
|
fun minMaxOfDouble() {
|
|
val middle = 2.0F
|
|
val items = floatArrayOf(1.0F, 2.0F, Float.POSITIVE_INFINITY).apply { shuffle() }
|
|
assertTrue(items.minOf { it.compareTo(middle).toDouble().pow(0.5) }.isNaN())
|
|
assertTrue(items.minOfOrNull { it.compareTo(middle).toDouble().pow(0.5) }!!.isNaN())
|
|
assertTrue(items.maxOf { it.compareTo(middle).toDouble().pow(0.5) }.isNaN())
|
|
assertTrue(items.maxOfOrNull { it.compareTo(middle).toDouble().pow(0.5) }!!.isNaN())
|
|
|
|
assertIsNegativeZero(items.minOf { it.compareTo(middle) * 0.0 })
|
|
assertIsNegativeZero(items.minOfOrNull { it.compareTo(middle) * 0.0 }!!)
|
|
assertIsPositiveZero(items.maxOf { it.compareTo(middle) * 0.0 })
|
|
assertIsPositiveZero(items.maxOfOrNull { it.compareTo(middle) * 0.0 }!!)
|
|
}
|
|
|
|
@Test
|
|
fun minMaxOfFloat() {
|
|
val middle = 2.0F
|
|
val items = floatArrayOf(1.0F, 2.0F, Float.POSITIVE_INFINITY).apply { shuffle() }
|
|
assertTrue(items.minOf { it.compareTo(middle).toFloat().pow(0.5F) }.isNaN())
|
|
assertTrue(items.minOfOrNull { it.compareTo(middle).toFloat().pow(0.5F) }!!.isNaN())
|
|
assertTrue(items.maxOf { it.compareTo(middle).toFloat().pow(0.5F) }.isNaN())
|
|
assertTrue(items.maxOfOrNull { it.compareTo(middle).toFloat().pow(0.5F) }!!.isNaN())
|
|
|
|
assertIsNegativeZero(items.minOf { it.compareTo(middle) * 0.0F }.toDouble())
|
|
assertIsNegativeZero(items.minOfOrNull { it.compareTo(middle) * 0.0F }!!.toDouble())
|
|
assertIsPositiveZero(items.maxOf { it.compareTo(middle) * 0.0F }.toDouble())
|
|
assertIsPositiveZero(items.maxOfOrNull { it.compareTo(middle) * 0.0F }!!.toDouble())
|
|
}
|
|
|
|
@Test
|
|
fun minMaxOfEmpty() {
|
|
val empty = floatArrayOf()
|
|
|
|
assertNull(empty.minOfOrNull { it.toString() })
|
|
assertNull(empty.maxOfOrNull { it.toString() })
|
|
assertFailsWith<NoSuchElementException> { empty.minOf { it.toString() } }
|
|
assertFailsWith<NoSuchElementException> { empty.maxOf { it.toString() } }
|
|
|
|
|
|
assertNull(empty.minOfOrNull { 0.0 })
|
|
assertNull(empty.maxOfOrNull { 0.0 })
|
|
assertFailsWith<NoSuchElementException> { empty.minOf { 0.0 } }
|
|
assertFailsWith<NoSuchElementException> { empty.maxOf { 0.0 } }
|
|
|
|
|
|
assertNull(empty.minOfOrNull { 0.0F })
|
|
assertNull(empty.maxOfOrNull { 0.0F })
|
|
assertFailsWith<NoSuchElementException> { empty.minOf { 0.0F } }
|
|
assertFailsWith<NoSuchElementException> { empty.maxOf { 0.0F } }
|
|
|
|
|
|
}
|
|
|
|
|
|
private inline fun <R> expectMinMaxOfWith(min: R, max: R, elements: FloatArray, comparator: Comparator<R>, selector: (Float) -> R) {
|
|
assertEquals(min, elements.minOfWith(comparator, selector))
|
|
assertEquals(min, elements.minOfWithOrNull(comparator, selector))
|
|
assertEquals(max, elements.maxOfWith(comparator, selector))
|
|
assertEquals(max, elements.maxOfWithOrNull(comparator, selector))
|
|
}
|
|
|
|
@Test
|
|
fun minMaxOfWith() {
|
|
expectMinMaxOfWith(-1.0F, -1.0F, floatArrayOf(1.0F), reverseOrder(), { -it })
|
|
expectMinMaxOfWith(-1.0F, -2.0F, floatArrayOf(1.0F, 2.0F), reverseOrder(), { -it })
|
|
expectMinMaxOfWith(-1.0F, -Float.POSITIVE_INFINITY, floatArrayOf(1.0F, 2.0F, Float.POSITIVE_INFINITY), reverseOrder(), { -it })
|
|
|
|
}
|
|
|
|
@Test
|
|
fun minMaxOfWithEmpty() {
|
|
val empty = floatArrayOf()
|
|
assertNull(empty.minOfWithOrNull(naturalOrder()) { it.toString() })
|
|
assertNull(empty.maxOfWithOrNull(naturalOrder()) { it.toString() })
|
|
assertFailsWith<NoSuchElementException> { empty.minOfWith(naturalOrder()) { it.toString() } }
|
|
assertFailsWith<NoSuchElementException> { empty.maxOfWith(naturalOrder()) { it.toString() } }
|
|
}
|
|
|
|
}
|