- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我一直在关注this Petri Kainulainen 的非常有用的博客文章,使用 spring-data-jpa 和 DBUnit 为我的 Spring 存储库代码编写集成测试。
我的 bean 上下文 XML 是这样设置的
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:jpa="http://www.springframework.org/schema/data/jpa"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">
<context:property-placeholder location="file:src/main/webapp/WEB-INF/config/application-test.properties"
ignore-resource-not-found="false" />
<bean id="dataSource" class="com.jolbox.bonecp.BoneCPDataSource">
<property name="driverClass" value="${db.driver}" />
<property name="jdbcUrl" value="${db.url}" />
<property name="username" value="${db.username}" />
<property name="password" value="${db.password}" />
</bean>
<bean id="directorRepository" name="directorRepositoryMock" class="org.mockito.Mockito"
factory-method="mock">
<constructor-arg value="com.tvfreakz.repository.DirectorRepository" />
</bean>
</beans>
我的数据集 XML 具有以下内容
<!DOCTYPE dataset SYSTEM "my-dataset.dtd">
<dataset>
<director directorid="1" director="Ridley Scott" />
<director directorid="2" director="James Cameron" />
<director directorid="3" director="David Fincher" />
<director directorid="4" director="Jean-Pierre Jeunet" />
</dataset>
这是存储库界面
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import com.tvfreakz.model.entity.Director;
@Repository("directorRepository")
public interface DirectorRepository extends JpaRepository<Director, Long> {
Director findByDirectorId(Long directorId);
}
我的测试类是这样设置的
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.TestExecutionListeners;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.support.DependencyInjectionTestExecutionListener;
import org.springframework.test.context.support.DirtiesContextTestExecutionListener;
import org.springframework.test.context.transaction.TransactionalTestExecutionListener;
import com.github.springtestdbunit.DbUnitTestExecutionListener;
import com.github.springtestdbunit.annotation.DatabaseSetup;
import com.tvfreakz.model.entity.Director;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"file:src/main/webapp/WEB-INF/config/testMVCContext.xml"})
@TestExecutionListeners({ DependencyInjectionTestExecutionListener.class,
DirtiesContextTestExecutionListener.class,
TransactionalTestExecutionListener.class,
DbUnitTestExecutionListener.class })
@DatabaseSetup("testDataset.xml")
public class ITDirectorRepositoryTest {
@Autowired
private DirectorRepository repository;
@Test
public void testFindByDirectorIdWhenNoDirectorFound() {
Director director = repository.findByDirectorId(10L);
assertNull(director);
}
@Test
public void testFindByDirectorIdWhendirectorIsFound() {
Director director = repository.findByDirectorId(1L);
assertEquals("Ridley Scott", director.getDirectorName());
}
}
我期望 @DatabaseSetup
注释采用我的配置并将所有表和数据插入设置到由 dataSource
bean 配置的测试数据库中。
这似乎什么都不做(即数据库保持空白,没有表或数据)并且我的第二个测试 testFindByDirectorIdWhendirectorIsFound
失败,因为返回的 director 为空。我错过了什么?
编辑 1 好的,我有一些进展,我现在创建了表,但没有数据。问题是我不应该使用模拟存储库。我必须将我的上下文 XML 更新为以下内容。所以下一个问题是尝试找出为什么它没有用数据填充我新创建的表
EDIT 2 JpaTransactionManager bean 和 tx 注释驱动添加到上下文
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:jpa="http://www.springframework.org/schema/data/jpa"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">
<context:property-placeholder location="file:src/main/webapp/WEB-INF/config/application-test.properties"
ignore-resource-not-found="false" />
<jpa:repositories base-package="com.tvfreakz.repository" />
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="persistenceUnitName" value="punit"/>
<property name="dataSource" ref="dataSource"/>
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
<property name="showSql" value="true"/>
</bean>
</property>
<property name="jpaPropertyMap">
<map>
<entry key="hibernate.dialect" value="org.hibernate.dialect.MySQL5InnoDBDialect"/>
<entry key="hibernate.hbm2ddl.auto" value="update"/>
<entry key="hibernate.format_sql" value="true"/>
<entry key="hibernate.show_sql" value="true"/>
</map>
</property>
</bean>
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory"/>
</bean>
<tx:annotation-driven transaction-manager="transactionManager"/>
<bean id="dataSource" class="com.jolbox.bonecp.BoneCPDataSource">
<property name="driverClass" value="${db.driver}" />
<property name="jdbcUrl" value="${db.url}" />
<property name="username" value="${db.username}" />
<property name="password" value="${db.password}" />
</bean>
</beans>
编辑 3 好的,在我的 Maven 依赖项中包含 slf4j 并创建一个设置了 DEBUG 级别的 log4j.properties 文件后,我设法启用了 DEBUG 级别。
我在日志中看到了这一点,这可能提供了线索?
14:47:05,670 INFO TestContextManager:242 - Could not instantiate TestExecutionListener [com.github.springtestdbunit.DbUnitTestExecutionListener]. Specify custom listener classes or make the default listener classes (and their required dependencies) available. Offending class: [org/dbunit/dataset/IDataSet]
我相信这是引用了我的这部分测试代码
@TestExecutionListeners({ DependencyInjectionTestExecutionListener.class,
DirtiesContextTestExecutionListener.class,
TransactionalTestExecutionListener.class,
DbUnitTestExecutionListener.class })
最佳答案
随着我对原始帖子所做的编辑,我似乎在我的 Maven pom.xml 中缺少 DBUnit 依赖项。添加以下内容后,我现在有了数据,感谢 Petri 和 Phil 的帮助!
<dependency>
<groupId>org.dbunit</groupId>
<artifactId>dbunit</artifactId>
<version>2.5.0</version>
</dependency>
关于java - 使用 DBUnit 集成测试 Spring 存储库层,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28043618/
(新手 DBUnit 问题警报!) 看来每个表的 DBUnit 都会“从表中删除所有记录,然后执行插入操作”。 这意味着您无法使用 xml 加载文件顺序清除数据,因为在从其他表中删除记录之前,任何约束
我们正在使用 CsvDataFileLoader 加载我们的引用数据,如下所示: new InsertIdentityOperation(DatabaseOperation.CLEAN_INSERT)
您好,我正在尝试进行集成测试, 我使用码头作为容器和 dbunit 来填充内存数据库中的 HSQLDB。 我用来用 dataset.xml 文件填充数据库的代码是有效的,因为我在我的单元测试中使用了它
我有以下 java 代码,它给出了以下错误: import java.io.File; import java.io.FileOutputStream; import java.sql.Connect
我遇到了 DBUnit (V2.5.3) 的问题,我想将属性 FEATURE_ALLOW_EMPTY_FIELDS 设置为 true,但 DBUnit 忽略了此设置。我设置属性的代码是: Databa
我觉得这很容易理解,但是我很难找到有关如何更改DBUnit日志级别的信息。谁能为我解决这个问题? 最佳答案 避免了一段时间后,我找到了解决方案。 import org.slf4j.Logger imp
我更新了我的 composer.json 文件以包含 dbunit: "require-dev": { "phpunit/phpunit": "^7", "phpunit/dbunit
我正在使用 dBUnit 并试图用实际的 DB 数据集断言我预定义的 FlatXmlDataSet 的一行。问题是当数据来自 FlatXmlDataSet 时,我的验证码字段的 getValue 返回
我正在为使用 JPA 的存储库层编写集成测试。然而,每次测试后,它都会在数据库中留下大量垃圾,我想在测试结束时将其清除。我正在查看 DBUnit,它似乎能够重新初始化我的数据库。然而扩展测试用例的事情
我想尝试使用 DBUnit 进行单元测试,但我的数据集有问题。 这是我的持久性对象: @Entity @Table(name = "personnes") public class Personne
我想知道是否有一种方法可以存储和检索元表数据以及完整或平面 XML 文件,主要是有关数据库架构主键的信息。 最佳答案 dbUnit 在处理时读取数据库元数据,但不存储它。它的所有操作都是为了数据处理。
我有以下 dbunit 配置 org.codehaus.mojo dbunit-maven-plugin 1.0-beta-3
我正在使用 maven dbunit 插件(调整版本 1.0-beta-3)。 在我的 pom.xml 文件中,我定义了很少执行的插件: org.codehaus.mojo dbun
我正在尝试将 dbunit 和 spring dbunit 包含到我的项目中进行测试。我有 2 个文件夹:“src/测试/java/dao”和“src/test/resources/dao”。 在资源
看起来 DbUnit 正在使用 JDBC 元数据来确定主键字段并使用这些字段构造删除语句: delete from tbl_name where pk_field1=? and pk_field2=?
对 DBUnit 感到沮丧:(有人知道为什么我会得到下面的 dbAssertionFailedError driverClass is null 吗?dbunitData.xml 包含一行测试数据。我
我在Java7中有一个带有Spring和DbUnit 2.5.4的Java项目。 我想禁用DbUnit键检查,但仅针对其中有许多表被交叉引用的特定测试。 我尝试了此代码,但没有成功。 如何仅为此测试禁
我有一个包含 Spring + Maven + JPA (Hibernate) 的系统。我使用 Junit 和 DBUnit。我有一个带有生成 id 的实体:在测试期间它不会重置序列。我该如何解决这个
我有一个 Hibernate 实体,它与其自身具有递归关系(父子关系)。我使用 DbUnit XML 文件在测试中插入一些数据,包括关系。 但是,在我的测试中查询parent=null(根)列表的服务
我的数据库单元测试有问题,该测试测试数据是否正确保存。因此,我用我的数据创建了一个示例数据库,并尝试将设置和预期数据进行比较。 id 生成和其他一切都应该由 hibernate 管理 @RunWith
我是一名优秀的程序员,十分优秀!