You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
package eurekademo; |
|
|
|
import static org.junit.Assert.assertEquals; |
|
|
|
import java.util.Map; |
|
|
|
import org.junit.Test; |
|
import org.junit.runner.RunWith; |
|
import org.springframework.beans.factory.annotation.Value; |
|
import org.springframework.boot.test.IntegrationTest; |
|
import org.springframework.boot.test.SpringApplicationConfiguration; |
|
import org.springframework.boot.test.TestRestTemplate; |
|
import org.springframework.http.HttpStatus; |
|
import org.springframework.http.ResponseEntity; |
|
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; |
|
import org.springframework.test.context.web.WebAppConfiguration; |
|
|
|
@RunWith(SpringJUnit4ClassRunner.class) |
|
@SpringApplicationConfiguration(classes = EurekaApplication.class) |
|
@WebAppConfiguration |
|
@IntegrationTest("server.port=0") |
|
public class ApplicationTests { |
|
|
|
@Value("${local.server.port}") |
|
private int port = 0; |
|
|
|
@Test |
|
public void catalogLoads() { |
|
@SuppressWarnings("rawtypes") |
|
ResponseEntity<Map> entity = new TestRestTemplate().getForEntity("http://localhost:" + port + "/v2/apps", Map.class); |
|
assertEquals(HttpStatus.OK, entity.getStatusCode()); |
|
} |
|
|
|
@Test |
|
public void adminLoads() { |
|
@SuppressWarnings("rawtypes") |
|
ResponseEntity<Map> entity = new TestRestTemplate().getForEntity("http://localhost:" + port + "/admin/env", Map.class); |
|
assertEquals(HttpStatus.OK, entity.getStatusCode()); |
|
} |
|
|
|
}
|
|
|