Вложенные тесты с JUnit 5 и Spring Boot 2.0.0 - PullRequest
0 голосов
/ 14 сентября 2018

Я пытаюсь написать несколько вложенных интеграционных тестов для приложения, которое я создаю.

Тесты строятся друг на друге и должны проверять, работает ли весь рабочий процесс должным образом.

Я попытался сделать это следующим образом:

@RunWith(SpringRunner.class)
@SpringBootTest
@ExtendWith(SpringExtension.class)
public class XMLTest {

    @BeforeAll
    public void setUp() {

        // Initialize some things
    }

    @Nested
    @DisplayName("testA")
    class testA {

        @Test
        public void testGettingSomething() {
            ... test something ...
        }

        @Nested
        @DisplayName("testB")
        class testB {

            @Test
            public void testSomethingElse() {
                ... test something else ...
            }
        }
    }
}

Но я всегда получаю ошибку

java.lang.Exception: No runnable methods at 
org.springframework.test.context.junit4.SpringJUnit4ClassRunner.<init>

Мне кажется, я прочитал, что аннотация @Nested взята из JUnit 5,в то время как кажется, что Spring хочет использовать JUnit 4 runner.Может ли это быть ошибкой?И если так, как я могу сказать Spring использовать JUnit 5 runner?

EDIT 1 Я удалил аннотацию RunWith(...), и это исправило эту ошибку, но теперь я получил другую:

Tests not found

Это кажется странной ошибкой, поскольку Mureinik указывает, что бегуны - это концепция JUnit 4. Или ячто-то здесь смущает?

РЕДАКТИРОВАТЬ 2

Вот список зависимостей:

[INFO] The following files have been resolved:
[INFO]    com.vaadin:vaadin-spring-boot-starter:jar:3.0.0:compile
[INFO]    com.vaadin:vaadin-spring-boot:jar:3.0.0:compile
[INFO]    com.vaadin:vaadin-spring:jar:3.0.0:compile
[INFO]    com.vaadin:vaadin-server:jar:8.3.1:compile
[INFO]    com.vaadin:vaadin-sass-compiler:jar:0.9.13:compile
[INFO]    org.w3c.css:sac:jar:1.3:compile
[INFO]    com.vaadin.external.flute:flute:jar:1.3.0.gg2:compile
[INFO]    com.vaadin:vaadin-shared:jar:8.3.1:compile
[INFO]    org.jsoup:jsoup:jar:1.11.2:compile
[INFO]    com.vaadin.external:gentyref:jar:1.2.0.vaadin1:compile
[INFO]    org.springframework:spring-webmvc:jar:5.0.4.RELEASE:compile
[INFO]    org.springframework.boot:spring-boot-starter-web:jar:2.0.0.RELEASE:compile
[INFO]    org.springframework.boot:spring-boot-starter-json:jar:2.0.0.RELEASE:compile
[INFO]    com.fasterxml.jackson.core:jackson-databind:jar:2.9.4:compile
[INFO]    com.fasterxml.jackson.core:jackson-annotations:jar:2.9.0:compile
[INFO]    com.fasterxml.jackson.core:jackson-core:jar:2.9.4:compile
[INFO]    com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.9.4:compile
[INFO]    com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.9.4:compile
[INFO]    com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.9.4:compile
[INFO]    org.springframework.boot:spring-boot-starter-tomcat:jar:2.0.0.RELEASE:compile
[INFO]    org.apache.tomcat.embed:tomcat-embed-core:jar:8.5.28:compile
[INFO]    org.apache.tomcat.embed:tomcat-embed-el:jar:8.5.28:compile
[INFO]    org.apache.tomcat.embed:tomcat-embed-websocket:jar:8.5.28:compile
[INFO]    org.hibernate.validator:hibernate-validator:jar:6.0.7.Final:compile
[INFO]    javax.validation:validation-api:jar:2.0.1.Final:compile
[INFO]    org.springframework:spring-web:jar:5.0.4.RELEASE:compile
[INFO]    com.vaadin:vaadin-themes:jar:8.3.1:compile
[INFO]    com.vaadin:vaadin-client-compiled:jar:8.3.1:compile
[INFO]    org.springframework.boot:spring-boot-starter-test:jar:2.0.0.RELEASE:test
[INFO]    org.springframework.boot:spring-boot-starter:jar:2.0.0.RELEASE:compile
[INFO]    org.springframework.boot:spring-boot-starter-logging:jar:2.0.0.RELEASE:compile
[INFO]    ch.qos.logback:logback-classic:jar:1.2.3:compile
[INFO]    ch.qos.logback:logback-core:jar:1.2.3:compile
[INFO]    org.apache.logging.log4j:log4j-to-slf4j:jar:2.10.0:compile
[INFO]    org.apache.logging.log4j:log4j-api:jar:2.10.0:compile
[INFO]    org.slf4j:jul-to-slf4j:jar:1.7.25:compile
[INFO]    javax.annotation:javax.annotation-api:jar:1.3.2:compile
[INFO]    org.yaml:snakeyaml:jar:1.19:runtime
[INFO]    org.springframework.boot:spring-boot-test:jar:2.0.0.RELEASE:test
[INFO]    org.springframework.boot:spring-boot-test-autoconfigure:jar:2.0.0.RELEASE:test
[INFO]    com.jayway.jsonpath:json-path:jar:2.4.0:test
[INFO]    net.minidev:json-smart:jar:2.3:test
[INFO]    net.minidev:accessors-smart:jar:1.2:test
[INFO]    org.ow2.asm:asm:jar:5.0.4:test
[INFO]    org.slf4j:slf4j-api:jar:1.7.25:compile
[INFO]    junit:junit:jar:4.12:test
[INFO]    org.assertj:assertj-core:jar:3.9.1:test
[INFO]    org.mockito:mockito-core:jar:2.15.0:test
[INFO]    net.bytebuddy:byte-buddy:jar:1.7.10:compile
[INFO]    net.bytebuddy:byte-buddy-agent:jar:1.7.10:test
[INFO]    org.objenesis:objenesis:jar:2.6:test
[INFO]    org.hamcrest:hamcrest-core:jar:1.3:compile
[INFO]    org.hamcrest:hamcrest-library:jar:1.3:test
[INFO]    org.skyscreamer:jsonassert:jar:1.5.0:test
[INFO]    com.vaadin.external.google:android-json:jar:0.0.20131108.vaadin1:test
[INFO]    org.springframework:spring-core:jar:5.0.4.RELEASE:compile
[INFO]    org.springframework:spring-jcl:jar:5.0.4.RELEASE:compile
[INFO]    org.springframework:spring-test:jar:5.0.4.RELEASE:test
[INFO]    org.springframework.boot:spring-boot-starter-data-jpa:jar:2.0.0.RELEASE:compile
[INFO]    org.springframework.boot:spring-boot-starter-aop:jar:2.0.0.RELEASE:compile
[INFO]    org.springframework:spring-aop:jar:5.0.4.RELEASE:compile
[INFO]    org.aspectj:aspectjweaver:jar:1.8.13:compile
[INFO]    org.springframework.boot:spring-boot-starter-jdbc:jar:2.0.0.RELEASE:compile
[INFO]    com.zaxxer:HikariCP:jar:2.7.8:compile
[INFO]    org.springframework:spring-jdbc:jar:5.0.4.RELEASE:compile
[INFO]    org.hibernate:hibernate-core:jar:5.2.14.Final:compile
[INFO]    org.jboss.logging:jboss-logging:jar:3.3.2.Final:compile
[INFO]    org.hibernate.javax.persistence:hibernate-jpa-2.1-api:jar:1.0.0.Final:compile
[INFO]    org.javassist:javassist:jar:3.22.0-GA:compile
[INFO]    antlr:antlr:jar:2.7.7:compile
[INFO]    org.jboss:jandex:jar:2.0.3.Final:compile
[INFO]    com.fasterxml:classmate:jar:1.3.4:compile
[INFO]    dom4j:dom4j:jar:1.6.1:compile
[INFO]    org.hibernate.common:hibernate-commons-annotations:jar:5.0.1.Final:compile
[INFO]    javax.transaction:javax.transaction-api:jar:1.2:compile
[INFO]    org.springframework.data:spring-data-jpa:jar:2.0.5.RELEASE:compile
[INFO]    org.springframework.data:spring-data-commons:jar:2.0.5.RELEASE:compile
[INFO]    org.springframework:spring-orm:jar:5.0.4.RELEASE:compile
[INFO]    org.springframework:spring-context:jar:5.0.4.RELEASE:compile
[INFO]    org.springframework:spring-tx:jar:5.0.4.RELEASE:compile
[INFO]    org.springframework:spring-beans:jar:5.0.4.RELEASE:compile
[INFO]    org.springframework:spring-aspects:jar:5.0.4.RELEASE:compile
[INFO]    org.springframework.boot:spring-boot-devtools:jar:2.0.0.RELEASE:runtime
[INFO]    org.springframework.boot:spring-boot:jar:2.0.0.RELEASE:compile
[INFO]    org.springframework.boot:spring-boot-autoconfigure:jar:2.0.0.RELEASE:compile
[INFO]    com.h2database:h2:jar:1.4.196:runtime
[INFO]    com.jysk.dbl:common:jar:1.0.0:compile
[INFO]    org.vaadin.spring.addons:vaadin-spring-addon-eventbus:jar:2.0.0.RELEASE:compile
[INFO]    com.jysk.dbl:common-security:jar:1.0.0:compile
[INFO]    org.springframework.security:spring-security-ldap:jar:5.0.3.RELEASE:compile
[INFO]    org.springframework.security:spring-security-core:jar:5.0.3.RELEASE:compile
[INFO]    org.springframework.ldap:spring-ldap-core:jar:2.3.2.RELEASE:compile
[INFO]    org.springframework.boot:spring-boot-starter-security:jar:2.0.0.RELEASE:compile
[INFO]    org.springframework.security:spring-security-config:jar:5.0.3.RELEASE:compile
[INFO]    org.springframework.security:spring-security-web:jar:5.0.3.RELEASE:compile
[INFO]    org.apache.commons:commons-lang3:jar:3.7:compile
[INFO]    org.vaadin.spring.extensions:vaadin-spring-ext-core:jar:2.0.0.RELEASE:compile
[INFO]    org.vaadin.spring.extensions:vaadin-spring-ext-boot:jar:2.0.0.RELEASE:compile
[INFO]    org.vaadin.spring.extensions:vaadin-spring-ext-security:jar:2.0.0.RELEASE:compile
[INFO]    org.springframework:spring-expression:jar:5.0.4.RELEASE:compile
[INFO]    com.jysk.dbl:common-selenium:jar:1.0.0:compile
[INFO]    org.seleniumhq.selenium:selenium-java:jar:3.9.1:compile
[INFO]    org.seleniumhq.selenium:selenium-api:jar:3.9.1:compile
[INFO]    org.seleniumhq.selenium:selenium-chrome-driver:jar:3.9.1:compile
[INFO]    org.seleniumhq.selenium:selenium-edge-driver:jar:3.9.1:compile
[INFO]    org.seleniumhq.selenium:selenium-firefox-driver:jar:3.9.1:compile
[INFO]    org.seleniumhq.selenium:selenium-ie-driver:jar:3.9.1:compile
[INFO]    org.seleniumhq.selenium:selenium-opera-driver:jar:3.9.1:compile
[INFO]    org.seleniumhq.selenium:selenium-remote-driver:jar:3.9.1:compile
[INFO]    org.seleniumhq.selenium:selenium-safari-driver:jar:3.9.1:compile
[INFO]    org.seleniumhq.selenium:selenium-support:jar:3.9.1:compile
[INFO]    org.apache.commons:commons-exec:jar:1.3:compile
[INFO]    com.google.code.gson:gson:jar:2.8.2:compile
[INFO]    com.google.guava:guava:jar:23.6-jre:compile
[INFO]    com.google.code.findbugs:jsr305:jar:1.3.9:compile
[INFO]    org.checkerframework:checker-compat-qual:jar:2.0.0:compile
[INFO]    com.google.errorprone:error_prone_annotations:jar:2.1.3:compile
[INFO]    com.google.j2objc:j2objc-annotations:jar:1.1:compile
[INFO]    org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile
[INFO]    com.squareup.okhttp3:okhttp:jar:3.9.1:compile
[INFO]    com.squareup.okio:okio:jar:1.13.0:compile
[INFO]    org.apache.commons:commons-configuration2:jar:2.2:compile
[INFO]    commons-logging:commons-logging:jar:1.2:compile
[INFO]    net.sf.saxon:Saxon-HE:jar:9.8.0-11:compile
[INFO]    mysql:mysql-connector-java:jar:5.1.45:compile
[INFO]    org.apache.httpcomponents:httpmime:jar:4.5.5:compile
[INFO]    org.apache.httpcomponents:httpclient:jar:4.5.5:compile
[INFO]    org.apache.httpcomponents:httpcore:jar:4.4.9:compile
[INFO]    commons-codec:commons-codec:jar:1.11:compile
[INFO]    org.samba.jcifs:jcifs:jar:1.3.14-kohsuke-1:compile
[INFO]    javax.activation:activation:jar:1.1.1:compile
[INFO]    javax.mail:mail:jar:1.4.7:compile
[INFO]    org.xmlunit:xmlunit-core:jar:2.5.1:compile
[INFO]    org.xmlunit:xmlunit-matchers:jar:2.5.1:compile
[INFO]    org.junit.jupiter:junit-jupiter-api:jar:5.1.0:test
[INFO]    org.apiguardian:apiguardian-api:jar:1.0.0:test
[INFO]    org.opentest4j:opentest4j:jar:1.0.0:test
[INFO]    org.junit.platform:junit-platform-commons:jar:1.1.0:test
[INFO]    org.junit.platform:junit-platform-launcher:jar:1.3.1:test
[INFO]    org.junit.platform:junit-platform-engine:jar:1.3.1:test
[INFO]    org.junit.jupiter:junit-jupiter-engine:jar:5.1.0:test

Соответствующие должны быть внизу.

Ответы [ 2 ]

0 голосов
/ 18 сентября 2018

У вас есть несовместимые версии артефактов JUnit в пути к классам.

[INFO]    org.junit.platform:junit-platform-commons:jar:1.1.0:test
[INFO]    org.junit.platform:junit-platform-launcher:jar:1.3.1:test
[INFO]    org.junit.platform:junit-platform-engine:jar:1.3.1:test
[INFO]    org.junit.jupiter:junit-jupiter-engine:jar:5.1.0:test

Вы должны убедиться, что вы используете Jupiter 5.3.1 и Платформу 1.3.1 последовательно для всех ваших артефактов JUnit 5.

0 голосов
/ 14 сентября 2018

Аннотация @RunWith и концепция бегунов взяты из JUnit 4. Просто потеряйте эту линию (но сохраняйте линию @ExtendWith(SpringExtension.class)!), И все будет в порядке.

...