春のテストを使用して残りのアプリケーションをテストしようとしています。
2 つのエンティティ (User、UserInfo) があります (ソースとターゲットの両方が同じ主キー値を共有することを前提とする 1 対 1 の関連付け)。
これは私のテスト シナリオです。(テストコード内)
- JPAを使用して一時ユーザーをデータベースに挿入する
- MockMvc を使用してコントローラーを要求します。
- 期待値と実際値でアサートします。
- 一時ユーザーをロールバックします。
このテスト ケースは失敗しました。おそらく別の実行環境(スレッド)へ??
@Test
public void test() throws Exception {
// create temporary user for test.
User user = new User();
user.setType(Type.User);
UserInfo userInfo = new UserInfo();
userInfo.setEmail("temporary_user@test.com");
userInfo.setUser(user);
user.setUserInfo(userInfo);
// persist
userRepository.save(user);
// request post
mockMvc.perform(
post("/user")
.param("email", "temporary_user@test.com")
.contentType(MediaType.APPLICATION_JSON_UTF8_VALUE))
.andExpect(status().isOk())
.andExpect(jsonPath("$.email", userInfo.getEmail()));
}
テストシナリオは可能ですか??
別のソリューションに関するヘルプ、または私のソリューションを機能させる方法はありますか?
これはサンプルコードです。
https://gist.github.com/okihouse/f5e2fe8fa4c17d6a6be9
解決済み
この例外を解決しました。
例外点
私はhikariCPを使用しました。サンプルコードを見る。
@Configuration @EnableAutoConfiguration @EnableTransactionManagement public class JdbcConfig implements TransactionManagementConfigurer { @Autowired private JdbcVO jdbcVO; @Bean public JdbcTemplate jdbcTemplate(){ return new JdbcTemplate(dataSource()); } @Bean public DataSource dataSource(){ final HikariDataSource dataSource = new HikariDataSource(); dataSource.setDriverClassName(jdbcVO.getDriver()); dataSource.setJdbcUrl(jdbcVO.getUrl()); dataSource.setUsername(jdbcVO.getUsername()); dataSource.setPassword(jdbcVO.getPassword()); return dataSource; } @Bean public PlatformTransactionManager transactionManager(){ return new DataSourceTransactionManager(dataSource()); } @Override public PlatformTransactionManager annotationDrivenTransactionManager() { return transactionManager(); }
}
手動でデータソース構成を使用するとエラーが発生しました。
そのため、 application.ymlのデータソース構成を更新します。
spring:
jpa:
database: mysql
hibernate:
naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy
#ddl-auto: create
properties:
hibernate.format_sql: true
show-sql: true
datasource:
type: com.zaxxer.hikari.HikariDataSource
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/test
username: test
password: test
最後に、このコードを共有しました。 https://github.com/okihouse/spring-jpa-test