travis-api/spec/unit/access_token_spec.rb
2013-07-08 13:38:50 +02:00

50 lines
1.3 KiB
Ruby

require 'spec_helper'
describe Travis::Api::App::AccessToken do
it 'errors out on wrong type of :expires_in argument' do
expect {
described_class.new(app_id: 1, user_id: 2, expires_in: 'foo')
}.to raise_error(ArgumentError, 'expires_in must be of integer type')
end
it 'allows to skip expires_in' do
expect {
described_class.new(app_id: 1, user_id: 2, expires_in: nil)
}.to_not raise_error
end
it 'does not reuse token if expires_in is set' do
token = described_class.new(app_id: 1, user_id: 2).tap(&:save)
new_token = described_class.new(app_id: 1, user_id: 2, expires_in: 10)
token.token.should_not == new_token.token
end
it 'expires the token after given period of time' do
token = described_class.new(app_id: 1, user_id: 2, expires_in: 1).tap(&:save)
described_class.find_by_token(token.token).should_not be_nil
sleep 2
described_class.find_by_token(token.token).should be_nil
end
it 'allows to save extra information' do
attrs = {
app_id: 1,
user_id: 3,
expires_in: 1,
extra: {
required_params: { job_id: '1' }
}
}
token = described_class.new(attrs).tap(&:save)
token.extra.should == attrs[:extra]
token = described_class.find_by_token(token.token)
token.extra.should == { 'required_params' => { 'job_id' => '1' } }
end
end