3 # We don't run a server during test. If one is required,
4 # you can enable the server option below.
5 config :pleroma, Pleroma.Web.Endpoint,
10 # Disable captha for tests
11 config :pleroma, Pleroma.Captcha,
12 # It should not be enabled for automatic tests
14 # A fake captcha service for tests
15 method: Pleroma.Captcha.Mock
17 # Print only warnings and errors during test
18 config :logger, level: :warn
20 config :pleroma, Pleroma.Upload, filters: [], link_name: false
22 config :pleroma, Pleroma.Uploaders.Local, uploads: "test/uploads"
24 config :pleroma, Pleroma.Mailer, adapter: Swoosh.Adapters.Test
26 # Configure your database
27 config :pleroma, Pleroma.Repo,
28 adapter: Ecto.Adapters.Postgres,
31 database: "pleroma_test",
32 hostname: System.get_env("DB_HOST") || "localhost",
33 pool: Ecto.Adapters.SQL.Sandbox
35 # Reduce hash rounds for testing
36 config :pbkdf2_elixir, rounds: 1
38 config :pleroma, :websub, Pleroma.Web.WebsubMock
39 config :pleroma, :ostatus, Pleroma.Web.OStatusMock
40 config :tesla, adapter: Tesla.Mock
41 config :pleroma, :rich_media, enabled: false
43 config :web_push_encryption, :vapid_details,
44 subject: "mailto:administrator@example.com",
46 "BLH1qVhJItRGCfxgTtONfsOKDc9VRAraXw-3NsmjMngWSh7NxOizN6bkuRA7iLTMPS82PjwJAr3UoK9EC1IFrz4",
47 private_key: "_-XZ0iebPrRfZ_o0-IatTdszYa8VCH1yLN-JauK7HHA"
49 config :web_push_encryption, :http_client, Pleroma.Web.WebPushHttpClientMock
51 config :pleroma, Pleroma.Jobs, testing: [max_jobs: 2]
54 import_config "test.secret.exs"
58 "You may want to create test.secret.exs to declare custom database connection parameters."