Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Open sidebar
Kazarma
MatrixAppService.ex
Commits
e1954036
Verified
Commit
e1954036
authored
Dec 09, 2020
by
Pierre de Lacroix
Browse files
fix tests in CI
parent
63842148
Pipeline
#227291171
passed with stage
in 3 minutes and 52 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
35 additions
and
16 deletions
+35
-16
.gitlab-ci.yml
.gitlab-ci.yml
+10
-0
config/test.exs
config/test.exs
+3
-3
test/support/conn_case.ex
test/support/conn_case.ex
+6
-0
test/support/data_case.ex
test/support/data_case.ex
+15
-13
test/test_helper.exs
test/test_helper.exs
+1
-0
No files found.
.gitlab-ci.yml
View file @
e1954036
...
...
@@ -11,8 +11,18 @@ before_script:
test
:
stage
:
static_analysis
services
:
-
postgres:latest
variables
:
POSTGRES_DB
:
matrix_app_service_test
POSTGRES_USER
:
postgres
POSTGRES_PASSWORD
:
postgres
POSTGRES_HOST
:
postgres
POSTGRES_HOST_AUTH_METHOD
:
trust
script
:
-
MIX_ENV=test mix compile
-
MIX_ENV=test mix ecto.create
-
MIX_ENV=test mix ecto.migrate
-
mix test --cover
artifacts
:
when
:
always
...
...
config/test.exs
View file @
e1954036
...
...
@@ -6,10 +6,10 @@ use Mix.Config
# to provide built-in test partitioning in CI environment.
# Run `mix help test` for more information.
config
:matrix_app_service
,
MatrixAppService
.
Repo
,
username:
"postgres"
,
password:
"postgres"
,
username:
System
.
get_env
(
"POSTGRES_USER"
)
||
"postgres"
,
password:
System
.
get_env
(
"POSTGRES_PASSWORD"
)
||
"postgres"
,
database:
"matrix_app_service_test
#{
System
.
get_env
(
"MIX_TEST_PARTITION"
)
}
"
,
hostname:
"localhost"
,
hostname:
System
.
get_env
(
"POSTGRES_HOST"
)
||
"localhost"
,
pool:
Ecto
.
Adapters
.
SQL
.
Sandbox
# We don't run a server during test. If one is required,
...
...
test/support/conn_case.ex
View file @
e1954036
...
...
@@ -32,6 +32,12 @@ defmodule MatrixAppServiceWeb.ConnCase do
end
setup
tags
do
:ok
=
Ecto
.
Adapters
.
SQL
.
Sandbox
.
checkout
(
MatrixAppService
.
Repo
)
unless
tags
[
:async
]
do
Ecto
.
Adapters
.
SQL
.
Sandbox
.
mode
(
MatrixAppService
.
Repo
,
{
:shared
,
self
()})
end
conn
=
if
tags
[
:authenticated
]
do
Phoenix
.
ConnTest
.
build_conn
(
:get
,
"/"
,
%{
...
...
test/support/data_case.ex
View file @
e1954036
...
...
@@ -2,20 +2,20 @@ defmodule MatrixAppService.DataCase do
@moduledoc
"""
This module defines the setup for tests requiring
access to the application's data layer.
You may define functions here to be used as helpers in
your tests.
Finally, if the test case interacts with the database,
it cannot be async. For this reason, every test runs
inside a transaction which is reset at the beginning
of the test unless the test case is marked as async.
we enable the SQL sandbox, so changes done to the database
are reverted at the end of every test. If you are using
PostgreSQL, you can even run database tests asynchronously
by setting `use MatrixAppService.DataCase, async: true`, although
this option is not recommended for other databases.
"""
use
ExUnit
.
CaseTemplate
alias
Ecto
.
Adapters
.
SQL
.
Sandbox
alias
Ecto
.
Changeset
alias
MatrixAppService
.
Repo
using
do
quote
do
alias
MatrixAppService
.
Repo
...
...
@@ -28,25 +28,27 @@ defmodule MatrixAppService.DataCase do
end
setup
tags
do
:ok
=
Sandbox
.
checkout
(
Repo
)
:ok
=
Ecto
.
Adapters
.
SQL
.
Sandbox
.
checkout
(
MatrixAppService
.
Repo
)
unless
tags
[
:async
]
do
Sandbox
.
mode
(
Repo
,
{
:shared
,
self
()})
Ecto
.
Adapters
.
SQL
.
Sandbox
.
mode
(
MatrixAppService
.
Repo
,
{
:shared
,
self
()})
end
:ok
end
@doc
"""
A helper that transform changeset errors to a map of messages.
A helper that transforms changeset errors into a map of messages.
assert {:error, changeset} = Accounts.create_user(%{password: "short"})
assert "password is too short" in errors_on(changeset).password
assert %{password: ["password is too short"]} = errors_on(changeset)
"""
def
errors_on
(
changeset
)
do
Changeset
.
traverse_errors
(
changeset
,
fn
{
message
,
opts
}
->
Enum
.
reduce
(
opts
,
message
,
fn
{
key
,
value
},
acc
->
String
.
replace
(
acc
,
"%{
#{
key
}
}"
,
to_string
(
value
)
)
Ecto
.
Changeset
.
traverse_errors
(
changeset
,
fn
{
message
,
opts
}
->
Regex
.
replace
(
~r"%{(\w+)}"
,
message
,
fn
_
,
key
->
opts
|>
Keyword
.
get
(
String
.
to_existing_atom
(
key
),
key
)
|>
to_string
()
end
)
end
)
end
...
...
test/test_helper.exs
View file @
e1954036
Ecto
.
Adapters
.
SQL
.
Sandbox
.
mode
(
MatrixAppService
.
Repo
,
:manual
)
ExUnit
.
configure
(
formatters:
[
JUnitFormatter
,
ExUnit
.
CLIFormatter
])
ExUnit
.
start
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment