mirror of
https://github.com/google/nomulus.git
synced 2025-05-15 00:47:11 +02:00
Make some minor changes to logging messages and test names.
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=205464581
This commit is contained in:
parent
9f83544113
commit
8f5be6e7a8
2 changed files with 2 additions and 3 deletions
|
@ -50,14 +50,13 @@ public class ProxyProtocolHandlerTest {
|
|||
}
|
||||
|
||||
@Test
|
||||
public void testSuccess_proxyHeaderMalformed_singleFrame() {
|
||||
public void testSuccess_proxyHeaderUnknownSource_singleFrame() {
|
||||
header = "PROXY UNKNOWN\r\n";
|
||||
String message = "some message";
|
||||
// Header processed, rest of the message passed along.
|
||||
assertThat(channel.writeInbound(Unpooled.wrappedBuffer((header + message).getBytes(UTF_8))))
|
||||
.isTrue();
|
||||
assertThat(((ByteBuf) channel.readInbound()).toString(UTF_8)).isEqualTo(message);
|
||||
// Header malformed.
|
||||
assertThat(channel.attr(REMOTE_ADDRESS_KEY).get()).isNull();
|
||||
assertThat(channel.pipeline().get(ProxyProtocolHandler.class)).isNull();
|
||||
assertThat(channel.isActive()).isTrue();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue