Sha256: d0f2ceed45dd98434512e4dbed979e8230ace8f605534b084ba43ac5177018e7

Contents?: true

Size: 1.65 KB

Versions: 3

Compression:

Stored size: 1.65 KB

Contents

require 'spec_helper'

describe 'ROM::CommandRegistry' do
  include_context 'container'

  let(:users) { container.command(:users) }

  before do
    configuration.relation(:users)

    configuration.register_command(Class.new(ROM::Commands::Create[:memory]) do
      register_as :create
      relation :users
      validator proc { |input| raise(ROM::CommandError) unless input[:name] }
    end)
  end

  describe '#[]' do
    it 'fetches a command from the registry' do
      expect(users[:create]).to be_a(ROM::Commands::Create[:memory])
    end

    it 'throws an error when the command is not found' do
      expect { users[:not_found] }.to raise_error(
        ROM::CommandRegistry::CommandNotFoundError,
        'There is no :not_found command for :users relation'
      )
    end
  end

  describe '#try' do
    it 'returns a success result object on successful execution' do
      result = users.try { users.create.call(name: 'Jane') }

      expect(result).to match_array([{ name: 'Jane' }])
    end

    it 'returns a success result on successful curried-command execution' do
      result = users.try { users.create.curry(name: 'Jane') }

      expect(result).to match_array([{ name: 'Jane' }])
    end

    it 'returns a failure result object on failed execution' do
      result = users.try { users.create.call({}) }

      expect(result.value).to be(nil)
    end

    it 'returns a failure result on unsuccessful curried-command execution' do
      result = users.try { users.create.curry({}) }

      expect(result.value).to be(nil)
    end

    it 'allows checking if a command is available using respond_to?' do
      expect(users).to respond_to(:create)
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rom-2.0.2 spec/integration/command_registry_spec.rb
rom-2.0.1 spec/integration/command_registry_spec.rb
rom-2.0.0 spec/integration/command_registry_spec.rb