Sha256: 1287b6de75f5ab7962b34906e76f67e3e035ce0a0ca4987c26262eabe1548b06

Contents?: true

Size: 1.65 KB

Versions: 6

Compression:

Stored size: 1.65 KB

Contents

#
# Author: cary@rightscale.com
# Copyright 2014 RightScale, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require 'spec_helper'

describe RightApiHelper::Session do

  it "creates an client" do
    VCR.use_cassette('right_api_session') do
      apiStub = double("RightApi::Client", :api_url => "http://foo.com", :log => "")
      RightApi::Client.should_receive(:new).and_return(apiStub)
      session = RightApiHelper::Session.new
      session.should_receive(:setup_client_logging)
      session.logger(double("Logger"))
      @client = session.create_client("someemail", "somepasswd", "someaccountid", "https://my.rightscale.com")
      @client.should_not == nil
    end
  end

  it "creates an client from file" do
    VCR.use_cassette('right_api_session') do
      apiStub = double("RightApi::Client", :api_url => "http://foo.com", :log => "")
      RightApi::Client.should_receive(:new).and_return(apiStub)
      session = RightApiHelper::Session.new
      session.should_receive(:setup_client_logging)
      session.logger(double("Logger"))
      @client = session.create_client_from_file("~/.right_api_client/login.yml")
      @client.should_not == nil
    end
  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
right_api_helper-1.1.2 spec/session_spec.rb
right_api_helper-1.1.1 spec/session_spec.rb
right_api_helper-1.1.0 spec/session_spec.rb
right_api_helper-1.0.0 spec/session_spec.rb
right_api_helper-0.0.2 spec/session_spec.rb
right_api_helper-0.0.1 spec/session_spec.rb