1

我在环境配置方面遇到了一些问题。对于某些测试,我们需要一个真实的数据库来进行集成测试。为了在每次开始测试时都有一个干净的数据库,我们认为我们只需更改已加载的配置文件中的 dbCreate 属性:

配置-integration.properties:

# connection
db.name=integration_test
db.host=127.0.0.1
db.port=3306
dataSource.driverClassName=com.mysql.jdbc.Driver
dataSource.url=jdbc:mysql://${db.host}:${db.port}/${db.name}?useUnicode=yes&characterEncoding=UTF-8&autoReconnect=true
dataSource.dialect=org.hibernate.dialect.MySQL5InnoDBDialect

# configuration
dataSource.username=foo
dataSource.password=bar
dataSource.dbCreate=create-drop
dataSource.pooled=true
dataSource.properties.maxActive=50
dataSource.properties.maxIdle=25
dataSource.properties.minIdle=5
dataSource.properties.initialSize=5
dataSource.properties.minEvictableIdleTimeMillis=60000
dataSource.properties.timeBetweenEvictionRunsMillis=60000
dataSource.properties.maxWait=10000
dataSource.properties.validationQuery=/* ping */

配置.groovy:

environment {
....
integration {
    log4j = {
        root { debug 'stdout' }
        warn 'org.apache'
        warn 'grails.spring'
        info 'org.codehaus.groovy.grails'
        warn 'net.sf.ehcache'
        warn 'org.hibernate'
    }

    grails.serverURL = "http://www.foobar.com"

    if (!grails.config.locations || !(grails.config.locations instanceof List)) {
        grails.config.locations = []
    }
    // loading default configuration
    grails.config.locations << "classpath:app/config-integration.properties"

    grails.gorm.failOnError = true
}
....
}

现在的问题是,这根本行不通。未创建表,因此测试因 SQL 异常而终止。如果我将其更改为不正确的用户名/密码,甚至没有关于错误用户名/密码的消息。因此,当 grails/hibernate 应该在数据库中创建表时,配置似乎没有加载。

编辑:我忘记了什么:如果我在 Config.groovy 本身中定义数据源,它就可以工作。

有谁知道我在这里做错了什么?

提前非常感谢!

4

2 回答 2

0

所以,我不知道为什么,但看起来在 grails 应用程序实际启动并加载配置之前,Hibernate 完成了表格删除和创建工作。因此,我现在使用不同的方法并“手动”加载配置并设置属性。现在看起来像这样并且工作正常:

integration {
    log4j = {
        root { debug 'stdout' }
        warn 'org.apache'
        warn 'grails.spring'
        info 'org.codehaus.groovy.grails'
        warn 'net.sf.ehcache'
        warn 'org.hibernate'
    }

    def props = new Properties()

    new File("grails-app/conf/app/appconfig-integration-tests.properties").withInputStream {
        stream -> props.load(stream)
    }

    def user_file = new File("grails-app/conf/app/appconfig-${System.getProperty("user.name")}.properties")
    if(user_file.exists()) {
        user_file.withInputStream {
            stream -> props.load(stream)
        }
    }

    dataSource {
        username = props.get("dataSource.username")
        password = props.get("dataSource.password")
        dbCreate = props.get("dataSource.dbCreate")
        driverClassName = props.get("dataSource.driverClassName")
        dialect = props.get("dataSource.dialect")
        url = props.get("dataSource.url")
    }

    grails.serverURL = "http://www.foobar.com"

    grails.gorm.failOnError = true
}
于 2013-04-18T19:30:55.480 回答
0

这可能是我正在寻找的一个蹩脚的澄清,但你在使用

environment{
  test{
   ....
  }
}

或者

environment{
  integration{
   ....
  }
}

配置文件中的DSL?

如果我没记错的话,我们只有development,testproductionenvironment DSLs 可用。

于 2013-04-17T17:19:34.157 回答