2017-03-17 09:09:58 -07:00
|
|
|
use Mix.Config
|
|
|
|
|
|
|
|
# We don't run a server during test. If one is required,
|
|
|
|
# you can enable the server option below.
|
|
|
|
config :pleroma, Pleroma.Web.Endpoint,
|
|
|
|
http: [port: 4001],
|
2018-12-17 08:09:06 -08:00
|
|
|
url: [port: 4001],
|
|
|
|
server: true
|
2017-03-17 09:09:58 -07:00
|
|
|
|
2018-12-15 11:38:39 -08:00
|
|
|
# Disable captha for tests
|
|
|
|
config :pleroma, Pleroma.Captcha,
|
2018-12-22 12:07:44 -08:00
|
|
|
# It should not be enabled for automatic tests
|
|
|
|
enabled: false,
|
2018-12-15 12:39:23 -08:00
|
|
|
# A fake captcha service for tests
|
|
|
|
method: Pleroma.Captcha.Mock
|
2018-12-15 11:38:39 -08:00
|
|
|
|
2017-03-17 09:09:58 -07:00
|
|
|
# Print only warnings and errors during test
|
2019-11-20 09:55:30 -08:00
|
|
|
config :logger, :console,
|
2019-11-20 07:14:27 -08:00
|
|
|
level: :warn,
|
2019-11-20 09:18:42 -08:00
|
|
|
format: "\n[$level] $message\n"
|
2017-03-17 09:09:58 -07:00
|
|
|
|
2019-06-05 03:02:13 -07:00
|
|
|
config :pleroma, :auth, oauth_consumer_strategies: []
|
|
|
|
|
2019-03-15 02:11:13 -07:00
|
|
|
config :pleroma, Pleroma.Upload, filters: [], link_name: false
|
2019-03-14 12:02:48 -07:00
|
|
|
|
2018-11-23 08:40:45 -08:00
|
|
|
config :pleroma, Pleroma.Uploaders.Local, uploads: "test/uploads"
|
2017-03-28 16:39:01 -07:00
|
|
|
|
2019-07-09 22:34:21 -07:00
|
|
|
config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Test, enabled: true
|
2018-12-12 05:28:00 -08:00
|
|
|
|
2019-04-10 03:57:41 -07:00
|
|
|
config :pleroma, :instance,
|
|
|
|
email: "admin@example.com",
|
2019-06-07 08:16:56 -07:00
|
|
|
notify_email: "noreply@example.com",
|
2019-07-08 23:30:51 -07:00
|
|
|
skip_thread_containment: false,
|
2019-07-13 09:17:57 -07:00
|
|
|
federating: false,
|
2019-08-12 00:35:34 -07:00
|
|
|
external_user_synchronization: false,
|
|
|
|
static_dir: "test/instance_static/"
|
2019-04-10 03:57:41 -07:00
|
|
|
|
2019-07-17 15:58:52 -07:00
|
|
|
config :pleroma, :activitypub, sign_object_fetches: false
|
|
|
|
|
2017-03-17 09:09:58 -07:00
|
|
|
# Configure your database
|
|
|
|
config :pleroma, Pleroma.Repo,
|
|
|
|
adapter: Ecto.Adapters.Postgres,
|
|
|
|
username: "postgres",
|
|
|
|
password: "postgres",
|
|
|
|
database: "pleroma_test",
|
2017-11-02 09:45:33 -07:00
|
|
|
hostname: System.get_env("DB_HOST") || "localhost",
|
2017-03-17 09:09:58 -07:00
|
|
|
pool: Ecto.Adapters.SQL.Sandbox
|
2017-03-20 09:45:47 -07:00
|
|
|
|
|
|
|
# Reduce hash rounds for testing
|
2018-05-20 09:05:34 -07:00
|
|
|
config :pbkdf2_elixir, rounds: 1
|
2017-04-22 04:44:21 -07:00
|
|
|
|
2018-11-30 21:26:59 -08:00
|
|
|
config :tesla, adapter: Tesla.Mock
|
2019-06-25 12:25:37 -07:00
|
|
|
|
|
|
|
config :pleroma, :rich_media,
|
|
|
|
enabled: false,
|
|
|
|
ignore_hosts: [],
|
|
|
|
ignore_tld: ["local", "localdomain", "lan"]
|
2018-05-04 14:00:18 -07:00
|
|
|
|
2018-12-06 05:17:00 -08:00
|
|
|
config :web_push_encryption, :vapid_details,
|
|
|
|
subject: "mailto:administrator@example.com",
|
|
|
|
public_key:
|
|
|
|
"BLH1qVhJItRGCfxgTtONfsOKDc9VRAraXw-3NsmjMngWSh7NxOizN6bkuRA7iLTMPS82PjwJAr3UoK9EC1IFrz4",
|
|
|
|
private_key: "_-XZ0iebPrRfZ_o0-IatTdszYa8VCH1yLN-JauK7HHA"
|
|
|
|
|
2019-03-06 05:20:12 -08:00
|
|
|
config :web_push_encryption, :http_client, Pleroma.Web.WebPushHttpClientMock
|
|
|
|
|
2019-08-01 07:28:00 -07:00
|
|
|
config :pleroma, Oban,
|
|
|
|
queues: false,
|
|
|
|
prune: :disabled
|
|
|
|
|
2019-12-11 11:57:33 -08:00
|
|
|
config :pleroma, Pleroma.Scheduler,
|
|
|
|
jobs: [],
|
|
|
|
global: false
|
2019-08-31 09:08:56 -07:00
|
|
|
|
2019-04-03 08:55:04 -07:00
|
|
|
config :pleroma, Pleroma.ScheduledActivity,
|
|
|
|
daily_user_limit: 2,
|
|
|
|
total_user_limit: 3,
|
|
|
|
enabled: false
|
|
|
|
|
2019-07-11 06:55:31 -07:00
|
|
|
config :pleroma, :rate_limit,
|
|
|
|
search: [{1000, 30}, {1000, 30}],
|
2019-07-16 14:44:50 -07:00
|
|
|
app_account_creation: {10_000, 5},
|
2019-08-20 08:10:36 -07:00
|
|
|
password_reset: {1000, 30},
|
|
|
|
ap_routes: nil
|
2019-05-14 13:16:34 -07:00
|
|
|
|
2019-05-15 22:49:40 -07:00
|
|
|
config :pleroma, :http_security, report_uri: "https://endpoint.com"
|
|
|
|
|
2019-05-17 13:28:58 -07:00
|
|
|
config :pleroma, :http, send_user_agent: false
|
|
|
|
|
2019-05-17 06:06:51 -07:00
|
|
|
rum_enabled = System.get_env("RUM_ENABLED") == "true"
|
|
|
|
config :pleroma, :database, rum_enabled: rum_enabled
|
|
|
|
IO.puts("RUM enabled: #{rum_enabled}")
|
|
|
|
|
2019-06-03 17:07:49 -07:00
|
|
|
config :joken, default_signer: "yU8uHKq+yyAkZ11Hx//jcdacWc8yQ1bxAAGrplzB0Zwwjkp35v0RK9SO8WTPr6QZ"
|
|
|
|
|
2019-07-09 09:54:13 -07:00
|
|
|
config :pleroma, Pleroma.ReverseProxy.Client, Pleroma.ReverseProxy.ClientMock
|
|
|
|
|
2019-12-12 03:04:52 -08:00
|
|
|
config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
|
|
|
|
|
2019-07-22 00:10:30 -07:00
|
|
|
if File.exists?("./config/test.secret.exs") do
|
2018-05-04 14:00:18 -07:00
|
|
|
import_config "test.secret.exs"
|
2019-07-22 00:10:30 -07:00
|
|
|
else
|
|
|
|
IO.puts(
|
|
|
|
"You may want to create test.secret.exs to declare custom database connection parameters."
|
|
|
|
)
|
2018-05-04 14:00:18 -07:00
|
|
|
end
|