Search in sources :

Example 1 with OnlyJsonView

use of io.leopard.web.view.OnlyJsonView in project leopard by tanhaichao.

the class OnlyJsonViewTest method getData.

@Test
public void getData() {
    OnlyJsonView onlyJsonView = new OnlyJsonView("message");
    Assert.assertEquals("message", onlyJsonView.getData());
}
Also used : OnlyJsonView(io.leopard.web.view.OnlyJsonView) Test(org.junit.Test)

Example 2 with OnlyJsonView

use of io.leopard.web.view.OnlyJsonView in project leopard by tanhaichao.

the class OnlyJsonViewTest method getBody.

@Test
public void getBody() {
    HttpServletRequest request = new MockHttpServletRequest();
    HttpServletResponse response = new MockHttpServletResponse();
    OnlyJsonView onlyJsonView = new OnlyJsonView("message");
    Assert.assertEquals("\"message\"", onlyJsonView.getBody(request, response));
}
Also used : HttpServletRequest(javax.servlet.http.HttpServletRequest) MockHttpServletRequest(org.springframework.mock.web.MockHttpServletRequest) MockHttpServletRequest(org.springframework.mock.web.MockHttpServletRequest) OnlyJsonView(io.leopard.web.view.OnlyJsonView) HttpServletResponse(javax.servlet.http.HttpServletResponse) MockHttpServletResponse(org.springframework.mock.web.MockHttpServletResponse) MockHttpServletResponse(org.springframework.mock.web.MockHttpServletResponse) Test(org.junit.Test)

Example 3 with OnlyJsonView

use of io.leopard.web.view.OnlyJsonView in project leopard by tanhaichao.

the class OnlyJsonViewTest method getContentType.

// @Test
// public void getJson() {
// OnlyJsonView onlyJsonView = new OnlyJsonView("message");
// Assert.assertEquals("\"message\"", onlyJsonView.getJson());
// }
@Test
public void getContentType() {
    OnlyJsonView onlyJsonView = new OnlyJsonView("message");
    Assert.assertEquals("text/plain; charset=UTF-8", onlyJsonView.getContentType());
}
Also used : OnlyJsonView(io.leopard.web.view.OnlyJsonView) Test(org.junit.Test)

Aggregations

OnlyJsonView (io.leopard.web.view.OnlyJsonView)3 Test (org.junit.Test)3 HttpServletRequest (javax.servlet.http.HttpServletRequest)1 HttpServletResponse (javax.servlet.http.HttpServletResponse)1 MockHttpServletRequest (org.springframework.mock.web.MockHttpServletRequest)1 MockHttpServletResponse (org.springframework.mock.web.MockHttpServletResponse)1