Sha256: f3a614e39ee872809d55259b3d122dd83baebdb1c3a88300a8a4810ec1e9b6e1

Contents?: true

Size: 843 Bytes

Versions: 4

Compression:

Stored size: 843 Bytes

Contents

class Specinfra::Command::Solaris::Base::File < Specinfra::Command::Base::File
  def check_contains_within(file, expected_pattern, from=nil, to=nil)
    from ||= '1'
    to ||= '$'
    sed = "sed -n #{escape(from)},#{escape(to)}p #{escape(file)}"
    checker_with_regexp = check_file_contains_with_regexp("/dev/stdin", expected_pattern)
    checker_with_fixed  = check_file_contains_with_fixed_strings("/dev/stdin", expected_pattern)
    "#{sed} | #{checker_with_regexp} || #{sed} | #{checker_with_fixed}"
  end

  def check_is_accessible_by_user(file, user, access)
    # http://docs.oracle.com/cd/E23823_01/html/816-5166/su-1m.html
    ## No need for login shell as it seems that behavior as superuser is favorable for us, but needs
    ## to be better tested under real solaris env
    "su #{user} -c \"test -#{access} #{file}\""
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
specinfra-2.0.0.beta15 lib/specinfra/command/solaris/base/file.rb
specinfra-2.0.0.beta14 lib/specinfra/command/solaris/base/file.rb
specinfra-2.0.0.beta13 lib/specinfra/command/solaris/base/file.rb
specinfra-2.0.0.beta12 lib/specinfra/command/solaris/base/file.rb