Sha256: b1452889589181d8a083abe8ed4448f49e25113aa60552e4db3327d39b62db15

Contents?: true

Size: 1.02 KB

Versions: 58

Compression:

Stored size: 1.02 KB

Contents

module NotificationHelpers
  def notification_event(args={})
    args = {
      :name => 'process_action.action_controller',
      :start => fixed_time,
      :ending => fixed_time + 0.1,
      :tid => '1',
      :payload => create_payload
    }.merge(args)
    ActiveSupport::Notifications::Event.new(
      args[:name], args[:start], args[:ending], args[:tid], args[:payload]
    )
  end

  def create_payload(args={})
    {
      :path => '/blog',
      :action => 'show',
      :controller => 'BlogPostsController',
      :params => {
        'controller' => 'blog_posts',
        'action' => 'show',
        'id' => '1'
      },
      :request_format => 'html',
      :request_method => "GET",
      :status => '200',
      :view_runtime => 500,
      :db_runtime => 500
    }.merge(args)
  end

  def create_background_payload(args={})
    {
      :class => 'BackgroundJob',
      :method => 'perform',
      :priority => 1,
      :attempts => 0,
      :queue => 'default',
      :queue_start => fixed_time - 10.0,
    }.merge(args)
  end
end

Version data entries

58 entries across 58 versions & 1 rubygems

Version Path
appsignal-0.12.beta.31 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.30 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.29 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.28 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.27 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.26 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.25 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.24 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.23 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.22 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.21 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.20 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.19 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.18 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.17 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.16 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.15 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.14 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.13 spec/support/helpers/notification_helpers.rb
appsignal-0.12.beta.12 spec/support/helpers/notification_helpers.rb