Sha256: 9100c72c18806d536edab5f029796fb3e2430f6131fbcba0314d244af99ef71a

Contents?: true

Size: 1.17 KB

Versions: 10

Compression:

Stored size: 1.17 KB

Contents

require File.expand_path '../helper', __FILE__
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
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
airbrake-3.1.12 test/javascript_notifier_test.rb
airbrake-3.1.11 test/javascript_notifier_test.rb
airbrake-3.1.10 test/javascript_notifier_test.rb
airbrake-3.1.9 test/javascript_notifier_test.rb
airbrake-3.1.8 test/javascript_notifier_test.rb
airbrake-3.1.7 test/javascript_notifier_test.rb
airbrake-3.1.6 test/javascript_notifier_test.rb
airbrake-3.1.5 test/javascript_notifier_test.rb
airbrake-3.1.4 test/javascript_notifier_test.rb
airbrake-3.1.3 test/javascript_notifier_test.rb