diff --git a/spring-boot-test/src/main/java/org/springframework/boot/test/context/ImportsContextCustomizer.java b/spring-boot-test/src/main/java/org/springframework/boot/test/context/ImportsContextCustomizer.java index 17eea896f9..5621874105 100644 --- a/spring-boot-test/src/main/java/org/springframework/boot/test/context/ImportsContextCustomizer.java +++ b/spring-boot-test/src/main/java/org/springframework/boot/test/context/ImportsContextCustomizer.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2016 the original author or authors. + * Copyright 2012-2017 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. @@ -324,8 +324,8 @@ class ImportsContextCustomizer implements ContextCustomizer { @Override public boolean isIgnored(Annotation annotation) { - return annotation.annotationType().getName() - .startsWith("org.spockframework."); + return annotation.annotationType().getName().startsWith("org.spockframework.") + || annotation.annotationType().getName().startsWith("spock."); } } diff --git a/spring-boot-test/src/test/java/org/springframework/boot/test/context/ImportsContextCustomizerTests.java b/spring-boot-test/src/test/java/org/springframework/boot/test/context/ImportsContextCustomizerTests.java index aeec7702f6..a023500b5e 100644 --- a/spring-boot-test/src/test/java/org/springframework/boot/test/context/ImportsContextCustomizerTests.java +++ b/spring-boot-test/src/test/java/org/springframework/boot/test/context/ImportsContextCustomizerTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2016 the original author or authors. + * Copyright 2012-2017 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. @@ -19,6 +19,8 @@ package org.springframework.boot.test.context; import kotlin.Metadata; import org.junit.Test; import org.spockframework.runtime.model.SpecMetadata; +import spock.lang.Issue; +import spock.lang.Stepwise; import static org.assertj.core.api.Assertions.assertThat; @@ -37,10 +39,18 @@ public class ImportsContextCustomizerTests { } @Test - public void customizersForTestClassesWithDifferentSpockMetadataAreEqual() { - assertThat(new ImportsContextCustomizer(FirstSpockAnnotatedTestClass.class)) + public void customizersForTestClassesWithDifferentSpockFrameworkAnnotationsAreEqual() { + assertThat( + new ImportsContextCustomizer(FirstSpockFrameworkAnnotatedTestClass.class)) + .isEqualTo(new ImportsContextCustomizer( + SecondSpockFrameworkAnnotatedTestClass.class)); + } + + @Test + public void customizersForTestClassesWithDifferentSpockLangAnnotationsAreEqual() { + assertThat(new ImportsContextCustomizer(FirstSpockLangAnnotatedTestClass.class)) .isEqualTo(new ImportsContextCustomizer( - SecondSpockAnnotatedTestClass.class)); + SecondSpockLangAnnotatedTestClass.class)); } @Metadata(d2 = "foo") @@ -54,12 +64,22 @@ public class ImportsContextCustomizerTests { } @SpecMetadata(filename = "foo", line = 10) - static class FirstSpockAnnotatedTestClass { + static class FirstSpockFrameworkAnnotatedTestClass { } @SpecMetadata(filename = "bar", line = 10) - static class SecondSpockAnnotatedTestClass { + static class SecondSpockFrameworkAnnotatedTestClass { + + } + + @Stepwise + static class FirstSpockLangAnnotatedTestClass { + + } + + @Issue("1234") + static class SecondSpockLangAnnotatedTestClass { }