Как вы подделываете сессию vaadin для интеграционных тестов? - PullRequest
2 голосов
/ 20 мая 2019

Допустим, у меня есть пользовательская аннотация

@ViewScope //<-- the issue
@Qualifier
@Component
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.FIELD,ElementType.PARAMETER,ElementType.METHOD, ElementType.ANNOTATION_TYPE})
public @interface Foo { ... }

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

Как мне подделать vaadinСеанс st такого интеграционного теста

@RunWith(SpringJUnit4ClassRunner::class)
@SpringBootTest
@WebAppConfiguration
class FooAnnotationIT{

    @Autowired(required = false) //required=false --> empty list instead of exception when none are found
    @Foo
    val foos:List<Any> = mutableListOf()

    @Test
    fun `all beans are present`(){
        assertThat(foos.size).isEqualTo(5)
    }
}

завершается успешно вместо сбоя с

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'blah.blah.blah.FooAnnotationIT': Unsatisfied dependency expressed through field 'foos'
    Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'viewCache': Scope 'vaadin-ui' is not active for the current thread; consider defining a scoped proxy for this bean if you intend to refer to it from a singleton
    Caused by: java.lang.IllegalStateException: No VaadinSession bound to current thread

1 Ответ

4 голосов
/ 20 мая 2019

Дайте Karibu Testing выстрел https://github.com/mvysny/karibu-testing/tree/master/karibu-testing-v8

У него есть методы для насмешки сессии Vaadin, он поддерживает V8 и V10 +, и даже поддерживает Kotlin!

...