Skip to content

Commit f0e6c72

Browse files
committed
demo
1 parent 92756b9 commit f0e6c72

File tree

5 files changed

+24
-16
lines changed

5 files changed

+24
-16
lines changed

pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@
4141
<artifactId>spring-boot-starter-data-rest</artifactId>
4242
</dependency>
4343

44+
<dependency>
45+
<groupId>mysql</groupId>
46+
<artifactId>mysql-connector-java</artifactId>
47+
</dependency>
48+
4449
<dependency>
4550
<groupId>com.h2database</groupId>
4651
<artifactId>h2</artifactId>

src/main/resources/schema.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
DROP TABLE IF EXISTS CAR;
22
CREATE TABLE CAR(
3-
id BIGINT AUTO_INCREMENT,
3+
id BIGINT AUTO_INCREMENT PRIMARY KEY,
44
name VARCHAR(255)
5-
);
5+
);

src/test/java/com/example/TestingWithSpringBootApplicationTests.java

+9-11
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,17 @@
1616

1717
package com.example;
1818

19-
import static org.assertj.core.api.Assertions.assertThat;
19+
import static org.assertj.core.api.Assertions.*;
2020

2121
import org.junit.Test;
2222
import org.junit.runner.RunWith;
23-
import org.springframework.beans.factory.annotation.Autowired;
24-
import org.springframework.boot.context.embedded.LocalServerPort;
25-
import org.springframework.boot.test.autoconfigure.jdbc.AutoConfigureTestDatabase;
23+
import org.springframework.beans.factory.annotation.Value;
2624
import org.springframework.boot.test.context.SpringBootTest;
2725
import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
28-
import org.springframework.boot.test.web.client.TestRestTemplate;
26+
import org.springframework.http.HttpStatus;
2927
import org.springframework.http.ResponseEntity;
3028
import org.springframework.test.context.junit4.SpringRunner;
29+
import org.springframework.web.client.RestTemplate;
3130

3231
/**
3332
* Integration test for the whole application.
@@ -36,13 +35,9 @@
3635
*/
3736
@RunWith(SpringRunner.class)
3837
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
39-
@AutoConfigureTestDatabase
4038
public class TestingWithSpringBootApplicationTests {
4139

42-
@Autowired
43-
private TestRestTemplate restTemplate;
44-
45-
@LocalServerPort
40+
@Value("${local.server.port}")
4641
private int localServerPort;
4742

4843
@Test
@@ -52,8 +47,11 @@ public void contextLoads() {
5247
@Test
5348
public void test() {
5449

55-
ResponseEntity<String> response = this.restTemplate.getForEntity("/cars/{name}", String.class, "Honda");
50+
RestTemplate restTemplate = new RestTemplate();
51+
ResponseEntity<String> response = restTemplate.getForEntity("http://localhost:{port}/cars/{name}", String.class,
52+
localServerPort, "Honda");
5653

54+
assertThat(response.getStatusCode()).isEqualTo(HttpStatus.OK);
5755
assertThat(response.getBody()).contains("Honda");
5856
}
5957
}

src/test/java/com/example/external/data/CarRepositoryIntegrationTests.java

+5-3
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,15 @@
2222
import org.junit.runner.RunWith;
2323
import org.springframework.beans.factory.annotation.Autowired;
2424
import org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest;
25+
import org.springframework.boot.test.context.SpringBootTest;
26+
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
2527
import org.springframework.test.context.junit4.SpringRunner;
2628

2729
/**
2830
* @author Mark Paluch
2931
*/
30-
@RunWith(SpringRunner.class)
31-
@DataJpaTest
32+
@RunWith(SpringJUnit4ClassRunner.class)
33+
@SpringBootTest
3234
public class CarRepositoryIntegrationTests {
3335

3436
@Autowired
@@ -51,4 +53,4 @@ public void shouldNotFindByName() {
5153

5254
assertThat(absent).isNull();
5355
}
54-
}
56+
}
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
spring.jackson.serialization.indent_output=true
22
spring.jpa.hibernate.ddl-auto=none
3+
spring.datasource.url=jdbc:mysql://localhost/springboot
4+
spring.datasource.username=springboot
5+
spring.datasource.password=springboot

0 commit comments

Comments
 (0)