aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/test/kotlin/locationProvider/DefaultExternalLocationProviderTest.kt
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2023-11-10 11:46:54 +0100
committerGitHub <noreply@github.com>2023-11-10 11:46:54 +0100
commit8e5c63d035ef44a269b8c43430f43f5c8eebfb63 (patch)
tree1b915207b2b9f61951ddbf0ff2e687efd053d555 /plugins/base/src/test/kotlin/locationProvider/DefaultExternalLocationProviderTest.kt
parenta44efd4ba0c2e4ab921ff75e0f53fc9335aa79db (diff)
downloaddokka-8e5c63d035ef44a269b8c43430f43f5c8eebfb63.tar.gz
dokka-8e5c63d035ef44a269b8c43430f43f5c8eebfb63.tar.bz2
dokka-8e5c63d035ef44a269b8c43430f43f5c8eebfb63.zip
Restructure the project to utilize included builds (#3174)
* Refactor and simplify artifact publishing * Update Gradle to 8.4 * Refactor and simplify convention plugins and build scripts Fixes #3132 --------- Co-authored-by: Adam <897017+aSemy@users.noreply.github.com> Co-authored-by: Oleg Yukhnevich <whyoleg@gmail.com>
Diffstat (limited to 'plugins/base/src/test/kotlin/locationProvider/DefaultExternalLocationProviderTest.kt')
-rw-r--r--plugins/base/src/test/kotlin/locationProvider/DefaultExternalLocationProviderTest.kt78
1 files changed, 0 insertions, 78 deletions
diff --git a/plugins/base/src/test/kotlin/locationProvider/DefaultExternalLocationProviderTest.kt b/plugins/base/src/test/kotlin/locationProvider/DefaultExternalLocationProviderTest.kt
deleted file mode 100644
index c4c3c1e4..00000000
--- a/plugins/base/src/test/kotlin/locationProvider/DefaultExternalLocationProviderTest.kt
+++ /dev/null
@@ -1,78 +0,0 @@
-/*
- * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
- */
-
-package locationProvider
-
-import org.jetbrains.dokka.base.resolvers.external.DefaultExternalLocationProvider
-import org.jetbrains.dokka.base.resolvers.shared.ExternalDocumentation
-import org.jetbrains.dokka.base.resolvers.shared.PackageList
-import org.jetbrains.dokka.base.testApi.testRunner.BaseAbstractTest
-import org.jetbrains.dokka.links.Callable
-import org.jetbrains.dokka.links.DRI
-import org.jetbrains.dokka.links.TypeConstructor
-import org.jetbrains.dokka.plugability.DokkaContext
-import java.net.URL
-import kotlin.test.Test
-import kotlin.test.assertEquals
-
-class DefaultExternalLocationProviderTest : BaseAbstractTest() {
- private val testDataDir =
- getTestDataDir("locationProvider").toAbsolutePath().toString().removePrefix("/").let { "/$it" }
- private val kotlinLang = "https://kotlinlang.org/api/latest/jvm/stdlib"
- private val packageListURL = URL("file://$testDataDir/stdlib-package-list")
- private val configuration = dokkaConfiguration {
- sourceSets {
- sourceSet {
- sourceRoots = listOf("src/")
- classpath += jvmStdlibPath!!
- }
- }
- }
-
- private fun getTestLocationProvider(context: DokkaContext? = null): DefaultExternalLocationProvider {
- val dokkaContext = context ?: DokkaContext.create(configuration, logger, emptyList())
- val packageList = PackageList.load(packageListURL, 8, true)!!
- val externalDocumentation =
- ExternalDocumentation(URL(kotlinLang), packageList)
- return DefaultExternalLocationProvider(externalDocumentation, ".html", dokkaContext)
- }
-
- @Test
- fun `ordinary link`() {
- val locationProvider = getTestLocationProvider()
- val dri = DRI("kotlin.reflect", "KVisibility")
-
- assertEquals("$kotlinLang/kotlin.reflect/-k-visibility/index.html", locationProvider.resolve(dri))
- }
-
- @Test
- fun `relocation in package list`() {
- val locationProvider = getTestLocationProvider()
- val dri = DRI(
- "",
- "",
- Callable(
- "longArray",
- null,
- listOf(
- TypeConstructor("kotlin.Int", emptyList()),
- TypeConstructor("kotlin.Any", emptyList())
- )
- )
- )
-
- assertEquals("$kotlinLang/kotlin-stdlib/[JS root]/long-array.html", locationProvider.resolve(dri))
- }
-
- @Test
- fun `should return null for class not in list`() {
- val locationProvider = getTestLocationProvider()
- val dri = DRI(
- "foo",
- "Bar"
- )
-
- assertEquals(null, locationProvider.resolve(dri))
- }
-}