blob: c16849878b7e9865601d035d0e63667c7eb86bd6 [file] [log] [blame]
/**
******************************************************************************
* Copyright © 2018 PTA GmbH.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*
******************************************************************************
*/
package org.eclipse.openk.mics.home.controller;
import org.apache.http.HttpStatus;
import org.eclipse.openk.mics.home.common.HttpStatusException;
import org.junit.Test;
import javax.ws.rs.core.Response;
import static org.junit.Assert.assertEquals;
public class ResponseBuilderWrapperTest {
@Test
public void testGetResponseBuilder() throws HttpStatusException {
String json = "{ 'ret' : 'OK' }";
Response.ResponseBuilder rb = ResponseBuilderWrapper.INSTANCE.getResponseBuilder( json );
Response resp = rb.build();
assertEquals(resp.getStatus(), HttpStatus.SC_OK );
}
@Test
public void testBuildOkResponse() throws HttpStatusException {
String json = "{ 'test' : 'Value' }";
Response resp = ResponseBuilderWrapper.INSTANCE.buildOKResponse( json );
assertEquals( resp.getStatus(), HttpStatus.SC_OK );
}
}