summaryrefslogtreecommitdiff
path: root/spec/unit/provider/user/solaris_spec.rb
diff options
context:
space:
mode:
authordanielsdeleo <dan@opscode.com>2013-06-19 17:44:40 -0700
committerdanielsdeleo <dan@opscode.com>2013-06-20 13:22:16 -0700
commitc82904d42d9962ae420fcf33f812e5da6d3521b6 (patch)
tree8fa0c2b478a5478ac69ccf77e9c6cc7d5e77e02d /spec/unit/provider/user/solaris_spec.rb
parent24248e4ca99d631e08d883a514713daf74cd28ee (diff)
downloadchef-c82904d42d9962ae420fcf33f812e5da6d3521b6.tar.gz
[CHEF-4204] Convert useradd provider to shellout
- Convert all run_command and popen4 calls to shell_out! - Update useradd tests - User::Solaris subclasses from Useradd, so update those tests, too. - Functional tests pass unmodified
Diffstat (limited to 'spec/unit/provider/user/solaris_spec.rb')
-rw-r--r--spec/unit/provider/user/solaris_spec.rb92
1 files changed, 28 insertions, 64 deletions
diff --git a/spec/unit/provider/user/solaris_spec.rb b/spec/unit/provider/user/solaris_spec.rb
index 436450b05f..2353414dcc 100644
--- a/spec/unit/provider/user/solaris_spec.rb
+++ b/spec/unit/provider/user/solaris_spec.rb
@@ -102,7 +102,7 @@ describe Chef::Provider::User::Solaris do
it "should use its own shadow file writer to set the password" do
@provider.should_receive(:write_shadow_file)
- @provider.stub!(:run_command).and_return(true)
+ @provider.stub!(:shell_out!).and_return(true)
@provider.manage_user
end
@@ -111,7 +111,7 @@ describe Chef::Provider::User::Solaris do
password_file.puts "adam:existingpassword:15441::::::"
password_file.close
@provider.password_file = password_file.path
- @provider.stub!(:run_command).and_return(true)
+ @provider.stub!(:shell_out!).and_return(true)
# may not be able to write to /etc for tests...
temp_file = Tempfile.new("shadow")
Tempfile.stub!(:new).with("shadow", "/etc").and_return(temp_file)
@@ -195,7 +195,7 @@ describe Chef::Provider::User::Solaris do
it "runs useradd with the computed command options" do
command = "useradd -c 'Adam Jacob' -g '23' -s '/usr/bin/zsh' -u '1000' -m -d '/Users/mud' adam"
- @provider.should_receive(:run_command).with({ :command => command }).and_return(true)
+ @provider.should_receive(:shell_out!).with(command).and_return(true)
@provider.should_receive(:manage_password).and_return(nil)
@provider.create_user
end
@@ -210,7 +210,7 @@ describe Chef::Provider::User::Solaris do
it "should not include -m or -d in the command options" do
command = "useradd -c 'Adam Jacob' -g '23' -s '/usr/bin/zsh' -u '1000' -r adam"
- @provider.should_receive(:run_command).with({ :command => command }).and_return(true)
+ @provider.should_receive(:shell_out!).with(command).and_return(true)
@provider.should_receive(:manage_password).and_return(nil)
@provider.create_user
end
@@ -228,19 +228,19 @@ describe Chef::Provider::User::Solaris do
# CHEF-3423, -m must come before the username
it "runs usermod with the computed command options" do
- @provider.should_receive(:run_command).with({ :command => "usermod -g '23' -m -d '/Users/mud' adam" }).and_return(true)
+ @provider.should_receive(:shell_out!).with("usermod -g '23' -m -d '/Users/mud' adam").and_return(true)
@provider.manage_user
end
it "does not set the -r option to usermod" do
@new_resource.system(true)
- @provider.should_receive(:run_command).with({ :command => "usermod -g '23' -m -d '/Users/mud' adam" }).and_return(true)
+ @provider.should_receive(:shell_out!).with("usermod -g '23' -m -d '/Users/mud' adam").and_return(true)
@provider.manage_user
end
it "CHEF-3429: does not set -m if we aren't changing the home directory" do
@provider.should_receive(:updating_home?).and_return(false)
- @provider.should_receive(:run_command).with({ :command => "usermod -g '23' adam" }).and_return(true)
+ @provider.should_receive(:shell_out!).with("usermod -g '23' adam").and_return(true)
@provider.manage_user
end
end
@@ -248,113 +248,77 @@ describe Chef::Provider::User::Solaris do
describe "when removing a user" do
it "should run userdel with the new resources user name" do
- @provider.should_receive(:run_command).with({ :command => "userdel #{@new_resource.username}" }).and_return(true)
+ @provider.should_receive(:shell_out!).with("userdel #{@new_resource.username}").and_return(true)
@provider.remove_user
end
it "should run userdel with the new resources user name and -r if manage_home is true" do
@new_resource.stub!(:supports).and_return({ :manage_home => true,
:non_unique => false})
- @provider.should_receive(:run_command).with({ :command => "userdel -r #{@new_resource.username}"}).and_return(true)
+ @provider.should_receive(:shell_out!).with("userdel -r #{@new_resource.username}").and_return(true)
@provider.remove_user
end
it "should run userdel with the new resources user name if non_unique is true" do
@new_resource.stub!(:supports).and_return({ :manage_home => false,
:non_unique => true})
- @provider.should_receive(:run_command).with({ :command => "userdel #{@new_resource.username}"}).and_return(true)
+ @provider.should_receive(:shell_out!).with("userdel #{@new_resource.username}").and_return(true)
@provider.remove_user
end
end
describe "when checking the lock" do
+ # lazy initialize so we can modify stdout and stderr strings
+ let(:passwd_s_status) do
+ mock("Mixlib::ShellOut command", :exitstatus => 0, :stdout => @stdout, :stderr => @stderr)
+ end
+
before(:each) do
# @node = Chef::Node.new
# @new_resource = mock("Chef::Resource::User",
# :nil_object => true,
# :username => "adam"
# )
- @status = mock("Status", :exitstatus => 0)
#@provider = Chef::Provider::User::Useradd.new(@node, @new_resource)
- @provider.stub!(:popen4).and_return(@status)
- @stdin = mock("STDIN", :nil_object => true)
- @stdout = mock("STDOUT", :nil_object => true)
- @stdout.stub!(:gets).and_return("root P 09/02/2008 0 99999 7 -1")
- @stderr = mock("STDERR", :nil_object => true)
- @pid = mock("PID", :nil_object => true)
- end
-
- it "should call passwd -S to check the lock status" do
- @provider.should_receive(:popen4).with("passwd -S #{@new_resource.username}").and_return(@status)
- @provider.check_lock
- end
-
- it "should get the first line of passwd -S STDOUT" do
- @provider.should_receive(:popen4).and_yield(@pid, @stdin, @stdout, @stderr).and_return(@status)
- @stdout.should_receive(:gets).and_return("root P 09/02/2008 0 99999 7 -1")
- @provider.check_lock
+ @stdout = "root P 09/02/2008 0 99999 7 -1"
+ @stderr = ""
end
it "should return false if status begins with P" do
- @provider.should_receive(:popen4).and_yield(@pid, @stdin, @stdout, @stderr).and_return(@status)
+ @provider.should_receive(:shell_out!).with("passwd -S #{@new_resource.username}", {:returns=>[0, 1]}).and_return(passwd_s_status)
@provider.check_lock.should eql(false)
end
it "should return false if status begins with N" do
- @stdout.stub!(:gets).and_return("root N")
- @provider.should_receive(:popen4).and_yield(@pid, @stdin, @stdout, @stderr).and_return(@status)
+ @stdout = "root N"
+ @provider.should_receive(:shell_out!).with("passwd -S #{@new_resource.username}", {:returns=>[0, 1]}).and_return(passwd_s_status)
@provider.check_lock.should eql(false)
end
it "should return true if status begins with L" do
- @stdout.stub!(:gets).and_return("root L")
- @provider.should_receive(:popen4).and_yield(@pid, @stdin, @stdout, @stderr).and_return(@status)
+ @stdout = "root L"
+ @provider.should_receive(:shell_out!).with("passwd -S #{@new_resource.username}", {:returns=>[0, 1]}).and_return(passwd_s_status)
@provider.check_lock.should eql(true)
end
- it "should raise a Chef::Exceptions::User if passwd -S fails on anything other than redhat/centos" do
- @node.automatic_attrs[:platform] = 'ubuntu'
- @status.should_receive(:exitstatus).and_return(1)
+ it "should raise a Chef::Exceptions::User if passwd -S fails" do
+ @node.automatic_attrs[:platform] = 'solaris2'
+ @provider.should_receive(:shell_out!).with("passwd -S #{@new_resource.username}", {:returns=>[0, 1]}).and_return(passwd_s_status)
+ passwd_s_status.should_receive(:exitstatus).and_return(1)
lambda { @provider.check_lock }.should raise_error(Chef::Exceptions::User)
end
-
- ['redhat', 'centos'].each do |os|
- it "should not raise a Chef::Exceptions::User if passwd -S exits with 1 on #{os} and the passwd package is version 0.73-1" do
- @node.automatic_attrs[:platform] = os
- @stdout.stub!(:gets).and_return("passwd-0.73-1\n")
- @status.should_receive(:exitstatus).twice.and_return(1)
- @provider.should_receive(:popen4).with("passwd -S #{@new_resource.username}")
- @provider.should_receive(:popen4).with("rpm -q passwd").and_yield(@pid, @stdin, @stdout, @stderr).and_return(@status)
- lambda { @provider.check_lock }.should_not raise_error(Chef::Exceptions::User)
- end
-
- it "should raise a Chef::Exceptions::User if passwd -S exits with 1 on #{os} and the passwd package is not version 0.73-1" do
- @node.automatic_attrs[:platform] = os
- @stdout.stub!(:gets).and_return("passwd-0.73-2\n")
- @status.should_receive(:exitstatus).twice.and_return(1)
- @provider.should_receive(:popen4).with("passwd -S #{@new_resource.username}")
- @provider.should_receive(:popen4).with("rpm -q passwd").and_yield(@pid, @stdin, @stdout, @stderr).and_return(@status)
- lambda { @provider.check_lock }.should raise_error(Chef::Exceptions::User)
- end
-
- it "should raise a Chef::Exceptions::User if passwd -S exits with something other than 0 or 1 on #{os}" do
- @node.automatic_attrs[:platform] = os
- @status.should_receive(:exitstatus).twice.and_return(2)
- lambda { @provider.check_lock }.should raise_error(Chef::Exceptions::User)
- end
- end
end
describe "when locking the user" do
it "should run usermod -L with the new resources username" do
- @provider.should_receive(:run_command).with({ :command => "usermod -L #{@new_resource.username}"})
+ @provider.should_receive(:shell_out!).with("usermod -L #{@new_resource.username}")
@provider.lock_user
end
end
describe "when unlocking the user" do
it "should run usermod -L with the new resources username" do
- @provider.should_receive(:run_command).with({ :command => "usermod -U #{@new_resource.username}"})
+ @provider.should_receive(:shell_out!).with("usermod -U #{@new_resource.username}")
@provider.unlock_user
end
end