使用 H2 Database In-Memory 不会在单元测试中保留对象

Posted

技术标签:

【中文标题】使用 H2 Database In-Memory 不会在单元测试中保留对象【英文标题】:Using H2 Database In-Memory does not persist Objects in Unit Tests 【发布时间】:2015-01-26 13:01:23 【问题描述】:

我在用于单元测试的 persistence.xml 中遇到有关 JPA 的问题。 将对象持久化到内存中的数据库 H2 时发生错误:

-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running some.class.MyClass
################################################################################
                    BeforeClass Start  
################################################################################
                    EntityManager is being created..  
Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 1.541 sec <<< FAILURE!

Results :

Tests in error: 
  some.class.MyClass: getSingleResult() did not retrieve any entities

我确信持久化存在问题,而不是获取数据,因为 DEV 应用程序中的读取方法与真实数据库完美配合。

这是我的 persistence.xml:

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
    <persistence-unit name="TestPU" transaction-type="RESOURCE_LOCAL">

        <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
        <class>all entities</class>
        <exclude-unlisted-classes>true</exclude-unlisted-classes>

        <properties>
            <property name="eclipselink.logging.level" value="SEVERE"/>
            <!-- ALL SEVERE -->
            <property name="eclipselink.logging.level.sql" value="SEVERE"/>
            <!-- ALL SEVERE -->
            <property name="eclipselink.logging.parameters" value="true"/>
            <property name="javax.persistence.jdbc.driver" value="org.h2.Driver"/>
            <property name="javax.persistence.jdbc.url" value="jdbc:h2:mem:test;MODE=Oracle;DB_CLOSE_DELAY=-1;INIT=CREATE SCHEMA IF NOT EXISTS DEV"/>
            <property name="javax.persistence.jdbc.user" value="sa"/>
            <property name="javax.persistence.jdbc.password" value=""/>
            <!-- model creation have to be done via javax.persistence, not hibernate/eclipselink - otherwise import doesn't works -->
            <property name="javax.persistence.schema-generation.database.action" value="drop-and-create"/>
            <property name="javax.persistence.schema-generation.create-source" value="metadata"/>
            <property name="javax.persistence.schema-generation.drop-source" value="metadata"/>
        </properties>

    </persistence-unit>
</persistence>


</persistence-unit>

这是一段 Java 代码:

@BeforeClass
        public static void setUpClass() 
                myOut("BeforeClass Start");
                EM = Persistence.createEntityManagerFactory(PU).createEntityManager();
                myOut("EntityManager is being created..");
                EM.persist(new Account(PU, PU, PU));
                EM.persist(new Account(PU + "2", "dsaddsa", "dsadas"));
                EM.persist(new Account(PU + "3", "saddsd", "dsadasa"));
                EM.persist(new Account(PU + "4", "adsada", "hdsd"));

                final DaoLogged dao = new DaoLogged();
                dao.setEntityManager(EM);
                dao.getAccountByLogin(PU);
                myOut("BeforeClass Done.");
        

单结果方法:

public Account getAccountByLogin(String login) 
                return (Account) getEntityManager().createNamedQuery("Account.findByLogin").setParameter("login", login).getSingleResult();

我将不胜感激! :) 问候!

[编辑]

我一直在寻找一个很长的答案,实际上在今天早上这完全没有用,但是经过几个小时的编辑,在互联网上搜索我坚持了这个..

[编辑 2]

我把上面的方法改成:

@BeforeClass
        public static void setUpClass() 
                myOut("BeforeClass Start");
                EM = Persistence.createEntityManagerFactory(PU).createEntityManager();
                myOut("EntityManager is being created..");

                **EM.getTransaction().begin();**

                EM.persist(new Account(PU, PU, PU));
                EM.persist(new Account(PU + "2", "dsaddsa", "dsadas"));
                EM.persist(new Account(PU + "3", "saddsd", "dsadasa"));
                EM.persist(new Account(PU + "4", "adsada", "hdsd"));
                **EM.getTransaction().commit();
                EM.flush();
                EM.getTransaction().begin();**
                final DaoLogged dao = new DaoLogged();
                dao.setEntityManager(EM);
                dao.getAccountByLogin(PU);
                myOut("BeforeClass Done.");
        

仍然有错误,但不同:

javax.persistence.TransactionRequiredException: 

异常描述:当前没有事务处于活动状态

【问题讨论】:

代码看起来大部分是正确的,错误可能在其他地方。测试中如何访问数据库? getSingleResult() 在哪里调用? 在 getAccountByLogin 中,但正如我写的那样,它在 DEV 应用程序中正常工作,方法:公共帐户 getAccountByLogin(String login) return (Account) getEntityManager().createNamedQuery("Account.findByLogin")。 setParameter("login", login).getSingleResult(); @AaronDigulla 上面是方法(忘记了'@',提前谢谢:)) 1.请将代码添加到您的问题中;它作为评论是不可读的。 2. 我在输出中缺少BeforeClass Done。在测试开始之前是否有异常? @AaronDigulla 实际上所有这些东西都在setUpClass() 方法中,所以是的,错误发生在BeforeClass Done 输出之前dao.getAccountByLogin(PU); 【参考方案1】:

错误意味着查询没有返回任何结果。确保数据库设置正确。为此,请为 EclipseLink 启用 DEBUG 日志级别。这应该会显示正在发送到数据库的 SQL。

您还需要一个事务管理器。如何设置和配置取决于您的应用程序的体系结构。事务管理器负责编排事务的所有不同参与者(数据库、EntityManager,有时还有其他方,如 JMS)。

如果你使用 Spring,那么事务管理器会自动将事务与测试同步。

请注意,您应该尝试在每次测试之前启动事务并在每次测试后回滚。这样,测试 #2 就不会失败,因为测试 #1 在数据库中留下了垃圾。

【讨论】:

【参考方案2】:

好的,我花了一些时间来解决这些错误.. :)

    事务是必要的,在这种情况下,flush 应该在commit 之前调用 我忘记在 POM 中的 eclipselink 依赖项中添加范围 test Lo​​mbok 不会导致任何错误 查询结构良好,在主项目中(到目前为止我在这里称这个“DEV”)它们没有导致任何错误 测试中需要Sequence Generator

【讨论】:

以上是关于使用 H2 Database In-Memory 不会在单元测试中保留对象的主要内容,如果未能解决你的问题,请参考以下文章

Oracle 21版Database In-Memory LivaLabs实验(上)

EF Core In-Memory Database Provider

我的书《Oracle Database In-Memory架构与实践》出版了

TimesTen In-Memory Database

为啥选用Oracle TimesTen In-Memory Database

Oracle 21版Database In-Memory LivaLabs实验(下)