blob: 3562fd192b8b829f351004764c7b53956fd2c1bd [file] [log] [blame]
package pta.de.resources;
import org.eclipse.jetty.http.HttpStatus;
import org.junit.Test;
import pta.de.core.controller.ServicesConfigCache;
import pta.de.core.exceptions.HttpStatusException;
import javax.ws.rs.core.Response;
import static junit.framework.TestCase.assertNotNull;
import static org.junit.Assert.assertEquals;
public class MicsCentralResourceTest {
@Test
public void testGetVersionInfo() {
Response r = new MicsCentralResource().getVersionInfo();
assertNotNull( r );
}
@Test
public void testGetServiceDistribution() throws HttpStatusException {
ServicesConfigCache.getInstance().readServerDistribution("servicesDistributionDevLocal.json");
Response r = new MicsCentralResource().getServiceDistribution("elogbook.openK" );
assertEquals(HttpStatus.OK_200, r.getStatus());
}
}