blob: 965f14ed8940ed0e2f8e15dfae4e21b011e1776d [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.transport.rest.vertx;
import org.apache.servicecomb.foundation.common.net.IpPort;
import org.mockito.Mockito;
import io.vertx.core.Future;
import io.vertx.core.http.HttpServer;
import mockit.Mock;
import mockit.MockUp;
public class MockForRestServerVerticle {
private static final MockForRestServerVerticle instance = new MockForRestServerVerticle();
private MockForRestServerVerticle() {
// private constructor for Singleton
}
public static MockForRestServerVerticle getInstance() {
return instance;
}
public void mockRestServerVerticle() {
final HttpServer server = Mockito.mock(HttpServer.class);
new MockUp<RestServerVerticle>() {
@Mock
private void startListen(HttpServer server, IpPort ipPort, Future<Void> startFuture) {
}
@Mock
private HttpServer createHttpServer(boolean isHttp_2) {
return server;
}
};
}
public void mockTransportConfig() {
new MockUp<TransportConfig>() {
@Mock
public String getAddress() {
return "Address";
}
};
}
}