Sha256: 873050f372585dfe784146ae36d037f2ddeaa12c01e4cd21b8c3a1f4bc660a02

Contents?: true

Size: 1.6 KB

Versions: 33

Compression:

Stored size: 1.6 KB

Contents

require 'spec_helper'

describe EY::API do
  it "gets the api token from ~/.eyrc if possible" do
    write_yaml({"api_token" => "asdf"}, '~/.eyrc')
    EY::API.new.should == EY::API.new("asdf")
  end

  context "fetching the token from EY cloud" do
    before(:each) do
      FakeWeb.register_uri(:post, "https://cloud.engineyard.com/api/v2/authenticate", :body => %|{"api_token": "asdf"}|, :content_type => 'application/json')
      @token = EY::API.fetch_token("a@b.com", "foo")
    end

    it "returns an EY::API" do
      @token.should == "asdf"
    end

    it "puts the api token into .eyrc" do
      read_yaml('~/.eyrc')["api_token"].should == "asdf"
    end
  end

  describe "saving the token" do
    context "without a custom endpoint" do
      it "saves the api token at the root of the data" do
        EY::API.save_token("asdf")
        read_yaml('~/.eyrc')["api_token"].should == "asdf"
      end
    end

    context "with a custom endpoint" do
      before(:each) do
        write_yaml({"endpoint" => "http://localhost/"}, 'ey.yml')
        EY::API.save_token("asdf")
      end

      it "saves the api token" do
        read_yaml('~/.eyrc').should == {"http://localhost/" => {"api_token" => "asdf"}}
      end

      it "reads the api token" do
        EY::API.read_token.should == "asdf"
      end
    end
  end

  it "raises InvalidCredentials when the credentials are invalid" do
    FakeWeb.register_uri(:post, "https://cloud.engineyard.com/api/v2/authenticate", :status => 401, :content_type => 'application/json')

    lambda {
      EY::API.fetch_token("a@b.com", "foo")
    }.should raise_error(EY::Error)
  end

end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
engineyard-1.3.17 spec/engineyard/api_spec.rb
engineyard-1.3.16 spec/engineyard/api_spec.rb
engineyard-1.3.15 spec/engineyard/api_spec.rb
engineyard-1.3.14 spec/engineyard/api_spec.rb
engineyard-1.3.13 spec/engineyard/api_spec.rb
engineyard-1.3.12 spec/engineyard/api_spec.rb
engineyard-1.3.11 spec/engineyard/api_spec.rb
engineyard-1.3.10 spec/engineyard/api_spec.rb
engineyard-1.3.7 spec/engineyard/api_spec.rb
engineyard-1.3.4 spec/engineyard/api_spec.rb
engineyard-1.3.3 spec/engineyard/api_spec.rb
engineyard-1.3.2 spec/engineyard/api_spec.rb
engineyard-1.2.1 spec/engineyard/api_spec.rb
engineyard-1.2.0 spec/engineyard/api_spec.rb
engineyard-1.1.3 spec/engineyard/api_spec.rb
engineyard-1.1.2 spec/engineyard/api_spec.rb
engineyard-1.1.1 spec/engineyard/api_spec.rb
engineyard-1.1.0 spec/engineyard/api_spec.rb
engineyard-1.0.2 spec/engineyard/api_spec.rb
engineyard-1.0.1 spec/engineyard/api_spec.rb