- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对 Spring Boot 父版本 2.1.0 使用单元测试。我需要在对 Game 对象内的 List 对象应用更新后测试值的更新。我在另一个线程中阅读以添加以下语句,但在我的情况下无法使用
@Modifying(clearAutomatically = true)
GameRepositoryTest.java
import com.game.kalah.domain.Game;
import static com.game.kalah.utils.Constants.*;
import static com.game.kalah.utils.Status.*;
import java.util.Arrays;
import java.util.Optional;
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest;
import org.springframework.test.context.junit4.SpringRunner;
//import static org.assertj.core.api.Assertions.*;
import org.springframework.boot.test.autoconfigure.orm.jpa.TestEntityManager;
import org.springframework.test.context.ActiveProfiles;
/**
*
* @author Nesrin
*/
@RunWith(SpringRunner.class)
// DataJpaTest supports rollback after running every test case
@DataJpaTest
@ActiveProfiles("test")
public class GameRepositoryTest {
private Integer[] INITIAL_BOARD;
private Game testGame;
private static Game palyedGame;
@Autowired
TestEntityManager em;
@Autowired
private GameRepository repository;
@Before
public void setup() {
INITIAL_BOARD = new Integer[]{6, 6, 6, 6, 6, 6, 0, 6, 6, 6, 6, 6, 6, 0};
testGame = new Game();
testGame.setBoardList(Arrays.asList(INITIAL_BOARD));
testGame.setStatus(PLAYER1TURN);
// testGame.setId(anyInt());
testGame.setMessage(START_MESSAGE);
testGame.setId(1);
fisrtPitPlayerOneMove();
}
@Test
public void test_save_game() {
// 1- Insert new game
Game newGame = repository.save(
new Game(START_MESSAGE)
);
// 2- Check saved game data for reporting
Optional<Game> retrieved = repository.findById(1);
Game savedGame = retrieved.get();
// playing with test options :)
/*
* return to a good reference
* https://objectpartners.com/2013/09/18/the-benefits-of-using-assertthat-over-other-assert-methods-in-unit-tests/
*/
//import static org.junit.Assert.*;
assertNotNull(newGame);
assertThat(newGame, isA(Game.class));
assertThat(savedGame, instanceOf(Game.class));
assertThat(testGame, is(newGame));
assertThat(testGame, equalTo(savedGame));
assertEquals(testGame, savedGame);
assertNotSame("Not Same", retrieved, testGame);
assertThat(testGame, sameInstance(testGame));
assertTrue(savedGame.equals(testGame));
//import static org.assertj.core.api.Assertions.*;
// assertThat(repository.findAll()).containsExactly(newGame);
savedGame.setBoardList(Arrays.asList(new Integer[]{0, 7, 7, 7, 7, 7, 1, 6, 6, 6, 6, 6, 6, 0}));
// 3- apply change on the saved game then save again to chek update effect
Game afterFirstMove = repository.save(savedGame);
assertNotNull(afterFirstMove);
assertThat(afterFirstMove, isA(Game.class));
assertEquals(savedGame, afterFirstMove);
}
private static void fisrtPitPlayerOneMove() {
palyedGame = new Game();
palyedGame.setId(1);
palyedGame.setMessage(IN_PROGRESS_MESSAGE + palyedGame.getId());
palyedGame.setStatus(PLAYER1TURN);
palyedGame.setBoardList(Arrays.asList(new Integer[]{0, 7, 7, 7, 7, 7, 1, 6, 6, 6, 6, 6, 6, 0}));
}
}
游戏.java
@Data
@Entity
public class Game {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Integer id;
@ElementCollection
@Column(name = "pits")
private List<Integer> boardList;
private Status status;
private String message;
public Game() {
}
public Game(String message) {
this.boardList = Arrays.asList(new Integer[]{6, 6, 6, 6, 6, 6, 0, 6, 6, 6, 6, 6, 6, 0});
this.status = Status.PLAYER1TURN;
this.message = message;
}
}
GameRepository.java
import com.game.kalah.domain.Game;
import org.springframework.data.repository.CrudRepository;
/**
*
* @author Nesrin
*/
public interface GameRepository extends CrudRepository<Game, Integer> {
}
错误如下,位于测试类中第二次调用save的行
Game afterFirstMove = repository.save(savedGame);
test_save_game(com.game.kalah.repository.GameRepositoryTest) Time elapsed: 0.106 s <<< ERROR! java.lang.UnsupportedOperationException at com.game.kalah.repository.GameRepositoryTest.test_save_game(GameRepositoryTest.java:85)
pom.xml父部分
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
最佳答案
您尝试过使用可变列表吗? Arrays.asList(array)
创建一个不可变列表。
尝试使用new ArrayList<>(Arrays.asList(array))
。检查这个link
此外,如果您发布完整的错误日志,将会很有帮助。
关于java - 使用 DataJpaTest spring boot 2.1.0 更新失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53385577/
我试图找出为什么我的单元测试不起作用。我看到 Hibernate 在更新之前做了一个插入。 为什么这样做? 是测试失败的原因吗? 我已经为测试环境设置了 hsqldb,该服务在 mysql 中似乎运行
我有一个使用 Spring Boot 的中等大小的项目,我正在尝试创建我的第一个带有嵌入式 H2 的 DataJpaTest,但我收到以下异常: org.hibernate.tool.schema.s
我有一个名为 TagRepository 的 spring-data-jpa 存储库。我的 spring-boot 版本是 2.1.2。我在运行时范围内使用 H2 依赖项,我打算将它用于应用程序和集成
在一个SpringBoot应用中,我想对repository层做一些测试。 @RunWith(SpringRunner.class) @DataJpaTest public class VisitRe
我有一个 Employee具有以下列的实体: @Entity class Employee { @Column(name = "first_name", length = 14) privat
默认 @DataJpaTest扫描所有 jpa 存储库和 @Entity .就我而言,我有 5 个存储库包和 5 个实体包。例如 com.acme.product.entity与....关联com.a
让我们假设一个自定义基础 JpaRepository实现如下。 public class SimpleCustomJpaRepository extends SimpleJpaRepository i
在 Windows (+ Maven) 上,我对 Métro 词的 é 有疑问。我的 sql 文件是用 UTF-8 编码的。我在 Unix 服务器上确实遇到了这个问题。 我的 Maven 错误: ex
我正在尝试使用 Spring @DataJpaTest 注释创建存储库测试。即使是简单的演示项目,我也会收到 IllegalArgumentException: Unknown entity。我错过了
我想用 Spring Boot 测试一个存储库,并想包含 TestEntityManager 来检查存储库是否真的做了它应该做的事情。 那是 JUnit 测试: @RunWith(SpringRunn
我正在尝试使用 @DataJpaTest 设置我的数据库单元测试注释以避免加载完整的 Spring 应用程序上下文。但它的执行方式与我使用 @SpringBootTest 时的方式不同。 + 配置的
我尝试使用注释 @DataJpaTest 编写集成测试。 我有两个数据源:主要和次要(类配置) 结果我有一个错误: expected single matching bean but found 2:
我正在使用 SpringBoot/Kotlin/JPA/Hibernate/Junit 并拥有 JpaServiceTest 类来执行与单个实体相关的存储库方法。 JpaService 类的方法名称遵
我使用@DataJpaTest 注释创建了一个测试。 hsqldb 已配置,但出现错误: No qualifying bean of type [org.springframework.jdbc.co
我编写了这个包含自定义查询的存储库: @Repository interface PersonRepository : JpaRepository { @Query("UPDATE Perso
我想将测试容器与 @DataJpaTest 一起使用(和 @SpringBootTest )使用 JUnit 5。我使用 @Testcontainers 进行基本设置工作和 @Container像这样
我在数据层中有几个实体以特定的架构存储。例如: @Entity @Table(name = "FOO", schema = "DUMMY") public class Foo {} 我正在尝试设置H2
我想使用 Controller 和存储库通过 Spring Boot 上下文配置创建完整的 JUnit 测试。我的测试类如下所示: @RunWith(SpringRunner.class) @Spri
Spring boot @DataJpaTest exclude filter donsn't work 我见过这个问题,但就我而言,他的方法不起作用。 我必须使用存储过程从 SQL 服务器检索数据,
我正在从 spring-boot 1.5.x 迁移到 2.0.4,并注意到 @DataJpaTest 的一个有趣的案例/行为 我有一个测试 @ExtendWith(SpringExtension.cl
我是一名优秀的程序员,十分优秀!