2018-03-25 16:15:39 +00:00
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
2018-03-25 17:30:42 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe FetchMiscellaneousNpInfo do
|
|
|
|
describe '.fetch' do
|
|
|
|
describe 'validates params' do
|
|
|
|
it 'with empty args' do
|
|
|
|
expect { FetchMiscellaneousNpInfo.fetch(nil) }.to(raise_error {|error|
|
|
|
|
expect(error).to be_a ParamValidation::ValidationError
|
|
|
|
expect_validation_errors(error.data, [{key: :np_id, name: :required},
|
|
|
|
{key: :np_id, name: :is_integer}])
|
|
|
|
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'with invalid np' do
|
|
|
|
expect { FetchMiscellaneousNpInfo.fetch(50) }.to(raise_error {|error|
|
|
|
|
expect(error).to be_a ParamValidation::ValidationError
|
|
|
|
expect_validation_errors(error.data, [{key: :np_id}])
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with valid nonprofit' do
|
|
|
|
before(:each) do
|
|
|
|
@np = force_create(:nonprofit)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns hash with empty misc settings' do
|
|
|
|
expect(FetchMiscellaneousNpInfo.fetch(@np.id).attributes).to eq(MiscellaneousNpInfo.new.attributes)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the misc if already there' do
|
|
|
|
a = force_create(:miscellaneous_np_info, :nonprofit => @np, :donate_again_url => 'http://donateagain.url')
|
|
|
|
expect(FetchMiscellaneousNpInfo.fetch(@np.id)).to eq(a)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|