Class: Inspec::Resources::Group

Inherits:
Object
  • Object
show all
Includes:
GroupManagementSelector
Defined in:
lib/resources/groups.rb

Overview

Usage: describe group(‘root’) do

it { should exist }
its('gid') { should eq 0 }

end

deprecated has matcher describe group(‘root’) do

it { should have_gid 0 }

end

Instance Method Summary collapse

Methods included from GroupManagementSelector

#select_group_manager

Constructor Details

#initialize(groupname) ⇒ Group

Returns a new instance of Group.



91
92
93
94
95
96
97
# File 'lib/resources/groups.rb', line 91

def initialize(groupname)
  @group = groupname

  # select group manager
  @group_provider = select_group_manager(inspec.os)
  return skip_resource 'The `group` resource is not supported on your OS yet.' if @group_provider.nil?
end

Instance Method Details

#exists?Boolean

verifies if a group exists

Returns:

  • (Boolean)


100
101
102
# File 'lib/resources/groups.rb', line 100

def exists?
  !group_info.entries.empty?
end

#gidObject



104
105
106
107
108
109
110
111
112
113
114
# File 'lib/resources/groups.rb', line 104

def gid
  gids = group_info.gids
  if gids.empty?
    nil
  # the default case should be one group
  elsif gids.size == 1
    gids.entries[0]
  else
    raise 'found more than one group with the same name, please use `groups` resource'
  end
end

#has_gid?(compare_gid) ⇒ Boolean

implements rspec has matcher, to be compatible with serverspec

Returns:

  • (Boolean)


117
118
119
# File 'lib/resources/groups.rb', line 117

def has_gid?(compare_gid)
  gid == compare_gid
end

#localObject



121
122
123
124
# File 'lib/resources/groups.rb', line 121

def local
  # at this point the implementation only returns local groups
  true
end

#to_sObject



126
127
128
# File 'lib/resources/groups.rb', line 126

def to_s
  "Group #{@group}"
end