Sha256: f29caefa889849580a6ad528976ba86fa4b3a586e497ef2b9c2dc7ee5204e834

Contents?: true

Size: 1.9 KB

Versions: 36

Compression:

Stored size: 1.9 KB

Contents

module HybridPlatformsConductorTest

  module Helpers

    module PluginsHelpers

      # Register given plugins for a given plugin type
      #
      # Parameters::
      # * *plugin_type* (Symbol): The plugin type
      # * *plugins* (Hash<Symbol,Class>): The plugin classes, per plugin ID
      # * *replace* (Boolean): Should we replace the plugins with the mocked ones, or only add them? [default: true]
      def register_plugins(plugin_type, plugins, replace: true)
        unless defined?(@plugins_to_mock)
          # First time we invoke it: mock the call to Plugins
          # List of plugins information to mock, per plugin type
          # * *plugins* (Hash<Symbol,Class>): The mocked plugins
          # * *replace* (Boolean): Should we replace the plugins or add them?
          # Hash< Symbol, Hash<Symbol, Object> >
          @plugins_to_mock = {}
          allow(HybridPlatformsConductor::Plugins).to receive(:new).and_wrap_original do |original_new, plugins_type, init_plugin: nil, parse_gems: true, logger: Logger.new(STDOUT), logger_stderr: Logger.new(STDERR)|
            # If this plugin type is to be mocked, then don't parse gems and provide the mocked plugins instead
            mocked_plugins = original_new.call(
              plugins_type,
              init_plugin: init_plugin,
              parse_gems: @plugins_to_mock.key?(plugins_type) && @plugins_to_mock[plugins_type][:replace] ? false : parse_gems,
              logger: logger,
              logger_stderr: logger_stderr
            )
            if @plugins_to_mock.key?(plugins_type)
              @plugins_to_mock[plugins_type][:plugins].each do |plugin_id, plugin_class|
                mocked_plugins[plugin_id] = plugin_class
              end
            end
            mocked_plugins
          end
        end
        @plugins_to_mock[plugin_type] = {
          plugins: plugins,
          replace: replace
        }
      end

    end

  end

end

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
hybrid_platforms_conductor-33.0.0 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.18.0 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.17.1 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.17.0 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.16.4 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.16.3 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.16.2 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.16.1 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.16.0 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.15.0 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.14.0 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.13.4 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.13.3 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.13.2 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.13.1 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.13.0 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.12.0 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.11.2 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.11.1 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb
hybrid_platforms_conductor-32.11.0 spec/hybrid_platforms_conductor_test/helpers/plugins_helpers.rb