-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #127 from sparkapi/model-extractions
Model extractions
- Loading branch information
Showing
5 changed files
with
120 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,4 @@ tmp/* | |
.buildpath | ||
.project | ||
*.swp | ||
.bundle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
module SparkApi | ||
module Models | ||
class AccountReport < Account | ||
def self.report(account_id, arguments={}) | ||
collect(connection.get("/accounts/#{account_id}/report", arguments)).first | ||
end | ||
|
||
def DisplayName | ||
self.Name | ||
end | ||
|
||
def primary_email | ||
if Array(emails).any? && emails.primary | ||
emails.primary.Address | ||
end | ||
end | ||
|
||
def primary_phone | ||
if Array(phones).any? && phones.primary | ||
phones.primary.Number | ||
end | ||
end | ||
|
||
def logo | ||
if images.kind_of? Array | ||
images.find { |image| image.Type == "Logo" } | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module SparkApi | ||
module Models | ||
class AccountRoster < Account | ||
def self.roster(account_id, arguments={}) | ||
collect(connection.get("/accounts/#{account_id}/roster", arguments)).first | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
require './spec/spec_helper' | ||
|
||
describe AccountReport do | ||
|
||
let(:account_report) { | ||
AccountReport.new({ | ||
"Id" => "12345", | ||
"Name" => "Agent McAgentson", | ||
"Office" => "Office Name", | ||
"Emails"=> [], | ||
"Phones"=> [], | ||
"Websites"=> [], | ||
"Addresses"=> [] | ||
}) | ||
} | ||
|
||
describe 'primary_email' do | ||
|
||
it 'returns the primary email address' do | ||
account_report.emails << double(:Address => '[email protected]', :primary? => true) | ||
expect(account_report.primary_email).to eq account_report.emails.primary.Address | ||
end | ||
|
||
it 'returns nil when there is no primary email address' do | ||
account_report.emails << double(:Address => '[email protected]', :primary? => false) | ||
expect(account_report.primary_email).to eq nil | ||
end | ||
|
||
it 'returns nil when there are no email addresses' do | ||
allow(account_report).to receive(:emails).and_return nil | ||
expect(account_report.primary_email).to eq nil | ||
end | ||
|
||
end | ||
|
||
describe 'primary_phone' do | ||
|
||
it 'returns the primary phone number' do | ||
account_report.phones << double(:Number => '88', :primary? => true) | ||
expect(account_report.primary_phone).to eq account_report.phones.primary.Number | ||
end | ||
|
||
it 'returns nil when there is no primary phone number' do | ||
account_report.phones << double(:Number => '88', :primary? => false) | ||
expect(account_report.primary_phone).to eq nil | ||
end | ||
|
||
it 'returns nil when there are no phone numbers' do | ||
allow(account_report).to receive(:phones).and_return nil | ||
expect(account_report.primary_phone).to eq nil | ||
end | ||
|
||
end | ||
|
||
describe 'logo' do | ||
|
||
it 'returns the logo' do | ||
logo = SparkApi::Models::Base.new( {"Type" => "Logo"} ) | ||
not_logo = SparkApi::Models::Base.new( {"Type" => "Nope" } ) | ||
account_report.images = [logo, not_logo] | ||
expect(account_report.logo).to be logo | ||
end | ||
|
||
it 'returns nil if there is no logo' do | ||
not_logo = SparkApi::Models::Base.new( {"Type" => "Nope" } ) | ||
account_report.images = [not_logo] | ||
expect(account_report.logo).to be nil | ||
end | ||
|
||
it 'returns nil if there are no images' do | ||
expect(account_report.images).to be nil | ||
expect(account_report.logo).to be nil | ||
end | ||
|
||
end | ||
|
||
end |