Sha256: aed0c4d03ad0e52a399a903fd3d032bb4a7b5e08657e0e3176fa37c2e3b11773

Contents?: true

Size: 1.26 KB

Versions: 4

Compression:

Stored size: 1.26 KB

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.

require File.expand_path(File.join(File.dirname(__FILE__),'..','..','test_helper'))
require 'new_relic/agent/parameter_filtering'

module NewRelic
  module Agent
    class ParameterFilteringTest < Minitest::Test

      def test_apply_filters_returns_params_when_rails_is_not_present
        undefine_constant(:"ActionDispatch::Http::ParameterFilter") do
          params = {"password" => "mypass"}
          result = ParameterFiltering.apply_filters({}, params)
          assert_equal params, result
        end
      end

      def test_apply_filters_replaces_file_uploads_with_placeholder
        env = {"CONTENT_TYPE" => "multipart/form-data"}
        params = {
          :name => "name",
          :file => {
            :filename => "data.jpg",
            :tempfile => "file_data"
          }
        }

        expected = {:name => "name", :file => "[FILE]"}
        result = ParameterFiltering.apply_filters(env, params)
        assert_equal expected, result

        # argument should not be mutated
        assert_equal({ :filename => "data.jpg", :tempfile => "file_data" }, params[:file])
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
newrelic_rpm-4.1.0.333 test/new_relic/agent/parameter_filtering_test.rb
newrelic_rpm-4.0.0.332 test/new_relic/agent/parameter_filtering_test.rb
newrelic_rpm-3.18.1.330 test/new_relic/agent/parameter_filtering_test.rb
newrelic_rpm-3.18.0.329 test/new_relic/agent/parameter_filtering_test.rb