我正在尝试设置环境,以便我可以通过方法调用配置对象,然后使用 HTTP 请求对其运行测试,因此(半伪代码):
myStore.addCustomer("Jim")
HttpResponse response = httpClient.get("http://localHost/customer/Jim")
assertThat(response.status, is(OK))
(或在 JBehave 中)
Given a customer named Jim
When I make an HTTP GET to path "customer/Jim"
Then the response is 200 OK
我想使用 Spring Boot 来实现 Web 服务。
然而,我的尝试,虽然看起来很干净,但不起作用,因为我的测试对象看到的 Spring 上下文与 Web 服务使用的 Spring 上下文不同。
我的环境是 Serenity+JBehave,但我希望这些原则与直接的 jUnit 没有什么不同。
我有:
@RunWith(SerenityRunner.class)
@SpringApplicationConfiguration(classes = Application.class )
@WebAppConfiguration
@IntegrationTest
public class AcceptanceTestSuite extends SerenityStories {
@ClassRule
public static final SpringClassRule SPRING_CLASS_RULE = new SpringClassRule();
@Rule
public final SpringMethodRule springMethodRule = new SpringMethodRule();
@Autowired
private Store store;
}
...和应用程序代码:
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
...以及我要共享的对象的类:
@Component
public class Store {
private String id;
private final Logger log = LoggerFactory.getLogger(Store.class);
public Store() {
log.info("Init");
}
public void addCustomer(String id) {
this.id = id;
log.info("Store " + this + " Set id " + id);
}
public String getCustomerId() {
log.info("Store " + this + " Return id " + id);
return id;
}
}
...在我的控制器中:
@RestController
public class LogNetController {
@Autowired Store store;
@RequestMapping("/customer/{name}")
public String read(name) {
return ...;
}
}
...在我的 Serenity step 课程中:
@ContextConfiguration(classes = Application.class)
public class TestSteps extends ScenarioSteps {
@Autowired Store store;
@Step
public void addCustomer(String id) {
store.addCustomer(id);
}
}
当我运行测试时,服务器启动,setter 运行,发出 HTTP 请求。然而
- 我可以看到构造函数记录了两次“Init”
Store
:一个是由与测试关联的 Spring 上下文创建的,另一个是由属于 Tomcat 容器的 Spring 上下文创建的。 - 我可以看到
Set
并被Return
不同的Store
. 因此,我没有get
价值 Iset
。
如何让服务器和测试看到相同的 Spring 上下文?