Polish "Allow custom RSocket WebsocketServerSpecs to be defined"
See gh-29567pull/36604/head
parent
f840141652
commit
b0438b0f03
@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Copyright 2012-2023 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.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.boot.autoconfigure.rsocket;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import reactor.netty.http.server.WebsocketServerSpec;
|
||||
|
||||
import org.springframework.boot.autoconfigure.rsocket.RSocketProperties.Server.Spec;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
/**
|
||||
* Tests for {@link RSocketProperties}.
|
||||
*
|
||||
* @author Stephane Nicoll
|
||||
*/
|
||||
class RSocketPropertiesTests {
|
||||
|
||||
@Test
|
||||
void defaultServerSpecValuesAreConsistent() {
|
||||
WebsocketServerSpec spec = WebsocketServerSpec.builder().build();
|
||||
Spec properties = new RSocketProperties().getServer().getSpec();
|
||||
assertThat(properties.getProtocols()).isEqualTo(spec.protocols());
|
||||
assertThat(properties.getMaxFramePayloadLength().toBytes()).isEqualTo(spec.maxFramePayloadLength());
|
||||
assertThat(properties.isHandlePing()).isEqualTo(spec.handlePing());
|
||||
assertThat(properties.isCompress()).isEqualTo(spec.compress());
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue