0

我一直试图让我们的测试通过我们的 Gitlab CI,但不能。我正在使用 Gitlab 附带的库存管道配置。我所要做的就是提供 gitlab yaml 文件来配置 CI。

这就是我们正在使用的

image: maven:3.5.0-jdk-8-alpine

services:
  - postgres:latest

variables:
  POSTGRES_DB: my_test_db
  POSTGRES_USER: my_test_user
  POSTGRES_PASSWORD: ""
  MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=WARN -Dorg.slf4j.simpleLogger.showDateTime=true -Djava.awt.headless=true"
  MAVEN_CLI_OPTS: "--batch-mode --errors --fail-at-end --show-version -DinstallAtEnd=true -DdeployAtEnd=true"
  ACTIVE_ENV: test

connect:
  image: postgres
  script:
  # official way to provide password to psql: http://www.postgresql.org/docs/9.3/static/libpq-envars.html
  - export PGPASSWORD=$POSTGRES_PASSWORD
  - psql -h "postgres" -U "$POSTGRES_USER" -d "$POSTGRES_DB" -c "SELECT 'OK' AS status;"

stages:
  - test

test:
  stage: test
  script:
    - "mvn -Denvironments=test -B db-migrator:migrate; mvn -Denvironments=test -DACTIVE_ENV=test -B test"

在测试运行之前,一切都完美无缺。然后他们都错误地出现类似的消息:

383 [main] WARN org.javalite.activeweb.DBSpecHelper - no DB connections are configured, none opened
456 [main] WARN org.javalite.activeweb.DBSpecHelper - no DB connections are configured, none opened
Tests run: 2, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 0.528 sec <<< FAILURE! - in app.models.RoleTest
validatePresenceOfUsers(app.models.RoleTest)  Time elapsed: 0.071 sec  <<< ERROR!
org.javalite.activejdbc.DBException: Failed to retrieve metadata from DB, connection: 'default' is not available

我有一个database.properties已签入的文件,仅用于测试(我们的开发和生产环境使用 jndi)。它看起来像这样:

test.driver=org.postgresql.Driver
test.username=my_test_user
test.password=
test.url=jdbc:postgresql://postgres/edv_test

同样,迁移使用所有这些完全相同的配置运行。我只是无法弄清楚为什么测试不会运行。我理解为什么它说没有默认数据库,但我不明白为什么它没有看到测试设置并按预期配置该连接。

4

1 回答 1

0

所以你知道, environments像这样的 Maven 标志:mvn test -Denvironments=test仅适用于 DB-Migrator,不适用于测试。任何处于标准运行模式或作为测试的 JavaLite 应用程序,它都会查看ACTIVE_ENV. 如果未设置,它将假定development. 在测试模式下,它将查看http://javalite.io/database_configuration#property-file-configuration中的database.properties块。将其视为“开发”环境,“测试”模式。development.test.xxx=yyy

此外,DbConfig不参与测试,因为测试中的数据库连接有特殊处理(回滚事务),请参阅:http: //javalite.io/testing_with_db_connection

于 2018-08-21T20:15:12.573 回答