2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 12:04:49 +00:00
|
|
|
require 'etc'
|
|
|
|
|
2020-04-03 01:16:16 +09:00
|
|
|
describe "Etc::Group" do
|
2017-05-07 12:04:49 +00:00
|
|
|
platform_is_not :windows do
|
2018-06-20 11:14:08 +00:00
|
|
|
grpname = IO.popen(%w'id -gn', err: IO::NULL, &:read)
|
|
|
|
next unless $?.success?
|
|
|
|
grpname.chomp!
|
|
|
|
|
2017-05-07 12:04:49 +00:00
|
|
|
before :all do
|
|
|
|
@g = Etc.getgrgid(`id -g`.strip.to_i)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns group name" do
|
2018-06-20 11:14:08 +00:00
|
|
|
@g.name.should == grpname
|
2017-05-07 12:04:49 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns group password" do
|
|
|
|
@g.passwd.is_a?(String).should == true
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns group id" do
|
|
|
|
@g.gid.should == `id -g`.strip.to_i
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns an array of users belonging to the group" do
|
|
|
|
@g.mem.is_a?(Array).should == true
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can be compared to another object" do
|
|
|
|
(@g == nil).should == false
|
|
|
|
(@g == Object.new).should == false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|