test.rb 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. config.assets.digest = false
  13. # Show full error reports and disable caching.
  14. config.consider_all_requests_local = true
  15. config.action_controller.perform_caching = false
  16. # The default store, file_store is shared by processes parallelly executed
  17. # and should not be used.
  18. config.cache_store = :memory_store
  19. # Raise exceptions instead of rendering exception templates.
  20. config.action_dispatch.show_exceptions = false
  21. # Disable request forgery protection in test environment.
  22. config.action_controller.allow_forgery_protection = false
  23. config.action_mailer.perform_caching = false
  24. config.action_mailer.default_options = { from: 'notifications@localhost' }
  25. # Tell Action Mailer not to deliver emails to the real world.
  26. # The :test delivery method accumulates sent emails in the
  27. # ActionMailer::Base.deliveries array.
  28. config.action_mailer.delivery_method = :test
  29. # Print deprecation notices to the stderr.
  30. config.active_support.deprecation = :stderr
  31. config.x.otp_secret = '100c7faeef00caa29242f6b04156742bf76065771fd4117990c4282b8748ff3d99f8fdae97c982ab5bd2e6756a159121377cce4421f4a8ecd2d67bd7749a3fb4'
  32. # Generate random VAPID keys
  33. vapid_key = Webpush.generate_key
  34. config.x.vapid_private_key = vapid_key.private_key
  35. config.x.vapid_public_key = vapid_key.public_key
  36. # Raises error for missing translations
  37. # config.action_view.raise_on_missing_translations = true
  38. config.i18n.default_locale = :en
  39. config.i18n.fallbacks = true
  40. end
  41. Paperclip::Attachment.default_options[:path] = "#{Rails.root}/spec/test_files/:class/:id_partition/:style.:extension"
  42. # set fake_data for pam, don't do real calls, just use fake data
  43. if ENV['PAM_ENABLED'] == 'true'
  44. Rpam2.fake_data =
  45. {
  46. usernames: Set['pam_user1', 'pam_user2'],
  47. servicenames: Set['pam_test', 'pam_test_controlled'],
  48. password: '123456',
  49. env: { email: 'pam@example.com' }
  50. }
  51. end
  52. # Catch serialization warnings early
  53. Sidekiq.strict_args!