Sha256: 99e7173950848c0e77af7f110c8f4a969c016590f6cf6de90b37b75f07d7f0bd

Contents?: true

Size: 1.8 KB

Versions: 22

Compression:

Stored size: 1.8 KB

Contents

# frozen_string_literal: true

require 'rails_spec_helper'
require 'appmap/config'

describe AppMap::Config, docker: false do
  it 'loads from a Hash' do
    config_data = {
      exclude: [],
      name: 'test',
      packages: [
        {
          path: 'path-1'
        },
        {
          path: 'path-2',
          exclude: [ 'exclude-1' ]
        }
      ],
      functions: [
        {
          package: 'pkg',
          class: 'cls',
          function: 'fn',
          label: 'lbl'
        }
      ]
    }.deep_stringify_keys!
    config = AppMap::Config.load(config_data)

    config_expectation = {
      exclude: [],
      name: 'test',
      packages: [
        {
          path: 'path-1',
          handler_class: 'AppMap::Handler::Function'
        },
        {
          path: 'path-2',
          handler_class: 'AppMap::Handler::Function',
          exclude: [ 'exclude-1' ]
        }
      ],
      functions: [
        {
          package: 'pkg',
          class: 'cls',
          functions: [ :fn ],
          labels: ['lbl']
        }
      ]
    }.deep_stringify_keys!

    expect(config.to_h.deep_stringify_keys!).to eq(config_expectation)
  end

  context do
    let(:warnings) { @warnings ||= [] }
    let(:warning) { warnings.join }
    before do
      expect(AppMap::Config).to receive(:warn).at_least(1) { |msg| warnings << msg }
    end
    it 'prints a warning and uses a default config' do
      config = AppMap::Config.load_from_file 'no/such/file'
      expect(config.to_h).to eq(YAML.load(<<~CONFIG))
      :name: appmap-ruby
      :packages:
      - :path: lib
        :handler_class: AppMap::Handler::Function
        :shallow: false
      :functions: []
      :exclude: []
      CONFIG
      expect(warning).to include('NOTICE: The AppMap config file no/such/file was not found!')
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
appmap-0.65.1 spec/config_spec.rb
appmap-0.65.0 spec/config_spec.rb
appmap-0.64.0 spec/config_spec.rb
appmap-0.63.0 spec/config_spec.rb
appmap-0.62.1 spec/config_spec.rb
appmap-0.62.0 spec/config_spec.rb
appmap-0.61.1 spec/config_spec.rb
appmap-0.61.0 spec/config_spec.rb
appmap-0.60.0 spec/config_spec.rb
appmap-0.59.2 spec/config_spec.rb
appmap-0.59.1 spec/config_spec.rb
appmap-0.59.0 spec/config_spec.rb
appmap-0.58.0 spec/config_spec.rb
appmap-0.57.1 spec/config_spec.rb
appmap-0.57.0 spec/config_spec.rb
appmap-0.56.0 spec/config_spec.rb
appmap-0.55.0 spec/config_spec.rb
appmap-0.54.4 spec/config_spec.rb
appmap-0.54.3 spec/config_spec.rb
appmap-0.54.2 spec/config_spec.rb