Sha256: 547982cfc1d04f3fd4f1f56201ca0f0f90e526fd6ebd40a75f3cdb01f0acce62

Contents?: true

Size: 1.39 KB

Versions: 6

Compression:

Stored size: 1.39 KB

Contents

require 'spec_helper'
require 'timecop'
require 'active_support/time'
require 'doorkeeper/models/expirable'

describe 'Expirable' do
  subject do
    Class.new do
      include Doorkeeper::Models::Expirable
    end.new
  end

  before do
    allow(subject).to receive(:created_at).and_return(1.minute.ago)
  end

  describe :expired? do
    it 'is not expired if time has not passed' do
      allow(subject).to receive(:expires_in).and_return(2.minutes)
      expect(subject).not_to be_expired
    end

    it 'is expired if time has passed' do
      allow(subject).to receive(:expires_in).and_return(10.seconds)
      expect(subject).to be_expired
    end

    it 'is not expired if expires_in is not set' do
      allow(subject).to receive(:expires_in).and_return(nil)
      expect(subject).not_to be_expired
    end
  end

  describe :expires_in_seconds do
    it 'should return the amount of time remaining until the token is expired' do
      allow(subject).to receive(:expires_in).and_return(2.minutes)
      expect(subject.expires_in_seconds).to eq(60)
    end

    it 'should return 0 when expired' do
      allow(subject).to receive(:expires_in).and_return(30.seconds)
      expect(subject.expires_in_seconds).to eq(0)
    end

    it 'should return nil when expires_in is nil' do
      allow(subject).to receive(:expires_in).and_return(nil)
      expect(subject.expires_in_seconds).to be_nil
    end

  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
doorkeeper-1.4.2 spec/lib/models/expirable_spec.rb
doorkeeper-1.4.1 spec/lib/models/expirable_spec.rb
doorkeeper-1.4.0 spec/lib/models/expirable_spec.rb
doorkeeper-1.3.1 spec/lib/models/expirable_spec.rb
doorkeeper-1.3.0 spec/lib/models/expirable_spec.rb
doorkeeper-1.2.0 spec/lib/models/expirable_spec.rb