Sha256: 60253e8ace86a9960d6430d9e908be9ccb482b966b19d40a452758d2ea903d3b

Contents?: true

Size: 1.37 KB

Versions: 5

Compression:

Stored size: 1.37 KB

Contents

require 'airbrake/rails/javascript_notifier'
require 'ostruct'

class JavascriptNotifierTest < Test::Unit::TestCase
  module FakeRenderer
    def javascript_tag(text)
      "<script>#{text}</script>"
    end
    def escape_javascript(text)
      "ESC#{text}ESC"
    end
  end

  class FakeController
    def self.helper_method(*args)
    end

    include Airbrake::Rails::JavascriptNotifier

    def action_name
      "action"
    end

    def controller_name
      "controller"
    end

    def request
      @request ||= OpenStruct.new
    end

    def render_to_string(options)
      context = OpenStruct.new(options[:locals])
      context.extend(FakeRenderer)
      context.instance_eval do
        erb = ERB.new(IO.read(options[:file]))
        erb.result(binding)
      end
    end
  end

  should "make sure escape_javacript is called on the request.url" do
    Airbrake.configure do
    end
    controller = FakeController.new
    controller.request.url = "bad_javascript"
    assert controller.send(:airbrake_javascript_notifier)['"ESCbad_javascriptESC"']
    assert ! controller.send(:airbrake_javascript_notifier)['"bad_javascript"']
  end

  should "not raise exceptions for the non-public requests" do
    Airbrake::Configuration.any_instance.stubs(:public? => false)
    controller = FakeController.new
    assert_nothing_raised { controller.send(:airbrake_javascript_notifier) }
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
airbrake-3.2.1 test/integration/javascript_notifier_test.rb
airbrake-3.1.17 test/integration/javascript_notifier_test.rb
airbrake-3.1.16 test/integration/javascript_notifier_test.rb
airbrake-3.1.15 test/integration/javascript_notifier_test.rb
airbrake-3.1.14 test/integration/javascript_notifier_test.rb