blob: 39a4212df961abf0bcb401e7c4c0a3ad1b722dc3 [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.Endpoint;
import org.apache.servicecomb.core.Invocation;
import org.apache.servicecomb.core.event.InvocationFinishEvent;
import org.apache.servicecomb.core.event.ServerAccessLogEvent;
import org.apache.servicecomb.foundation.common.net.URIEndpointObject;
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.HttpMethod;
import io.vertx.core.http.HttpServerRequest;
import io.vertx.ext.web.RoutingContext;
public class HttpMethodItemTest {
private static final HttpMethodAccessItem ITEM = new HttpMethodAccessItem();
private StringBuilder strBuilder;
private InvocationFinishEvent finishEvent;
private ServerAccessLogEvent accessLogEvent;
private RoutingContext routingContext;
private Invocation invocation;
private RestClientRequestImpl restClientRequest;
private HttpClientRequest clientRequest;
private Endpoint endpoint;
private URIEndpointObject urlEndpoint;
@BeforeEach
public void initStrBuilder() {
routingContext = Mockito.mock(RoutingContext.class);
finishEvent = Mockito.mock(InvocationFinishEvent.class);
invocation = Mockito.mock(Invocation.class);
restClientRequest = Mockito.mock(RestClientRequestImpl.class);
clientRequest = Mockito.mock(HttpClientRequest.class);
endpoint = Mockito.mock(Endpoint.class);
urlEndpoint = Mockito.mock(URIEndpointObject.class);
Map<String, Object> handlerMap = new HashMap<>();
handlerMap.put(RestConst.INVOCATION_HANDLER_REQUESTCLIENT, restClientRequest);
when(finishEvent.getInvocation()).thenReturn(invocation);
when(invocation.getHandlerContext()).thenReturn(handlerMap);
when(invocation.getEndpoint()).thenReturn(endpoint);
when(endpoint.getAddress()).thenReturn(urlEndpoint);
accessLogEvent = new ServerAccessLogEvent();
accessLogEvent.setRoutingContext(routingContext);
strBuilder = new StringBuilder();
}
@Test
public void serverFormattedElement() {
HttpServerRequest request = Mockito.mock(HttpServerRequest.class);
Mockito.when(routingContext.request()).thenReturn(request);
Mockito.when(request.method()).thenReturn(HttpMethod.DELETE);
accessLogEvent.setRoutingContext(routingContext);
ITEM.appendServerFormattedItem(accessLogEvent, strBuilder);
Assertions.assertEquals("DELETE", strBuilder.toString());
}
@Test
public void clientFormattedElement() {
when(restClientRequest.getRequest()).thenReturn(clientRequest);
when(clientRequest.getMethod()).thenReturn(HttpMethod.DELETE);
ITEM.appendClientFormattedItem(finishEvent, strBuilder);
Assertions.assertEquals("DELETE", strBuilder.toString());
}
@Test
public void serverFormattedElementOnRequestIsNull() {
accessLogEvent.setRoutingContext(routingContext);
Mockito.when(routingContext.request()).thenReturn(null);
ITEM.appendServerFormattedItem(accessLogEvent, strBuilder);
Assertions.assertEquals("-", strBuilder.toString());
}
@Test
public void clientFormattedElementOnRequestIsNull() {
when(restClientRequest.getRequest()).thenReturn(null);
ITEM.appendClientFormattedItem(finishEvent, strBuilder);
Assertions.assertEquals("-", strBuilder.toString());
}
@Test
public void serverFormattedElementOnMethodIsNull() {
HttpServerRequest request = Mockito.mock(HttpServerRequest.class);
accessLogEvent.setRoutingContext(routingContext);
Mockito.when(routingContext.request()).thenReturn(request);
Mockito.when(request.method()).thenReturn(null);
ITEM.appendServerFormattedItem(accessLogEvent, strBuilder);
Assertions.assertEquals("-", strBuilder.toString());
}
@Test
public void clientFormattedElementOnMethodIsNull() {
when(clientRequest.getMethod()).thenReturn(null);
ITEM.appendClientFormattedItem(finishEvent, strBuilder);
Assertions.assertEquals("-", strBuilder.toString());
}
}