|
|
@ -1,5 +1,5 @@
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
* Copyright 2012-2019 the original author or authors.
|
|
|
|
* Copyright 2012-2021 the original author or authors.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
@ -16,14 +16,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
package org.springframework.boot.autoconfigure.rsocket;
|
|
|
|
package org.springframework.boot.autoconfigure.rsocket;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import org.assertj.core.api.InstanceOfAssertFactories;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
|
|
|
|
|
|
|
|
import org.springframework.boot.autoconfigure.AutoConfigurations;
|
|
|
|
import org.springframework.boot.autoconfigure.AutoConfigurations;
|
|
|
|
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
|
|
|
|
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
|
|
|
|
import org.springframework.messaging.rsocket.RSocketConnectorConfigurer;
|
|
|
|
import org.springframework.messaging.rsocket.RSocketRequester;
|
|
|
|
import org.springframework.messaging.rsocket.RSocketRequester;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import static org.assertj.core.api.Assertions.as;
|
|
|
|
import static org.assertj.core.api.Assertions.assertThat;
|
|
|
|
import static org.assertj.core.api.Assertions.assertThat;
|
|
|
|
import static org.mockito.Mockito.mock;
|
|
|
|
import static org.mockito.Mockito.mock;
|
|
|
|
|
|
|
|
|
|
|
@ -31,6 +34,7 @@ import static org.mockito.Mockito.mock;
|
|
|
|
* Tests for {@link RSocketRequesterAutoConfiguration}
|
|
|
|
* Tests for {@link RSocketRequesterAutoConfiguration}
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @author Brian Clozel
|
|
|
|
* @author Brian Clozel
|
|
|
|
|
|
|
|
* @author Nguyen Bao Sach
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
class RSocketRequesterAutoConfigurationTests {
|
|
|
|
class RSocketRequesterAutoConfigurationTests {
|
|
|
|
|
|
|
|
|
|
|
@ -59,6 +63,19 @@ class RSocketRequesterAutoConfigurationTests {
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
|
|
|
void shouldCreateBuilderWithAvailableRSocketConnectorConfigurers() {
|
|
|
|
|
|
|
|
RSocketConnectorConfigurer first = mock(RSocketConnectorConfigurer.class);
|
|
|
|
|
|
|
|
RSocketConnectorConfigurer second = mock(RSocketConnectorConfigurer.class);
|
|
|
|
|
|
|
|
this.contextRunner.withBean("first", RSocketConnectorConfigurer.class, () -> first)
|
|
|
|
|
|
|
|
.withBean("second", RSocketConnectorConfigurer.class, () -> second).run((context) -> {
|
|
|
|
|
|
|
|
assertThat(context).getBeans(RSocketConnectorConfigurer.class).hasSize(2);
|
|
|
|
|
|
|
|
RSocketRequester.Builder builder = context.getBean(RSocketRequester.Builder.class);
|
|
|
|
|
|
|
|
assertThat(builder).extracting("rsocketConnectorConfigurers", as(InstanceOfAssertFactories.LIST))
|
|
|
|
|
|
|
|
.containsExactly(first, second);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Configuration(proxyBeanMethods = false)
|
|
|
|
@Configuration(proxyBeanMethods = false)
|
|
|
|
static class CustomRSocketRequesterBuilder {
|
|
|
|
static class CustomRSocketRequesterBuilder {
|
|
|
|
|
|
|
|
|
|
|
|