Модульное тестирование в проекте общей библиотеки Spring Boot - PullRequest
0 голосов
/ 29 января 2019

У меня вопрос, как настроить загрузку gradle и spring для запуска модульного тестирования проекта общей библиотеки без применения плагина org.springframework.boot?

У меня есть проект общей библиотеки Spring, созданный с gradle.Проблема в следующем:

  • Я не хочу применять плагин org.springframework.boot в моем проекте, потому что он должен использоваться для приложения весенней загрузки, но для проекта библиотеки.

  • Мне нужно подключить (@Autowired) некоторый компонент в моих тестах.

  • Я попытался настроить файл build.gradle, как показано ниже

buildscript {
    ext {
        springBootVersion = '2.0.4.RELEASE'
        junitPlatformVersion = '1.0.0-M2'
    }
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
        classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}")
        classpath("org.jetbrains.kotlin:kotlin-allopen:${kotlinVersion}")
        classpath("org.jetbrains.kotlin:kotlin-noarg:${kotlinVersion}")
    }
}

apply plugin: 'kotlin'
apply plugin: 'kotlin-spring'
apply plugin: 'eclipse'
//apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'

jar {
    baseName = 'my-common-lib'
    version = '0.0.1-SNAPSHOT'
}

sourceCompatibility = 1.8
compileKotlin {
    kotlinOptions {
        freeCompilerArgs = ["-Xjsr305=strict"]
        jvmTarget = "1.8"
    }
}
compileTestKotlin {
    kotlinOptions {
        freeCompilerArgs = ["-Xjsr305=strict"]
        jvmTarget = "1.8"
    }
}

repositories {
    mavenCentral()
}

test {
    useJUnitPlatform()
}

dependencyManagement {
    imports {
        mavenBom "org.springframework.boot:spring-boot-dependencies:$springBootVersion"
    }
}

dependencies {
    compile('org.springframework.boot:spring-boot-starter-web')
    compile("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
    compile("org.jetbrains.kotlin:kotlin-reflect")

    testCompile('org.springframework.boot:spring-boot-starter-test') {
        exclude module: 'junit'
    }
    testCompile group: 'org.assertj', name: 'assertj-core', version: assertjCoreVersion

    testImplementation('org.junit.jupiter:junit-jupiter-api')
    testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine')
}
  • Мои тесты, как показано ниже:
@ExtendWith(SpringExtension::class)
@SpringBootTest
class MyCommonLibraryTest(@Autowired val myBean: MyBean) {
  @Test
  ...
}
  • Наконец, я получил BeanCreationException брошенный при выполнении теста
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'anotherBean' defined in class path resource [com/pipedbits/spiralg/templateengine/infrastructure/configuration/TemplateConfiguration.class]: Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: Resource not found in classpath: kotlin/coroutines/coroutines.kotlin_builtins

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...