Softknobs
Testing with Gitlab a Phoenix app with legacy MySQL database
I am working on my first Phoenix application that uses an existing MySQL database (not created with Ecto). Examples for this use case are difficult to find online. I managed to have a build working but due to my lack of experience testing Phoenix apps, I don’t know if that configuration will work as the project evolves.
Has anybody any experience to share with such use case?
So far, my working solutions is:
gitlab-ci.yml
variables:
MYSQL_HOST: mysql
MYSQL_USER: root
MYSQL_DATABASE: edit_test
MYSQL_ROOT_PASSWORD: mysql
MIX_ENV: “test”Compile and test:
image: elixir:latest
services:
- mysql:5.7
script:
- apt-get update -q && apt-get install -qqy --no-install-recommends mysql-client
- mysql --user=root --password=“$MYSQL_ROOT_PASSWORD” --host=mysql < base_schema.sql
- mix local.rebar --force
- mix local.hex --force
- mix deps.get
- mix ecto.migrate
- mix test
test.exs
config :demo, Demo.Repo,
adapter: Ecto.Adapters.MySQL,
username: System.get_env(“MYSQL_USER”) || “root”,
password: System.get_env(“MYSQL_ROOT_PASSWORD”) || “root_dev_pwd”,
database: System.get_env(“MYSQL_DATABASE”) || “edit_test”,
hostname: System.get_env(“MYSQL_HOST”) || “localhost”,
show_sensitive_data_on_connection_error: true,
pool_size: 10,
pool: Ecto.Adapters.SQL.Sandbox
Thanks.
First Post!
dimitarvp
No better way of knowing than actually trying it.
Did you try your setup?
Popular in Questions
Other popular topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #advent-of-code
- #elixirconf-us
- #distillery
- #processes
- #forms
- #api
- #metaprogramming
- #security
- #performance








