由于" hstore"而CircleCI测试失败Postgres扩展未安装

时间:2018-01-23 22:36:01

标签: bash postgresql docker yaml circleci

我试图让某个承诺通过CircleCI上的测试,但我仍然试图解决当地环境的一些差异。这是./circleci/config.yml文件:

version: 2
jobs:
  build:
    working_directory: ~/lucy/lucy_web/
    docker:
      - image: python:3.6.0
        environment:
          DATABASE_URL: postgresql://my_app:my_password@localhost/my_db?sslmode=disable
      - image: jannkleen/docker-postgres-gis-hstore
        environment:
          POSTGRES_USER: my_app
          POSTGRES_DB: my_db
          POSTGRES_PASSWORD: my_password
    steps:
      - checkout
      - restore_cache:
          key: deps1-{{ .Branch }}-{{ checksum "lucy-web/requirements.txt" }}
      - run:
          name: Install Python deps in a venv
          command: |
            cd lucy-web
            python3 -m venv venv
            . venv/bin/activate
            pip3 install -r requirements.txt
      - save_cache:
          key: deps1-{{ .Branch }}-{{ checksum "lucy-web/requirements.txt" }}
          paths:
            - "venv"
      - run:
          command: |
            cd lucy-web
            source venv/bin/activate
            python manage.py compilescss --verbosity 0
            python manage.py collectstatic --clear --no-input --verbosity 0
            python manage.py makemigrations --no-input --verbosity 0
            python manage.py migrate --no-input --verbosity 0
            python manage.py test
      - store_artifacts:
          path: test-reports/
          destination: tr1
      - store_test_results:
          path: test-reports/

问题是由于hstore类型不存在而导致测试错误:

django.db.utils.ProgrammingError: type "hstore" does not exist
LINE 1: ..., "options" varchar(255)[] NOT NULL, "conditions" hstore NOT...
                                                             ^

Exited with code 1

在我的本地计算机上,我通过运行psql my_db后跟create extension hstore;来解决此问题。查看PostgreSQL映像的源代码(https://github.com/JannKleen/docker-postgres-gis-hstore),我相信它运行以下bash脚本:

#!/bin/sh
POSTGRES="gosu postgres"

echo "******CREATING EXTENSIONS******"

${POSTGRES} psql -d postgres -c "UPDATE pg_database SET datallowconn = TRUE WHERE datname = 'template0';"
${POSTGRES} psql -d postgres -c "UPDATE pg_database SET datallowconn = TRUE WHERE datname = 'template1';"
${POSTGRES} psql -d template1 -c "CREATE EXTENSION IF NOT EXISTS hstore;"
${POSTGRES} psql -d template1 -c "CREATE EXTENSION IF NOT EXISTS postgis;"
${POSTGRES} psql -d template1 -c "CREATE EXTENSION IF NOT EXISTS postgis_topology;"

echo ""
echo "******DATABASE EXTENSIONS******"

据我了解,如果扩展名是在template1数据库中创建的,那么它也应该应用my_db数据库,对吗? (参见https://www.postgresql.org/docs/9.5/static/manage-ag-templatedbs.html

如何解决此错误?

1 个答案:

答案 0 :(得分:0)

我遇到了类似的问题,这就是我解决它的方法。我的应用程序是一个节点应用程序,但基本的想法应该是相同的。除了Postgres设置之外,我已经删除了我项目的任何特定内容。

version: 2

jobs:
  build:
    docker:
      - image: circleci/postgres:10.3-alpine
        environment:
          - POSTGRES_USER: root
          - POSTGRES_PASS: test
          - POSTGRES_DB: circle-test

    steps:
      - checkout

      - run:
          name: Postgres Client
          command: sudo apt install postgresql-client

      - run:
          name: Stash the PG Password
          command: echo "test" > .pgpass

      - run:
          name: Waiting for PostgreSQL to start
          command: |
            for i in `seq 1 10`;
            do
              nc -z localhost 5432 && echo Success && exit 0
              echo -n .
              sleep 2
            done
            echo Failed waiting for Postgres && exit 1

      - run:
          name: Enable hstore in Postgres
          command: psql -U root -d circle-test -h localhost -p 5432 -c "CREATE EXTENSION IF NOT EXISTS hstore;"