blob: e4b936807ef05349d8707da70c78ff9ba9d66c36 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.servicecomb.common.accessLog.core.element.impl;
import static org.mockito.Mockito.when;
import java.util.HashMap;
import java.util.Map;
import org.apache.servicecomb.common.rest.RestConst;
import org.apache.servicecomb.common.rest.codec.param.RestClientRequestImpl;
import org.apache.servicecomb.core.Invocation;
import org.apache.servicecomb.core.event.InvocationFinishEvent;
import org.apache.servicecomb.core.event.ServerAccessLogEvent;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.mockito.Mockito;
import io.vertx.core.http.HttpClientRequest;
import io.vertx.core.http.HttpConnection;
import io.vertx.core.http.HttpServerRequest;
import io.vertx.core.net.SocketAddress;
import io.vertx.ext.web.RoutingContext;
public class LocalHostItemTest {
public static final LocalHostAccessItem ELEMENT = new LocalHostAccessItem();
private StringBuilder strBuilder;
private InvocationFinishEvent finishEvent;
private ServerAccessLogEvent accessLogEvent;
private RoutingContext routingContext;
private HttpServerRequest serverRequest;
private SocketAddress socketAddress;
private Invocation invocation;
private RestClientRequestImpl restClientRequest;
private HttpClientRequest clientRequest;
private HttpConnection connection;
@BeforeEach
public void initStrBuilder() {
accessLogEvent = new ServerAccessLogEvent();
routingContext = Mockito.mock(RoutingContext.class);
finishEvent = Mockito.mock(InvocationFinishEvent.class);
serverRequest = Mockito.mock(HttpServerRequest.class);
socketAddress = Mockito.mock(SocketAddress.class);
invocation = Mockito.mock(Invocation.class);
restClientRequest = Mockito.mock(RestClientRequestImpl.class);
clientRequest = Mockito.mock(HttpClientRequest.class);
connection = Mockito.mock(HttpConnection.class);
Map<String, Object> handlerMap = new HashMap<>();
handlerMap.put(RestConst.INVOCATION_HANDLER_REQUESTCLIENT, restClientRequest);
when(finishEvent.getInvocation()).thenReturn(invocation);
when(invocation.getHandlerContext()).thenReturn(handlerMap);
accessLogEvent.setRoutingContext(routingContext);
strBuilder = new StringBuilder();
}
@Test
public void clientFormattedItem() {
String localAddress = "192.168.0.1";
when(restClientRequest.getRequest()).thenReturn(clientRequest);
when(clientRequest.connection()).thenReturn(connection);
when(connection.localAddress()).thenReturn(socketAddress);
when(socketAddress.host()).thenReturn(localAddress);
ELEMENT.appendClientFormattedItem(finishEvent, strBuilder);
Assertions.assertEquals(localAddress, strBuilder.toString());
}
@Test
public void serverFormattedItem() {
String localAddress = "192.168.0.1";
accessLogEvent.setLocalAddress(localAddress);
ELEMENT.appendServerFormattedItem(accessLogEvent, strBuilder);
Assertions.assertEquals(localAddress, strBuilder.toString());
}
@Test
public void getLocalAddress() {
String localHost = "testHost";
Mockito.when(routingContext.request()).thenReturn(serverRequest);
Mockito.when(serverRequest.localAddress()).thenReturn(socketAddress);
Mockito.when(socketAddress.host()).thenReturn(localHost);
String result = LocalHostAccessItem.getLocalAddress(routingContext);
Assertions.assertEquals(localHost, result);
}
@Test
public void serverLocalAddressOnRequestIsNull() {
Mockito.when(routingContext.request()).thenReturn(null);
String result = LocalHostAccessItem.getLocalAddress(routingContext);
Assertions.assertEquals("-", result);
}
@Test
public void clientLocalAddressOnRequestIsNull() {
when(restClientRequest.getRequest()).thenReturn(null);
ELEMENT.appendClientFormattedItem(finishEvent, strBuilder);
Assertions.assertEquals("-", strBuilder.toString());
}
@Test
public void serverLocalAddressOnLocalAddressIsNull() {
Mockito.when(routingContext.request()).thenReturn(serverRequest);
Mockito.when(serverRequest.localAddress()).thenReturn(null);
String result = LocalHostAccessItem.getLocalAddress(routingContext);
Assertions.assertEquals("-", result);
}
@Test
public void clientLocalAddressOnLocalAddressIsNull() {
when(restClientRequest.getRequest()).thenReturn(clientRequest);
when(clientRequest.connection()).thenReturn(connection);
when(connection.localAddress()).thenReturn(null);
ELEMENT.appendClientFormattedItem(finishEvent, strBuilder);
Assertions.assertEquals("-", strBuilder.toString());
}
@Test
public void serverLocalAddressOnHostIsNull() {
Mockito.when(routingContext.request()).thenReturn(serverRequest);
Mockito.when(serverRequest.localAddress()).thenReturn(socketAddress);
Mockito.when(socketAddress.host()).thenReturn(null);
String result = LocalHostAccessItem.getLocalAddress(routingContext);
Assertions.assertEquals("-", result);
}
@Test
public void clientLocalAddressOnHostIsNull() {
when(restClientRequest.getRequest()).thenReturn(clientRequest);
when(clientRequest.connection()).thenReturn(connection);
when(connection.localAddress()).thenReturn(socketAddress);
when(socketAddress.host()).thenReturn(null);
ELEMENT.appendClientFormattedItem(finishEvent, strBuilder);
Assertions.assertEquals("-", strBuilder.toString());
}
@Test
public void serverLocalAddressIsEmpty() {
String localHost = "";
Mockito.when(routingContext.request()).thenReturn(serverRequest);
Mockito.when(serverRequest.localAddress()).thenReturn(socketAddress);
Mockito.when(socketAddress.host()).thenReturn(localHost);
String result = LocalHostAccessItem.getLocalAddress(routingContext);
Assertions.assertEquals("-", result);
}
@Test
public void clientLocalAddressIsEmpty() {
when(restClientRequest.getRequest()).thenReturn(clientRequest);
when(clientRequest.connection()).thenReturn(connection);
when(connection.localAddress()).thenReturn(socketAddress);
when(socketAddress.host()).thenReturn("");
ELEMENT.appendClientFormattedItem(finishEvent, strBuilder);
Assertions.assertEquals("-", strBuilder.toString());
}
}