socialcast 1.3.10 → 1.3.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 666669e1a4a45b54b0831459e0e2611f4aff0689
4
- data.tar.gz: 2de4ab5a30c01bdbc982b42f00a0df9aa2fb3de7
3
+ metadata.gz: a6def41c8c9fc333d5375b7e0ad9b403594663dd
4
+ data.tar.gz: 70370fc44d5b564bb69911a6b1919811bbf95b9f
5
5
  SHA512:
6
- metadata.gz: a536bbd57dfe1c7baa506c5be8a2ffed642532fe55576bedcd0854c37ea3895998d82e23abfa172045774c8097e138f80dd326c60ca55ae6fcd04e9cb67b5650
7
- data.tar.gz: af16fbf3fd088e9a021615703f47ee726544a295aeec3a5f046c7d10b775445e037cadd1e680154c0b05360f8cfd4a3a3b47bc65f5179525757238851a3b4e4e
6
+ metadata.gz: 22d41b04fa02c612b5a4486a7f7c1898bda5647e690a5054bb28e42e0438613f3b0acb6478b5ec668cce3daf37e9f9f7a9278d2eb0a506b9e1cddb9880290020
7
+ data.tar.gz: a2738fb5abcfefe29222c4dd85dca607f114f99ff08cc89073205210dcc616caf8f395061191ddafd36c1b4ea6da4fc7210407bdb9734f6bba82014bfe8e2c81
@@ -53,7 +53,7 @@ module Socialcast
53
53
  params = { :email => user, :password => password }
54
54
  response = Socialcast::CommandLine::Authenticate.new(:user, options, params).request
55
55
  communities = JSON.parse(response.body.to_s)['communities']
56
- domain = communities.detect {|c| c['domain'] == domain} ? domain : communities.first['domain']
56
+ domain = communities.detect { |c| c['domain'] == options[:domain] } ? options[:domain] : communities.first['domain']
57
57
 
58
58
  Socialcast::CommandLine.credentials = {
59
59
  :user => user,
@@ -1,5 +1,5 @@
1
1
  module Socialcast
2
2
  module CommandLine
3
- VERSION = "1.3.10"
3
+ VERSION = "1.3.11"
4
4
  end
5
5
  end
@@ -47,24 +47,40 @@ describe Socialcast::CommandLine::CLI do
47
47
  describe '#authenticate' do
48
48
  let(:user) { 'mike@socialcast.com' }
49
49
  let(:password) { 'password' }
50
- let(:domain) { 'api.socialcast.com' }
50
+ let(:default_domain) { 'api.socialcast.com' }
51
+ let(:first_tenant_domain) { 'test1.socialcast.com' }
52
+ let(:second_tenant_domain) { 'test2.socialcast.com' }
51
53
  before do
52
54
  Socialcast::CommandLine.should_receive(:credentials=).with({
53
- :domain => 'api.socialcast.com',
55
+ :domain => default_domain,
54
56
  :proxy => nil
55
57
  })
56
58
  Socialcast::CommandLine.should_receive(:credentials=).with({
57
59
  :user => user,
58
60
  :password => password,
59
- :domain => domain
61
+ :domain => domain_to_set
60
62
  })
61
- stub_request(:post, "https://api.socialcast.com/api/authentication").
63
+ stub_request(:post, "https://#{default_domain}/api/authentication").
62
64
  with(:body => {"email"=>"mike@socialcast.com", "password"=>"password"}).
63
- to_return(:status => 200, :body => { :communities => [{ :domain => domain }] }.to_json, :headers => {})
64
- Socialcast::CommandLine::CLI.start ['authenticate', "--user=#{user}", "--password=#{password}"]
65
+ to_return(:status => 200, :body => { :communities => [ { :domain => first_tenant_domain }, { :domain => second_tenant_domain }] }.to_json, :headers => {})
66
+ end
67
+ context 'when passed a domain directly' do
68
+ let(:domain_to_set) { second_tenant_domain }
69
+ let(:default_domain) { second_tenant_domain }
70
+ before do
71
+ Socialcast::CommandLine::CLI.start ['authenticate', "--user=#{user}", "--password=#{password}", "--domain=#{second_tenant_domain}"]
72
+ end
73
+ #See expectations
74
+ it 'authenticates with the API and sets the domain to the domain passed as an option' do end
75
+ end
76
+ context 'when not passed a domain it chooses the first domain returned from the response' do
77
+ let(:domain_to_set) { first_tenant_domain }
78
+ before do
79
+ Socialcast::CommandLine::CLI.start ['authenticate', "--user=#{user}", "--password=#{password}"]
80
+ end
81
+ ## See expectations
82
+ it 'authenticates with the API and sets the domain to the first domain returned' do end
65
83
  end
66
- ## See expectations
67
- it 'authenticates with the API and sets the given credentials' do end
68
84
  end
69
85
 
70
86
  describe '#authenticate_external_system' do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: socialcast
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.10
4
+ version: 1.3.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Sonnek
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-06-10 00:00:00.000000000 Z
13
+ date: 2014-06-11 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rest-client