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, :auth, oauth_consumer_strategies: []
22 config :pleroma, Pleroma.Upload, filters: [], link_name: false
24 config :pleroma, Pleroma.Uploaders.Local, uploads: "test/uploads"
26 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Test
28 config :pleroma, :instance,
29 email: "admin@example.com",
30 notify_email: "noreply@example.com"
32 # Configure your database
33 config :pleroma, Pleroma.Repo,
34 adapter: Ecto.Adapters.Postgres,
37 database: "pleroma_test",
38 hostname: System.get_env("DB_HOST") || "localhost",
39 pool: Ecto.Adapters.SQL.Sandbox
41 # Reduce hash rounds for testing
42 config :pbkdf2_elixir, rounds: 1
44 config :tesla, adapter: Tesla.Mock
45 config :pleroma, :rich_media, enabled: false
47 config :web_push_encryption, :vapid_details,
48 subject: "mailto:administrator@example.com",
50 "BLH1qVhJItRGCfxgTtONfsOKDc9VRAraXw-3NsmjMngWSh7NxOizN6bkuRA7iLTMPS82PjwJAr3UoK9EC1IFrz4",
51 private_key: "_-XZ0iebPrRfZ_o0-IatTdszYa8VCH1yLN-JauK7HHA"
53 config :web_push_encryption, :http_client, Pleroma.Web.WebPushHttpClientMock
55 config :pleroma_job_queue, disabled: true
57 config :pleroma, Pleroma.ScheduledActivity,
62 config :pleroma, :app_account_creation, max_requests: 5
64 config :pleroma, :http_security, report_uri: "https://endpoint.com"
66 config :pleroma, :http, send_user_agent: false
68 rum_enabled = System.get_env("RUM_ENABLED") == "true"
69 config :pleroma, :database, rum_enabled: rum_enabled
70 IO.puts("RUM enabled: #{rum_enabled}")
73 import_config "test.secret.exs"
77 "You may want to create test.secret.exs to declare custom database connection parameters."