1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
require File.expand_path('../../../spec_helper', __FILE__)
require 'etc'
platform_is :windows do
describe "Etc.getgrgid" do
it "returns nil" do
Etc.getgrgid(1).should == nil
Etc.getgrgid(nil).should == nil
Etc.getgrgid('nil').should == nil
end
end
end
# TODO: verify these on non-windows, non-darwin OS
platform_is_not :windows do
describe "Etc.getgrgid" do
before(:all) do
@gid = `id -g`.strip.to_i
@name = `id -gn`.strip
end
ruby_version_is "" ... "1.9" do
it "returns a Struct::Group struct instance for the given user" do
gr = Etc.getgrgid(@gid)
gr.is_a?(Struct::Group).should == true
gr.gid.should == @gid
gr.name.should == @name
end
it "returns the Struct::Group for a given gid if it exists" do
grp = Etc.getgrgid(@gid)
grp.should be_kind_of(Struct::Group)
grp.gid.should == @gid
grp.name.should == @name
end
end
ruby_version_is "1.9" do
it "returns a Etc::Group struct instance for the given user" do
gr = Etc.getgrgid(@gid)
gr.is_a?(Etc::Group).should == true
gr.gid.should == @gid
gr.name.should == @name
end
it "returns the Etc::Group for a given gid if it exists" do
grp = Etc.getgrgid(@gid)
grp.should be_kind_of(Etc::Group)
grp.gid.should == @gid
grp.name.should == @name
end
it "uses Process.gid as the default value for the argument" do
gr = Etc.getgrgid
gr.gid.should == @gid
gr.name.should == @name
end
end
it "returns the Group for a given gid if it exists" do
grp = Etc.getgrgid(@gid)
grp.should be_kind_of(Struct::Group)
grp.gid.should == @gid
grp.name.should == @name
end
it "raises if the group does not exist" do
lambda { Etc.getgrgid(9876)}.should raise_error(ArgumentError)
end
it "raises a TypeError if not passed an Integer" do
lambda { Etc.getgrgid("foo") }.should raise_error(TypeError)
lambda { Etc.getgrgid(nil) }.should raise_error(TypeError)
end
end
end
|