Merge branch 'removing-fed-sockets-settings' into 'develop'
[akkoma] / config / test.exs
1 use Mix.Config
2
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,
6 http: [port: 4001],
7 url: [port: 4001],
8 server: true
9
10 # Disable captha for tests
11 config :pleroma, Pleroma.Captcha,
12 # It should not be enabled for automatic tests
13 enabled: false,
14 # A fake captcha service for tests
15 method: Pleroma.Captcha.Mock
16
17 # Print only warnings and errors during test
18 config :logger, :console,
19 level: :warn,
20 format: "\n[$level] $message\n"
21
22 config :pleroma, :auth, oauth_consumer_strategies: []
23
24 config :pleroma, Pleroma.Upload,
25 filters: [],
26 link_name: false,
27 default_description: :filename
28
29 config :pleroma, Pleroma.Uploaders.Local, uploads: "test/uploads"
30
31 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Test, enabled: true
32
33 config :pleroma, :instance,
34 email: "admin@example.com",
35 notify_email: "noreply@example.com",
36 skip_thread_containment: false,
37 federating: false,
38 external_user_synchronization: false,
39 static_dir: "test/instance_static/"
40
41 config :pleroma, :activitypub, sign_object_fetches: false
42
43 # Configure your database
44 config :pleroma, Pleroma.Repo,
45 adapter: Ecto.Adapters.Postgres,
46 username: "postgres",
47 password: "postgres",
48 database: "pleroma_test",
49 hostname: System.get_env("DB_HOST") || "localhost",
50 pool: Ecto.Adapters.SQL.Sandbox
51
52 # Reduce hash rounds for testing
53 config :pbkdf2_elixir, rounds: 1
54
55 config :tesla, adapter: Tesla.Mock
56
57 config :pleroma, :rich_media,
58 enabled: false,
59 ignore_hosts: [],
60 ignore_tld: ["local", "localdomain", "lan"]
61
62 config :pleroma, :instance,
63 multi_factor_authentication: [
64 totp: [
65 # digits 6 or 8
66 digits: 6,
67 period: 30
68 ],
69 backup_codes: [
70 number: 2,
71 length: 6
72 ]
73 ]
74
75 config :web_push_encryption, :vapid_details,
76 subject: "mailto:administrator@example.com",
77 public_key:
78 "BLH1qVhJItRGCfxgTtONfsOKDc9VRAraXw-3NsmjMngWSh7NxOizN6bkuRA7iLTMPS82PjwJAr3UoK9EC1IFrz4",
79 private_key: "_-XZ0iebPrRfZ_o0-IatTdszYa8VCH1yLN-JauK7HHA"
80
81 config :pleroma, Oban,
82 queues: false,
83 crontab: false,
84 plugins: false
85
86 config :pleroma, Pleroma.ScheduledActivity,
87 daily_user_limit: 2,
88 total_user_limit: 3,
89 enabled: false
90
91 config :pleroma, :rate_limit, %{}
92
93 config :pleroma, :http_security, report_uri: "https://endpoint.com"
94
95 config :pleroma, :http, send_user_agent: false
96
97 rum_enabled = System.get_env("RUM_ENABLED") == "true"
98 config :pleroma, :database, rum_enabled: rum_enabled
99 IO.puts("RUM enabled: #{rum_enabled}")
100
101 config :joken, default_signer: "yU8uHKq+yyAkZ11Hx//jcdacWc8yQ1bxAAGrplzB0Zwwjkp35v0RK9SO8WTPr6QZ"
102
103 config :pleroma, Pleroma.ReverseProxy.Client, Pleroma.ReverseProxy.ClientMock
104
105 config :pleroma, :modules, runtime_dir: "test/fixtures/modules"
106
107 config :pleroma, Pleroma.Gun, Pleroma.GunMock
108
109 config :pleroma, Pleroma.Emails.NewUsersDigestEmail, enabled: true
110
111 config :pleroma, Pleroma.Web.Plugs.RemoteIp, enabled: false
112
113 config :pleroma, Pleroma.Web.ApiSpec.CastAndValidate, strict: true
114
115 config :pleroma, Pleroma.Uploaders.S3,
116 bucket: nil,
117 streaming_enabled: true,
118 public_endpoint: nil
119
120 config :tzdata, :autoupdate, :disabled
121
122 config :pleroma, :mrf, policies: []
123
124 if File.exists?("./config/test.secret.exs") do
125 import_config "test.secret.exs"
126 else
127 IO.puts(
128 "You may want to create test.secret.exs to declare custom database connection parameters."
129 )
130 end