mirror of
https://github.com/google/nomulus.git
synced 2025-05-03 13:37:51 +02:00
Dagger updated to 2.13, along with all its dependencies. Also allows us to have multiple config files for different environment (prod, sandbox, alpha, local, etc) and specify which one to use on the command line with a --env flag. Therefore the same binary can be used in all environments. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=176551289
88 lines
3.5 KiB
Java
88 lines
3.5 KiB
Java
// Copyright 2017 The Nomulus Authors. All Rights Reserved.
|
|
//
|
|
// 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
|
|
//
|
|
// http://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 google.registry.proxy;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
import static java.nio.charset.StandardCharsets.US_ASCII;
|
|
|
|
import io.netty.buffer.ByteBuf;
|
|
import io.netty.buffer.Unpooled;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.JUnit4;
|
|
|
|
/** End-to-end tests for {@link HealthCheckProtocolModule}. */
|
|
@RunWith(JUnit4.class)
|
|
public class HealthCheckProtocolModuleTest extends ProtocolModuleTest {
|
|
|
|
public HealthCheckProtocolModuleTest() {
|
|
super(TestComponent::healthCheckHandlers);
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_expectedInboundMessage() {
|
|
// no inbound message passed along.
|
|
assertThat(
|
|
channel.writeInbound(
|
|
Unpooled.wrappedBuffer(PROXY_CONFIG.healthCheck.checkRequest.getBytes(US_ASCII))))
|
|
.isFalse();
|
|
ByteBuf outputBuffer = channel.readOutbound();
|
|
// response written to channel.
|
|
assertThat(outputBuffer.toString(US_ASCII)).isEqualTo(PROXY_CONFIG.healthCheck.checkResponse);
|
|
assertThat(channel.isActive()).isTrue();
|
|
// nothing more to write.
|
|
assertThat((Object) channel.readOutbound()).isNull();
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_InboundMessageTooShort() {
|
|
String shortRequest = "HEALTH_CHECK";
|
|
// no inbound message passed along.
|
|
assertThat(channel.writeInbound(Unpooled.wrappedBuffer(shortRequest.getBytes(US_ASCII))))
|
|
.isFalse();
|
|
// nothing to write.
|
|
assertThat(channel.isActive()).isTrue();
|
|
assertThat((Object) channel.readOutbound()).isNull();
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_InboundMessageTooLong() {
|
|
String longRequest = "HEALTH_CHECK_REQUEST HELLO";
|
|
// no inbound message passed along.
|
|
assertThat(channel.writeInbound(Unpooled.wrappedBuffer(longRequest.getBytes(US_ASCII))))
|
|
.isFalse();
|
|
ByteBuf outputBuffer = channel.readOutbound();
|
|
// The fixed length frame decoder will decode the first inbound message as "HEALTH_CHECK_
|
|
// REQUEST", which is what this handler expects. So it will respond with the pre-defined
|
|
// response message. This is an acceptable false-positive because the GCP health checker will
|
|
// only send the pre-defined request message. As long as the health check can receive the
|
|
// request it expects, we do not care if the protocol also respond to other requests.
|
|
assertThat(outputBuffer.toString(US_ASCII)).isEqualTo(PROXY_CONFIG.healthCheck.checkResponse);
|
|
assertThat(channel.isActive()).isTrue();
|
|
// nothing more to write.
|
|
assertThat((Object) channel.readOutbound()).isNull();
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_InboundMessageNotMatch() {
|
|
String invalidRequest = "HEALTH_CHECK_REQUESX";
|
|
// no inbound message passed along.
|
|
assertThat(channel.writeInbound(Unpooled.wrappedBuffer(invalidRequest.getBytes(US_ASCII))))
|
|
.isFalse();
|
|
// nothing to write.
|
|
assertThat(channel.isActive()).isTrue();
|
|
assertThat((Object) channel.readOutbound()).isNull();
|
|
}
|
|
}
|