Sha256: 9996af0019508eafd7bd4ef0f629a8ea74dbdcd4d4a574fa380e8e6742e31f1d

Contents?: true

Size: 867 Bytes

Versions: 296

Compression:

Stored size: 867 Bytes

Contents

require 'spec_helper'

describe Puppet::Type.type(:file).attrclass(:mtime) do
  require 'puppet_spec/files'
  include PuppetSpec::Files

  before do
    @filename = tmpfile('mtime')
    @resource = Puppet::Type.type(:file).new({:name => @filename})
  end

  it "should be able to audit the file's mtime" do
    File.open(@filename, "w"){ }

    @resource[:audit] = [:mtime]

    # this .to_resource audit behavior is magical :-(
    expect(@resource.to_resource[:mtime]).to eq(Puppet::FileSystem.stat(@filename).mtime)
  end

  it "should return absent if auditing an absent file" do
    @resource[:audit] = [:mtime]

    expect(@resource.to_resource[:mtime]).to eq(:absent)
  end

  it "should prevent the user from trying to set the mtime" do
    expect {
      @resource[:mtime] = Time.now.to_s
    }.to raise_error(Puppet::Error, /mtime is read-only/)
  end

end

Version data entries

296 entries across 296 versions & 1 rubygems

Version Path
puppet-7.23.0 spec/unit/type/file/mtime_spec.rb
puppet-7.23.0-x86-mingw32 spec/unit/type/file/mtime_spec.rb
puppet-7.23.0-x64-mingw32 spec/unit/type/file/mtime_spec.rb
puppet-7.23.0-universal-darwin spec/unit/type/file/mtime_spec.rb
puppet-7.22.0 spec/unit/type/file/mtime_spec.rb
puppet-7.22.0-x86-mingw32 spec/unit/type/file/mtime_spec.rb
puppet-7.22.0-x64-mingw32 spec/unit/type/file/mtime_spec.rb
puppet-7.22.0-universal-darwin spec/unit/type/file/mtime_spec.rb
puppet-6.29.0 spec/unit/type/file/mtime_spec.rb
puppet-6.29.0-x86-mingw32 spec/unit/type/file/mtime_spec.rb
puppet-6.29.0-x64-mingw32 spec/unit/type/file/mtime_spec.rb
puppet-6.29.0-universal-darwin spec/unit/type/file/mtime_spec.rb
puppet-7.21.0 spec/unit/type/file/mtime_spec.rb
puppet-7.21.0-x86-mingw32 spec/unit/type/file/mtime_spec.rb
puppet-7.21.0-x64-mingw32 spec/unit/type/file/mtime_spec.rb
puppet-7.21.0-universal-darwin spec/unit/type/file/mtime_spec.rb
puppet-7.20.0 spec/unit/type/file/mtime_spec.rb
puppet-7.20.0-x86-mingw32 spec/unit/type/file/mtime_spec.rb
puppet-7.20.0-x64-mingw32 spec/unit/type/file/mtime_spec.rb
puppet-7.20.0-universal-darwin spec/unit/type/file/mtime_spec.rb