本文整理汇总了Java中com.github.tomakehurst.wiremock.verification.LoggedRequest.getBodyAsString方法的典型用法代码示例。如果您正苦于以下问题:Java LoggedRequest.getBodyAsString方法的具体用法?Java LoggedRequest.getBodyAsString怎么用?Java LoggedRequest.getBodyAsString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.github.tomakehurst.wiremock.verification.LoggedRequest
的用法示例。
在下文中一共展示了LoggedRequest.getBodyAsString方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testPostMethod
import com.github.tomakehurst.wiremock.verification.LoggedRequest; //导入方法依赖的package包/类
/**
* <p>Test for the request method POST.</p>
*
* @since 1.3.0
*/
@Test
public final void testPostMethod() {
String path = "/postrequest";
stubFor(post(urlEqualTo(path))
.willReturn(aResponse()
.withStatus(200)));
String name = "DoctorWho", age = "953", location = "Tardis";
httpMethodEndpoint.postRequest(name, age, location);
List<LoggedRequest> requests = findAll(postRequestedFor(urlMatching(path)));
assertFalse(requests == null);
assertFalse(requests.isEmpty());
LoggedRequest request = requests.get(0);
assertTrue(request.getMethod().equals(RequestMethod.POST));
String body = request.getBodyAsString();
assertTrue(body.contains("name=" + name));
assertTrue(body.contains("age=" + age));
assertTrue(body.contains("location=" + location));
}
示例2: testPutMethod
import com.github.tomakehurst.wiremock.verification.LoggedRequest; //导入方法依赖的package包/类
/**
* <p>Test for the request method PUT.</p>
*
* @since 1.3.0
*/
@Test
public final void testPutMethod() {
String path = "/putrequest";
stubFor(put(urlEqualTo(path))
.willReturn(aResponse()
.withStatus(200)));
String user = "{ '_id':1, 'alias':'Black Bolt' }";
httpMethodEndpoint.putRequest(user);
List<LoggedRequest> requests = findAll(putRequestedFor(urlMatching(path)));
assertFalse(requests == null);
assertFalse(requests.isEmpty());
LoggedRequest request = requests.get(0);
assertTrue(request.getMethod().equals(RequestMethod.PUT));
String body = request.getBodyAsString();
assertTrue(body.contains(user));
}
示例3: testPutMethod
import com.github.tomakehurst.wiremock.verification.LoggedRequest; //导入方法依赖的package包/类
/**
* <p>Test for the request method PUT.</p>
*
* @since 1.3.0
*/
@Test
public final void testPutMethod() {
Robolectric.getFakeHttpLayer().interceptHttpRequests(false);
String path = "/putrequest";
stubFor(put(urlEqualTo(path))
.willReturn(aResponse()
.withStatus(200)));
String user = "{ '_id':1, 'alias':'Black Bolt' }";
httpMethodEndpoint.putRequest(user);
List<LoggedRequest> requests = findAll(putRequestedFor(urlMatching(path)));
assertFalse(requests == null);
assertFalse(requests.isEmpty());
LoggedRequest request = requests.get(0);
assertTrue(request.getMethod().equals(RequestMethod.PUT));
String body = request.getBodyAsString();
assertTrue(body.contains(user));
}
示例4: testPostMethod
import com.github.tomakehurst.wiremock.verification.LoggedRequest; //导入方法依赖的package包/类
/**
* <p>Test for the request method POST.</p>
*
* @since 1.3.0
*/
@Test
public final void testPostMethod() {
Robolectric.getFakeHttpLayer().interceptHttpRequests(false);
String path = "/postrequest";
stubFor(post(urlEqualTo(path))
.willReturn(aResponse()
.withStatus(200)));
String name = "DoctorWho", age = "953", location = "Tardis";
httpMethodEndpoint.postRequest(name, age, location);
List<LoggedRequest> requests = findAll(postRequestedFor(urlMatching(path)));
assertFalse(requests == null);
assertFalse(requests.isEmpty());
LoggedRequest request = requests.get(0);
assertTrue(request.getMethod().equals(RequestMethod.POST));
String body = request.getBodyAsString();
assertTrue(body.contains("name=" + name));
assertTrue(body.contains("age=" + age));
assertTrue(body.contains("location=" + location));
}