Sha256: 51cb0eb680eed82eb2d3a99ece3d94993db54162ec4c286ceec5f29a2f180a70

Contents?: true

Size: 1.21 KB

Versions: 52

Compression:

Stored size: 1.21 KB

Contents

require File.expand_path('../../../spec_helper', __FILE__)

describe "Process.groups" do
  platform_is_not :windows do
    #it "gets an Array of the gids of groups in the supplemental group access list" do
    #  groups = `id -G`.scan(/\d+/).map {|i| i.to_i}

      # NOTE: if/when this fails, make sure you are running in the most
      # basic environment you have available. This spec fails
      # consistently on me (Ryan Davis) when I'm running the specs
      # inside a shell inside emacs that was launched by OSX's
      # windowserver (double click in finder or quicksilver/launchbar
      # etc). When run any other way the spec passes.
    #  Process.groups.uniq.sort.should == groups.uniq.sort
    #end

    # NOTE: This is kind of sketchy.
    it "sets the list of gids of groups in the supplemental group access list" do
      groups = Process.groups
      if Process.uid == 0
        Process.groups = []
        Process.groups.should == []
        Process.groups = groups
        Process.groups.sort.should == groups.sort
      else
        lambda { Process.groups = [] }.should raise_error(Errno::EPERM)
      end
    end
  end
end

describe "Process.groups=" do
  it "needs to be reviewed for spec completeness"
end

Version data entries

52 entries across 52 versions & 2 rubygems

Version Path
rhodes-7.6.0 spec/framework_spec/app/spec/core/process/groups_spec.rb
rhodes-7.5.1 spec/framework_spec/app/spec/core/process/groups_spec.rb
rhodes-7.4.1 spec/framework_spec/app/spec/core/process/groups_spec.rb
rhodes-7.1.17 spec/framework_spec/app/spec/core/process/groups_spec.rb
rhodes-6.2.0 spec/framework_spec/app/spec/core/process/groups_spec.rb
rhodes-6.0.11 spec/framework_spec/app/spec/core/process/groups_spec.rb
rhodes-5.5.18 spec/framework_spec/app/spec/core/process/groups_spec.rb
rhodes-5.5.17 spec/framework_spec/app/spec/core/process/groups_spec.rb
rhodes-5.5.15 spec/framework_spec/app/spec/core/process/groups_spec.rb
rhodes-5.5.0.22 spec/framework_spec/app/spec/core/process/groups_spec.rb
rhodes-5.5.2 spec/framework_spec/app/spec/core/process/groups_spec.rb
rhodes-5.5.0.7 spec/framework_spec/app/spec/core/process/groups_spec.rb
rhodes-5.5.0.3 spec/framework_spec/app/spec/core/process/groups_spec.rb
rhodes-5.5.0 spec/framework_spec/app/spec/core/process/groups_spec.rb
tauplatform-1.0.3 spec/framework_spec/app/spec/core/process/groups_spec.rb
tauplatform-1.0.2 spec/framework_spec/app/spec/core/process/groups_spec.rb
tauplatform-1.0.1 spec/framework_spec/app/spec/core/process/groups_spec.rb
rhodes-3.5.1.12 spec/framework_spec/app/spec/core/process/groups_spec.rb
rhodes-3.3.5 spec/framework_spec/app/spec/core/process/groups_spec.rb
rhodes-3.4.2 spec/framework_spec/app/spec/core/process/groups_spec.rb