作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我必须编写一些junit测试用例来检查实体。我使用 postgres 作为我的数据库。
我的实体类
@Entity
@Table(name = "display")
public class Display {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private String title;
private String group;
public Display() {
}
public Display(Long id, String title, String grp) {
this.id = id;
this.title= title;
this.group= grp;
}
public void setId(Long id) {
this.id = id;
}
public Long getId() {
return this.id;
}
public void setGroup(String id) {
this.group = id;
}
public String getGroup() {
return this.group;
}
public void settitle(String title) {
this.title = title;
}
public String gettitle() {
return this.title;
}
}
我的存储库
@Repository
public interface DisplayRepository extends CrudRepository<Display, Long> {
}
界面
public interface IDisplayService {
List<Display> findAll();
}
服务等级
@Service
public class DisplayService implements IDisplayService {
@Autowired
private DisplayRepository repository;
@Override
public List<Display> findAll() {
List<Display> d = (List<Display>) repository.findAll();
return d;
}
}
我尝试编写 junit 测试用例,但出现无法加载应用程序。为此编写 junit 测试用例的正确方法是什么?
这是我为服务编写的测试用例
文件夹:test/java/example/demo/Test.java
@RunWith(MockitoJUnitRunner.class)
@TestPropertySource("classpath:conn.properties")
public class DisplayServiceTest {
@Value("${id}")
private String value;
@Mock
private DisplayRepository DisplayReps;
@InjectMocks
private DisplayService DisplayService;
@Test
public void whenFindAll_thenReturnProductList() {
Menu m = new Menu()
m.setId(value);
List<Display> expectedDisplay = Arrays.asList(m);
doReturn(expectedDisplay).when(DisplayReps).findAll();
List<Display> actualDisplay = DisplayService.findAll();
assertThat(actualDisplay).isEqualTo(expectedDisplay);
}
在测试/java/example/demo/resources中 连接属性 id=2
返回值 0有什么问题吗?谢谢
最佳答案
我已经成功地让你的代码正常工作了。我将只发布更改后的类:
界面:
public interface DisplayRepository extends CrudRepository<Display, Long> {
Optional<Display> findByTitle(String name);
}
测试类:
@RunWith(SpringRunner.class)
@AutoConfigureTestDatabase(replace= AutoConfigureTestDatabase.Replace.NONE)
@DataJpaTest
public class DisplayRepositoryTest {
@Autowired
private TestEntityManager testEntityManager;
@Autowired
private DisplayRepository productRespository;
@Before()
public void setUp(){
Display m = new Display();
// m.setId(2L); // The ID is autogenerated; can retrieve it from the persistAndFlush result
m.setCategory("Group1");
m.setTitle("Product2");
testEntityManager.persistAndFlush(m);
}
@Test
public void whenFindByName_thenReturnProduct() {
// when
Display product = productRespository.findByTitle("Product2").orElseThrow(() -> new RuntimeException("Product not found"));
// then
assertThat(product.getTitle()).isEqualTo("Product2");
}
@Test
public void whenFindAll_thenReturnProductList() {
// when
List<Display> products = (List<Display>) productRespository.findAll();
// then
assertThat(products).hasSize(1);
}
}
当尝试运行您提供的代码时,出现了一些问题:
group
作为 Display 类中的字段。因此,Hibernate 无法创建该表,因此我将其重命名为类别。findByName
;此外,Display 类中没有要进行映射的字段 name
;因此,我添加了 findByTitle
方法,因为它是一个现有字段,并且似乎与您在测试方法中查询的值匹配。如果你想使用@Mock来模拟类,你必须调用:
@Before
public void setUp() {
MockitoAnnotations.initMocks(this);
}
然后您可以像往常一样模拟响应:Mockito.when(DisplayReps.findByTitle("A")).thenReturn(Optional.of(new Display(2L, "ALFA", "GRP1")));
关于java - 如何为 Spring Boot 应用程序编写 Junit 测试用例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58969080/
我是一名优秀的程序员,十分优秀!