All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.org.koin.test.check.CheckModules.kt Maven / Gradle / Ivy

There is a newer version: 3.0.2-khan
Show newest version
/*
 * Copyright 2017-2018 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 org.koin.test.check

import org.koin.core.Koin
import org.koin.core.KoinApplication
import org.koin.core.parameter.parametersOf

/**
 * Check all definition's dependencies - start all modules and check if definitions can run
 */
fun KoinApplication.checkModules(parameters: CheckParameters? = null) = koin.checkModules(parameters)

/**
 * Check all definition's dependencies - start all modules and check if definitions can run
 */
fun Koin.checkModules(parametersDefinition: CheckParameters? = null) {
    val bindings = ParametersBinding()
    bindings.koin = this
    parametersDefinition?.let {
        bindings.parametersDefinition()
    }
    val allParameters = bindings.creators

    checkMainDefinitions(allParameters)

    checkScopedDefinitions(allParameters)

    close()
}

private fun Koin.checkScopedDefinitions(allParameters: MutableMap) {
    scopeRegistry.getScopeSets().forEach { set ->
        val scope = createScope(set.qualifier.toString(), set.qualifier)
        set.definitions.forEach {
            val parameters = allParameters[CheckedComponent(it.qualifier, it.primaryType)]?.invoke(it.qualifier)
                ?: parametersOf()
            scope.get(it.primaryType, it.qualifier) { parameters }
        }
    }
}

private fun Koin.checkMainDefinitions(allParameters: MutableMap) {
    rootScope.beanRegistry.getAllDefinitions().forEach {
        val parameters = allParameters[CheckedComponent(it.qualifier, it.primaryType)]?.invoke(it.qualifier)
            ?: parametersOf()
        get(it.primaryType, it.qualifier) { parameters }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy