mock-http-server

Mock HTTP Server

Лицензия

Лицензия

Группа

Группа

com.github.httpmock
Идентификатор

Идентификатор

mock-http-server
Последняя версия

Последняя версия

1.1.9
Дата

Дата

Тип

Тип

pom
Описание

Описание

mock-http-server
Mock HTTP Server
Ссылка на сайт

Ссылка на сайт

https://github.com/httpmock/mock-http-server
Система контроля версий

Система контроля версий

https://github.com/httpmock/mock-http-server

Скачать mock-http-server

Имя Файла Размер
mock-http-server-1.1.9.pom 5 KB
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.github.httpmock/mock-http-server/ -->
<dependency>
    <groupId>com.github.httpmock</groupId>
    <artifactId>mock-http-server</artifactId>
    <version>1.1.9</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/com.github.httpmock/mock-http-server/
implementation 'com.github.httpmock:mock-http-server:1.1.9'
// https://jarcasting.com/artifacts/com.github.httpmock/mock-http-server/
implementation ("com.github.httpmock:mock-http-server:1.1.9")
'com.github.httpmock:mock-http-server:pom:1.1.9'
<dependency org="com.github.httpmock" name="mock-http-server" rev="1.1.9">
  <artifact name="mock-http-server" type="pom" />
</dependency>
@Grapes(
@Grab(group='com.github.httpmock', module='mock-http-server', version='1.1.9')
)
libraryDependencies += "com.github.httpmock" % "mock-http-server" % "1.1.9"
[com.github.httpmock/mock-http-server "1.1.9"]

Зависимости

test (3)

Идентификатор библиотеки Тип Версия
org.hamcrest : hamcrest-all jar 1.3
junit : junit jar 4.11
org.mockito : mockito-all jar 1.10.8

Модули Проекта

  • mock-http-server-dto
  • mock-http-server-exec
  • mock-http-server-webapp
  • mock-http-server-standalone
  • mock-http-server-junit

mock-http-server

Coverage Status

With this mock http server you can write integration tests for your application and mock its http based backends. This example shows an integration test which configures the mock to answer for a specific request with a specific response. It also shows how to use this mock server with junit.

import static com.github.httpmock.builder.RequestBuilder.request;
import static com.github.httpmock.builder.ResponseBuilder.response;
import static com.github.httpmock.times.ExcatlyOnce.once;
import static com.jayway.restassured.RestAssured.given;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;

import org.junit.ClassRule;
import org.junit.Rule;
import org.junit.Test;

import com.github.httpmock.dto.RequestDto;
import com.github.httpmock.dto.ResponseDto;
import com.jayway.restassured.response.Response;

public class ExampleIT {

	@ClassRule
	public static HttpMockServer mockServer = new HttpMockServer();

	@Rule
	public HttpMock mock = new HttpMock(mockServer);

	@Test
	public void someTest() throws Exception {
		RequestDto request = request().method("POST").url("/some/url").build();
		ResponseDto response = response().payload("data")
				.contentType("text/plain").build();
		mock.when(request).thenRespond(response);

		Response mockResponse = given().baseUri(getBaseUri())
				.basePath(mock.getRequestUrl()).post("/some/url");

		assertThat(mockResponse.getBody().asString(), is("data"));
		assertThat(mockResponse.getContentType(), is("text/plain"));
		mock.verify(request, once());
	}

	private String getBaseUri() {
		return String.format("http://localhost:%d", mockServer.getPort());
	}
}

Версии библиотеки

Версия
1.1.9
1.1.8
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.0