import Config ## Import or set test configs for extensions import_config "activity_pub_test.exs" config :bonfire, Bonfire.Mailer, adapter: Bamboo.TestAdapter config :bonfire_search, disabled: true, disable_indexing: true ## Other general test config config :logger, level: :info, truncate: :infinity # Configure your database # db = "bonfire_test#{System.get_env("MIX_TEST_PARTITION")}" # # The MIX_TEST_PARTITION environment variable can be used # to provide built-in test partitioning in CI environment. # Run `mix help test` for more information. config :bonfire, Bonfire.Common.Repo, pool: Ecto.Adapters.SQL.Sandbox, pool_size: 60, # show_sensitive_data_on_connection_error: true, # database: db, slow_query_ms: 500, log: :info # Optionally run a 2nd endpoint for testing federation config :bonfire, Bonfire.Web.FakeRemoteEndpoint, server: true, url: [ host: "localhost", port: 4002 ], http: [ port: 4002 ], secret_key_base: System.get_env("SECRET_KEY_BASE"), live_view: [signing_salt: System.get_env("SIGNING_SALT")], render_errors: [view: Bonfire.UI.Common.ErrorView, accepts: ~w(html json), layout: false] test_instance? = System.get_env("TEST_INSTANCE") == "yes" config :tesla, adapter: if(test_instance?, do: Tesla.Adapter.Hackney, else: Tesla.Mock) oban_mode = if(test_instance?, do: :inline, else: :manual) config :bonfire, Oban, testing: oban_mode config :activity_pub, Oban, testing: oban_mode config :activity_pub, :disable_cache, test_instance? if test_instance? do config :logger, :console, format: "[$level $metadata] $message\n", metadata: [:instance, :action] else config :logger, :console, format: "[$level $metadata] $message\n", metadata: [:action] end config :pbkdf2_elixir, :rounds, 1 config :mix_test_interactive, clear: true config :paginator, Paginator.Repo, pool: Ecto.Adapters.SQL.Sandbox, username: System.get_env("POSTGRES_USER", "postgres"), password: System.get_env("POSTGRES_PASSWORD", "postgres"), hostname: System.get_env("POSTGRES_HOST", "localhost")