// SPDX-License-Identifier: BSD-3-Clause package org.islandoftex.arara.utils import io.kotlintest.shouldBe import io.kotlintest.specs.ShouldSpec import org.islandoftex.arara.Arara import org.islandoftex.arara.configuration.AraraSpec import org.islandoftex.arara.localization.Language class CommonUtilsTest : ShouldSpec({ should("format bytes correctly") { Arara.config[AraraSpec.Execution.language] = Language("en") mapOf(800 to "800 B", 1000 to "1.0 kB", 1024 to "1.0 kB", 1000000 to "1.0 MB").forEach { (key, value) -> CommonUtils.byteSizeToString(key.toLong()) shouldBe value } } should("find system utils") { CommonUtils.isOnPath("echo") shouldBe true } should("not find utils with fantasy name") { // hopefully no one will have such a command in the path… CommonUtils.isOnPath("echoQuackForArara") shouldBe false } should("flatten lists correctly") { CommonUtils.flatten(listOf(1, 2, listOf(3, 4, listOf(5, 6)))) .toSet() shouldBe (setOf(1, 2, 3, 4, 5, 6) as Set) } })