Merge pull request #843 from tphoney/rspec_mock
[puppet-modules/puppetlabs-apt.git] / spec / unit / facter / apt_update_last_success_spec.rb
1 require 'spec_helper'
2
3 describe 'apt_update_last_success fact' do
4   subject { Facter.fact(:apt_update_last_success).value }
5
6   before(:each) { Facter.clear }
7   after(:each) { Facter.clear }
8
9   describe 'on Debian based distro which has not yet created the update-success-stamp file' do
10     it 'has a value of -1' do
11       allow(Facter.fact(:osfamily)).to receive(:value).and_return('Debian')
12       allow(File).to receive(:exist?).with('/var/lib/apt/periodic/update-success-stamp').and_return(false)
13       is_expected.to eq(-1)
14     end
15   end
16
17   describe 'on Debian based distro which has created the update-success-stamp' do
18     it 'has the value of the mtime of the file' do
19       allow(Facter.fact(:osfamily)).to receive(:value).and_return('Debian')
20       allow(File).to receive(:exist?).and_return(true)
21       allow(File).to receive(:mtime).and_return(1_407_660_561)
22       is_expected.to eq(1_407_660_561)
23     end
24   end
25 end