Sha256: 26fcfd9febdeab0561b600cf595f98082061955676d910203853b2d7bbee7a23

Contents?: true

Size: 1.35 KB

Versions: 1

Compression:

Stored size: 1.35 KB

Contents

require 'spec_helper'

describe "Role API operations", type: "acceptance" do
  let(:server_url) { "https://api.opscode.com" }
  let(:client_name) { "reset" }
  let(:client_key) { "/Users/reset/.chef/reset.pem" }
  let(:organization) { "ridley" }

  let(:connection) do
    Ridley.connection(
      server_url: server_url,
      client_name: client_name,
      client_key: client_key,
      organization: organization
    )
  end

  before(:all) { WebMock.allow_net_connect! }
  after(:all) { WebMock.disable_net_connect! }

  describe "listing indexes" do
    it "returns an array of indexes" do
      indexes = connection.search_indexes

      indexes.should include(:role)
      indexes.should include(:node)
      indexes.should include(:client)
    end
  end

  describe "showing an index" do
    before(:each) do
      @result = connection.search(:node)
    end

    it "returns a hash with a total key" do
      @result.should have_key(:total)
    end

    it "returns a hash with a start key" do
      @result.should have_key(:start)
    end

    it "returns a hash with a rows key" do
      @result.should have_key(:rows)
    end
  end

  describe "searching an index that doesn't exist" do
    it "it raises a Ridley::Errors::HTTPNotFound error" do
      lambda {
        connection.search(:notthere)
      }.should raise_error(Ridley::Errors::HTTPNotFound)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ridley-0.0.2 spec/acceptance/search_resource_spec.rb