logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

test.rb (2831B)


  1. Rails.application.configure do
  2. # Settings specified here will take precedence over those in config/application.rb.
  3. # The test environment is used exclusively to run your application's
  4. # test suite. You never need to work with it otherwise. Remember that
  5. # your test database is "scratch space" for the test suite and is wiped
  6. # and recreated between test runs. Don't rely on the data there!
  7. config.cache_classes = true
  8. # Do not eager load code on boot. This avoids loading your whole application
  9. # just for the purpose of running a single test. If you are using a tool that
  10. # preloads Rails for running tests, you may have to set it to true.
  11. config.eager_load = false
  12. # Configure public file server for tests with Cache-Control for performance.
  13. config.public_file_server.enabled = true
  14. config.public_file_server.headers = {
  15. 'Cache-Control' => "public, max-age=#{1.hour.to_i}"
  16. }
  17. config.assets.digest = false
  18. # Show full error reports and disable caching.
  19. config.consider_all_requests_local = true
  20. config.action_controller.perform_caching = false
  21. # The default store, file_store is shared by processses parallely executed
  22. # and should not be used.
  23. config.cache_store = :memory_store
  24. # Raise exceptions instead of rendering exception templates.
  25. config.action_dispatch.show_exceptions = false
  26. # Disable request forgery protection in test environment.
  27. config.action_controller.allow_forgery_protection = false
  28. config.action_mailer.perform_caching = false
  29. config.action_mailer.default_options = { from: 'notifications@localhost' }
  30. # Tell Action Mailer not to deliver emails to the real world.
  31. # The :test delivery method accumulates sent emails in the
  32. # ActionMailer::Base.deliveries array.
  33. config.action_mailer.delivery_method = :test
  34. # Print deprecation notices to the stderr.
  35. config.active_support.deprecation = :stderr
  36. config.x.otp_secret = '100c7faeef00caa29242f6b04156742bf76065771fd4117990c4282b8748ff3d99f8fdae97c982ab5bd2e6756a159121377cce4421f4a8ecd2d67bd7749a3fb4'
  37. # Generate random VAPID keys
  38. vapid_key = Webpush.generate_key
  39. config.x.vapid_private_key = vapid_key.private_key
  40. config.x.vapid_public_key = vapid_key.public_key
  41. # Raises error for missing translations
  42. # config.action_view.raise_on_missing_translations = true
  43. config.i18n.default_locale = :en
  44. config.i18n.fallbacks = true
  45. end
  46. Paperclip::Attachment.default_options[:path] = "#{Rails.root}/spec/test_files/:class/:id_partition/:style.:extension"
  47. # set fake_data for pam, don't do real calls, just use fake data
  48. if ENV['PAM_ENABLED'] == 'true'
  49. Rpam2.fake_data =
  50. {
  51. usernames: Set['pam_user1', 'pam_user2'],
  52. servicenames: Set['pam_test', 'pam_test_controlled'],
  53. password: '123456',
  54. env: { email: 'pam@example.com' }
  55. }
  56. end