/* * Copyright 2017-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.uchuhimo.konf.source.base import com.uchuhimo.konf.Config import com.uchuhimo.konf.Feature import com.uchuhimo.konf.source.ConfigForLoad import com.uchuhimo.konf.source.Source import com.uchuhimo.konf.source.SourceLoadBaseSpec import com.uchuhimo.konf.source.toDuration import com.uchuhimo.konf.toSizeInBytes import org.jetbrains.spek.subject.SubjectSpek import org.jetbrains.spek.subject.itBehavesLike import java.math.BigDecimal import java.math.BigInteger import java.time.Instant import java.time.LocalDate import java.time.LocalDateTime import java.time.LocalTime import java.time.OffsetDateTime import java.time.OffsetTime import java.time.Year import java.time.YearMonth import java.time.ZonedDateTime import java.util.Date object MapSourceLoadSpec : SubjectSpek({ subject { Config { addSpec(ConfigForLoad) enable(Feature.FAIL_ON_UNKNOWN_PATH) }.from.map.hierarchical(loadContent) } itBehavesLike(SourceLoadBaseSpec) }) object MapSourceReloadSpec : SubjectSpek({ subject { val config = Config { addSpec(ConfigForLoad) }.from.map.hierarchical(loadContent) Config { addSpec(ConfigForLoad) }.from.map.hierarchical(config.toHierarchicalMap()) } itBehavesLike(SourceLoadBaseSpec) }) object MapSourceFromDefaultProvidersSpec : SubjectSpek({ subject { Config { addSpec(ConfigForLoad) enable(Feature.FAIL_ON_UNKNOWN_PATH) }.withSource(Source.from.map.hierarchical(loadContent)) } itBehavesLike(SourceLoadBaseSpec) }) private val loadContent = mapOf( "level1" to mapOf( "level2" to mapOf( "empty" to "null", "literalEmpty" to "null", "present" to 1, "boolean" to false, "int" to 1, "short" to 2.toShort(), "byte" to 3.toByte(), "bigInteger" to BigInteger.valueOf(4), "long" to 4L, "double" to 1.5, "float" to -1.5f, "bigDecimal" to BigDecimal.valueOf(1.5), "char" to 'a', "string" to "string", "offsetTime" to OffsetTime.parse("10:15:30+01:00"), "offsetDateTime" to OffsetDateTime.parse("2007-12-03T10:15:30+01:00"), "zonedDateTime" to ZonedDateTime.parse("2007-12-03T10:15:30+01:00[Europe/Paris]"), "localDate" to LocalDate.parse("2007-12-03"), "localTime" to LocalTime.parse("10:15:30"), "localDateTime" to LocalDateTime.parse("2007-12-03T10:15:30"), "date" to Date.from(Instant.parse("2007-12-03T10:15:30Z")), "year" to Year.parse("2007"), "yearMonth" to YearMonth.parse("2007-12"), "instant" to Instant.parse("2007-12-03T10:15:30.00Z"), "duration" to "P2DT3H4M".toDuration(), "simpleDuration" to "200millis".toDuration(), "size" to "10k".toSizeInBytes(), "enum" to "LABEL2", "array" to mapOf( "boolean" to listOf(true, false), "byte" to listOf(1, 2, 3), "short" to listOf(1, 2, 3), "int" to listOf(1, 2, 3), "long" to listOf(4L, 5L, 6L), "float" to listOf(-1.0F, 0.0F, 1.0F), "double" to listOf(-1.0, 0.0, 1.0), "char" to listOf('a', 'b', 'c'), "object" to mapOf( "boolean" to listOf(true, false), "int" to listOf(1, 2, 3), "string" to listOf("one", "two", "three"), "enum" to listOf("LABEL1", "LABEL2", "LABEL3") ) ), "list" to listOf(1, 2, 3), "mutableList" to listOf(1, 2, 3), "listOfList" to listOf(listOf(1, 2), listOf(3, 4)), "set" to listOf(1, 2, 1), "sortedSet" to listOf(2, 1, 1, 3), "map" to mapOf( "a" to 1, "b" to 2, "c" to 3 ), "intMap" to mapOf( 1 to "a", 2 to "b", 3 to "c" ), "sortedMap" to mapOf( "c" to 3, "b" to 2, "a" to 1 ), "listOfMap" to listOf( mapOf("a" to 1, "b" to 2), mapOf("a" to 3, "b" to 4) ), "nested" to listOf(listOf(listOf(mapOf("a" to 1)))), "pair" to mapOf("first" to 1, "second" to 2), "clazz" to mapOf( "empty" to "null", "literalEmpty" to "null", "present" to 1, "boolean" to false, "int" to 1, "short" to 2.toShort(), "byte" to 3.toByte(), "bigInteger" to BigInteger.valueOf(4), "long" to 4L, "double" to 1.5, "float" to -1.5f, "bigDecimal" to BigDecimal.valueOf(1.5), "char" to 'a', "string" to "string", "offsetTime" to OffsetTime.parse("10:15:30+01:00"), "offsetDateTime" to OffsetDateTime.parse("2007-12-03T10:15:30+01:00"), "zonedDateTime" to ZonedDateTime.parse("2007-12-03T10:15:30+01:00[Europe/Paris]"), "localDate" to LocalDate.parse("2007-12-03"), "localTime" to LocalTime.parse("10:15:30"), "localDateTime" to LocalDateTime.parse("2007-12-03T10:15:30"), "date" to Date.from(Instant.parse("2007-12-03T10:15:30Z")), "year" to Year.parse("2007"), "yearMonth" to YearMonth.parse("2007-12"), "instant" to Instant.parse("2007-12-03T10:15:30.00Z"), "duration" to "P2DT3H4M".toDuration(), "simpleDuration" to "200millis".toDuration(), "size" to "10k".toSizeInBytes(), "enum" to "LABEL2", "booleanArray" to listOf(true, false), "nested" to listOf(listOf(listOf(mapOf("a" to 1)))) ) ) ) )