diff options
author | Robert Jaros <rjaros@finn.pl> | 2020-02-02 01:08:23 +0100 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2020-02-02 01:08:23 +0100 |
commit | 4591cd9da289356e40eb811efdfadfc65665c24d (patch) | |
tree | 68b790d3b327652ee240b3d913578d8df588d157 | |
parent | 6066afa3b9c950021253e74e966b1763c2883163 (diff) | |
download | kvision-4591cd9da289356e40eb811efdfadfc65665c24d.tar.gz kvision-4591cd9da289356e40eb811efdfadfc65665c24d.tar.bz2 kvision-4591cd9da289356e40eb811efdfadfc65665c24d.zip |
Unit tests for Bold and FieldsetPanel components.
-rw-r--r-- | src/test/kotlin/test/pl/treksoft/kvision/html/BoldSpec.kt | 43 | ||||
-rw-r--r-- | src/test/kotlin/test/pl/treksoft/kvision/panel/FieldsetPanelSpec.kt | 49 |
2 files changed, 92 insertions, 0 deletions
diff --git a/src/test/kotlin/test/pl/treksoft/kvision/html/BoldSpec.kt b/src/test/kotlin/test/pl/treksoft/kvision/html/BoldSpec.kt new file mode 100644 index 00000000..f37d68d5 --- /dev/null +++ b/src/test/kotlin/test/pl/treksoft/kvision/html/BoldSpec.kt @@ -0,0 +1,43 @@ +/* + * Copyright (c) 2017-present Robert Jaros + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ +package test.pl.treksoft.kvision.html + +import pl.treksoft.kvision.html.Bold +import pl.treksoft.kvision.panel.Root +import test.pl.treksoft.kvision.DomSpec +import kotlin.browser.document +import kotlin.test.Test + +class BoldSpec : DomSpec { + + @Test + fun render() { + run { + val root = Root("test", fixed = true) + val bold = Bold("Bold text") + root.add(bold) + val element = document.getElementById("test") + assertEqualsHtml("<b>Bold text</b>", element?.innerHTML, "Should render correct b") + } + } + +} diff --git a/src/test/kotlin/test/pl/treksoft/kvision/panel/FieldsetPanelSpec.kt b/src/test/kotlin/test/pl/treksoft/kvision/panel/FieldsetPanelSpec.kt new file mode 100644 index 00000000..4e802add --- /dev/null +++ b/src/test/kotlin/test/pl/treksoft/kvision/panel/FieldsetPanelSpec.kt @@ -0,0 +1,49 @@ +/* + * Copyright (c) 2017-present Robert Jaros + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ +package test.pl.treksoft.kvision.panel + +import pl.treksoft.kvision.html.div +import pl.treksoft.kvision.panel.FieldsetPanel +import pl.treksoft.kvision.panel.Root +import test.pl.treksoft.kvision.DomSpec +import kotlin.browser.document +import kotlin.test.Test + +class FieldsetPanelSpec : DomSpec { + + @Test + fun render() { + run { + val root = Root("test", fixed = true) + val fieldSet = FieldsetPanel("Legend") { + div("Lorem ipsum") + } + root.add(fieldSet) + val element = document.getElementById("test") + assertEqualsHtml( + "<fieldset class=\"kv_fieldset\"><legend>Legend</legend><div>Lorem ipsum</div></fieldset>", + element?.innerHTML, + "Should render correct fieldset panel" + ) + } + } +}
\ No newline at end of file |