2019-06-11 22:24:35 +00:00
|
|
|
require "helper"
|
|
|
|
require "inspec/resource"
|
|
|
|
require "inspec/resources/users"
|
|
|
|
require "inspec/resources/command"
|
2015-10-05 09:21:25 +00:00
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
describe "Inspec::Resources::User" do
|
2015-10-05 09:21:25 +00:00
|
|
|
|
|
|
|
# ubuntu 14.04 with upstart
|
2019-06-11 22:24:35 +00:00
|
|
|
it "read user on ubuntu" do
|
|
|
|
resource = MockLoader.new(:ubuntu1404).load_resource("user", "root")
|
2015-10-05 09:21:25 +00:00
|
|
|
_(resource.exists?).must_equal true
|
2019-06-11 22:24:35 +00:00
|
|
|
_(resource.group).must_equal "root"
|
|
|
|
_(resource.groups).must_equal ["root"]
|
|
|
|
_(resource.home).must_equal "/root"
|
|
|
|
_(resource.shell).must_equal "/bin/bash"
|
2015-10-05 09:40:34 +00:00
|
|
|
_(resource.mindays).must_equal 0
|
|
|
|
_(resource.maxdays).must_equal 99999
|
|
|
|
_(resource.warndays).must_equal 7
|
2015-10-05 09:21:25 +00:00
|
|
|
end
|
|
|
|
|
2015-11-24 15:18:55 +00:00
|
|
|
# ubuntu 14.04 test with ldap user
|
2019-06-11 22:24:35 +00:00
|
|
|
it "read user on ubuntu" do
|
|
|
|
resource = MockLoader.new(:ubuntu1404).load_resource("user", "jfolmer")
|
2015-11-24 15:18:55 +00:00
|
|
|
_(resource.exists?).must_equal true
|
2019-06-11 22:24:35 +00:00
|
|
|
_(resource.group).must_equal "domain users"
|
|
|
|
_(resource.groups).must_equal ["domain users", "domain admins", "denied rodc password replication group"]
|
|
|
|
_(resource.home).must_equal "/jfolmer"
|
|
|
|
_(resource.shell).must_equal "/bin/bash"
|
2015-11-24 15:18:55 +00:00
|
|
|
_(resource.mindays).must_equal 0
|
|
|
|
_(resource.maxdays).must_equal 99999
|
|
|
|
_(resource.warndays).must_equal 7
|
|
|
|
end
|
|
|
|
|
2015-10-05 09:21:25 +00:00
|
|
|
# serverspec compatibility tests (do not test matcher)
|
2019-06-11 22:24:35 +00:00
|
|
|
it "returns deprecation notices" do
|
|
|
|
resource = MockLoader.new(:ubuntu1404).load_resource("user", "root")
|
2019-01-12 23:26:35 +00:00
|
|
|
|
2019-04-16 21:28:39 +00:00
|
|
|
expect_deprecation(:resource_user_serverspec_compat) do
|
2019-09-30 22:31:55 +00:00
|
|
|
_(resource.has_uid?(0)).must_equal true
|
2019-02-21 17:24:19 +00:00
|
|
|
end
|
|
|
|
|
2019-04-16 21:28:39 +00:00
|
|
|
expect_deprecation(:resource_user_serverspec_compat) do
|
2019-09-30 22:31:55 +00:00
|
|
|
_(resource.has_home_directory?("/root")).must_equal true
|
2019-02-21 17:24:19 +00:00
|
|
|
end
|
|
|
|
|
2019-04-16 21:28:39 +00:00
|
|
|
expect_deprecation(:resource_user_serverspec_compat) do
|
2019-09-30 22:31:55 +00:00
|
|
|
_(resource.has_login_shell?("/bin/bash")).must_equal true
|
2019-02-21 17:24:19 +00:00
|
|
|
end
|
|
|
|
|
2019-04-16 21:28:39 +00:00
|
|
|
expect_deprecation(:resource_user_serverspec_compat) do
|
2019-09-30 22:31:55 +00:00
|
|
|
_(resource.minimum_days_between_password_change).must_equal 0
|
2019-02-21 17:24:19 +00:00
|
|
|
end
|
|
|
|
|
2019-04-16 21:28:39 +00:00
|
|
|
expect_deprecation(:resource_user_serverspec_compat) do
|
2019-09-30 22:31:55 +00:00
|
|
|
_(resource.maximum_days_between_password_change).must_equal 99999
|
2019-02-21 17:24:19 +00:00
|
|
|
end
|
|
|
|
|
2019-04-16 21:28:39 +00:00
|
|
|
expect_deprecation(:resource_user_serverspec_compat) do
|
2019-09-30 22:31:55 +00:00
|
|
|
_(proc { resource.has_authorized_key?("abc") }).must_raise NotImplementedError
|
2019-01-12 23:26:35 +00:00
|
|
|
end
|
2015-10-05 09:21:25 +00:00
|
|
|
end
|
|
|
|
|
2019-10-23 23:49:49 +00:00
|
|
|
it "handles a password that has never changed" do
|
|
|
|
resource = quick_resource(:user, :linux) do |cmd|
|
|
|
|
cmd.strip!
|
|
|
|
case cmd
|
|
|
|
when "chage -l" then
|
|
|
|
string <<~EOM
|
|
|
|
Last password change : never
|
|
|
|
Password expires : never
|
|
|
|
Password inactive : never
|
|
|
|
Account expires : never
|
|
|
|
Minimum number of days between password change : 0
|
|
|
|
Maximum number of days between password change : 99999
|
|
|
|
Number of days of warning before password expires : 7
|
|
|
|
EOM
|
|
|
|
else
|
|
|
|
string "" # doesn't matter... they don't error for some reason
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
_(resource.passwordage).must_be_nil
|
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "read user on centos7" do
|
|
|
|
resource = MockLoader.new(:centos7).load_resource("user", "root")
|
2015-10-05 09:21:25 +00:00
|
|
|
_(resource.exists?).must_equal true
|
2019-06-11 22:24:35 +00:00
|
|
|
_(resource.group).must_equal "root"
|
|
|
|
_(resource.groups).must_equal ["root"]
|
|
|
|
_(resource.home).must_equal "/root"
|
|
|
|
_(resource.shell).must_equal "/bin/bash"
|
2015-12-03 03:08:49 +00:00
|
|
|
_(resource.mindays).must_equal 0
|
|
|
|
_(resource.maxdays).must_equal 99999
|
|
|
|
_(resource.warndays).must_equal 7
|
2019-10-23 23:49:49 +00:00
|
|
|
_(resource.passwordage).must_be_kind_of Integer # changes every day
|
2015-12-03 03:08:49 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "read user on centos7" do
|
|
|
|
resource = MockLoader.new(:wrlinux).load_resource("user", "root")
|
2015-12-03 03:08:49 +00:00
|
|
|
_(resource.exists?).must_equal true
|
2019-06-11 22:24:35 +00:00
|
|
|
_(resource.group).must_equal "root"
|
|
|
|
_(resource.groups).must_equal ["root"]
|
|
|
|
_(resource.home).must_equal "/root"
|
|
|
|
_(resource.shell).must_equal "/bin/bash"
|
2015-10-05 09:40:34 +00:00
|
|
|
_(resource.mindays).must_equal 0
|
|
|
|
_(resource.maxdays).must_equal 99999
|
|
|
|
_(resource.warndays).must_equal 7
|
2015-10-05 09:21:25 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "read user on hpux" do
|
|
|
|
resource = MockLoader.new(:hpux).load_resource("user", "root")
|
|
|
|
_(resource.home).must_equal "/"
|
|
|
|
_(resource.shell).must_equal "/sbin/sh"
|
2016-04-21 08:31:56 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "read user on freebsd" do
|
2020-06-28 00:36:15 +00:00
|
|
|
resource = MockLoader.new(:freebsd11).load_resource("user", "fzipi")
|
2015-10-05 09:21:25 +00:00
|
|
|
_(resource.exists?).must_equal true
|
2020-06-28 00:36:15 +00:00
|
|
|
_(resource.group).must_equal "fzipi"
|
|
|
|
_(resource.groups).must_equal %w{fzipi wheel users}
|
|
|
|
_(resource.home).must_equal "/home/fzipi"
|
|
|
|
_(resource.shell).must_equal "/usr/local/bin/bash"
|
2017-06-11 10:16:10 +00:00
|
|
|
_(resource.mindays).must_be_nil
|
|
|
|
_(resource.maxdays).must_be_nil
|
|
|
|
_(resource.warndays).must_be_nil
|
2015-10-05 09:21:25 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "read user on OSX" do
|
2020-07-01 22:35:23 +00:00
|
|
|
resource = MockLoader.new(:macos10_10).load_resource("user", "chartmann")
|
2015-10-05 09:21:25 +00:00
|
|
|
_(resource.exists?).must_equal true
|
2019-06-11 22:24:35 +00:00
|
|
|
_(resource.group).must_equal "staff"
|
|
|
|
_(resource.groups).must_equal ["staff", "com.apple.sharepoint.group.1", "everyone"]
|
|
|
|
_(resource.home).must_equal "/Users/chartmann"
|
|
|
|
_(resource.shell).must_equal "/bin/zsh"
|
2017-06-11 10:16:10 +00:00
|
|
|
_(resource.mindays).must_be_nil
|
|
|
|
_(resource.maxdays).must_be_nil
|
|
|
|
_(resource.warndays).must_be_nil
|
2015-10-05 09:21:25 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "read administrator user on Windows" do
|
|
|
|
resource = MockLoader.new(:windows).load_resource("user", "Administrator")
|
2016-08-26 07:40:24 +00:00
|
|
|
_(resource.uid).wont_be_nil
|
2015-10-05 09:21:25 +00:00
|
|
|
_(resource.exists?).must_equal true
|
2017-06-11 10:16:10 +00:00
|
|
|
_(resource.group).must_be_nil
|
2019-06-11 22:24:35 +00:00
|
|
|
_(resource.groups).must_equal %w{Administrators Users}
|
2019-09-13 18:45:54 +00:00
|
|
|
_(resource.home).wont_be_nil
|
2017-06-11 10:16:10 +00:00
|
|
|
_(resource.shell).must_be_nil
|
2019-09-13 11:14:34 +00:00
|
|
|
_(resource.mindays).wont_be_nil
|
|
|
|
_(resource.maxdays).wont_be_nil
|
2017-06-11 10:16:10 +00:00
|
|
|
_(resource.warndays).must_be_nil
|
2016-09-09 13:03:35 +00:00
|
|
|
_(resource.disabled?).must_equal false
|
2019-11-15 05:22:07 +00:00
|
|
|
_(resource.lastlogin).must_equal "11/14/2019 21:03:09"
|
2015-10-05 09:21:25 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "read guest user on Windows" do
|
|
|
|
resource = MockLoader.new(:windows).load_resource("user", "Guest")
|
2017-04-21 07:45:58 +00:00
|
|
|
_(resource.uid).wont_be_nil
|
|
|
|
_(resource.exists?).must_equal true
|
2017-06-11 10:16:10 +00:00
|
|
|
_(resource.group).must_be_nil
|
2019-06-11 22:24:35 +00:00
|
|
|
_(resource.groups).must_equal ["Users"]
|
2019-09-13 11:14:34 +00:00
|
|
|
_(resource.home).wont_be_nil
|
2017-06-11 10:16:10 +00:00
|
|
|
_(resource.shell).must_be_nil
|
2019-09-13 11:14:34 +00:00
|
|
|
_(resource.mindays).wont_be_nil
|
|
|
|
_(resource.maxdays).wont_be_nil
|
2017-06-11 10:16:10 +00:00
|
|
|
_(resource.warndays).must_be_nil
|
2017-04-21 07:45:58 +00:00
|
|
|
_(resource.disabled?).must_equal true
|
2019-11-14 07:08:23 +00:00
|
|
|
_(resource.lastlogin).must_be_nil
|
2017-04-21 07:45:58 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "read disabled user on Windows" do
|
|
|
|
resource = MockLoader.new(:windows).load_resource("user", "Guest")
|
2016-09-25 22:50:40 +00:00
|
|
|
_(resource.uid).wont_be_nil
|
|
|
|
_(resource.exists?).must_equal true
|
|
|
|
_(resource.disabled?).must_equal true
|
2019-11-15 05:22:07 +00:00
|
|
|
_(resource.lastlogin).must_be_nil
|
2016-09-25 22:50:40 +00:00
|
|
|
end
|
|
|
|
|
2019-06-11 22:24:35 +00:00
|
|
|
it "read user on undefined os" do
|
|
|
|
resource = MockLoader.new(:undefined).load_resource("user", "root")
|
2015-10-05 09:21:25 +00:00
|
|
|
_(resource.exists?).must_equal false
|
2017-06-11 10:16:10 +00:00
|
|
|
_(resource.group).must_be_nil
|
|
|
|
_(resource.groups).must_be_nil
|
|
|
|
_(resource.home).must_be_nil
|
|
|
|
_(resource.shell).must_be_nil
|
|
|
|
_(resource.mindays).must_be_nil
|
|
|
|
_(resource.maxdays).must_be_nil
|
|
|
|
_(resource.warndays).must_be_nil
|
2015-10-05 09:21:25 +00:00
|
|
|
end
|
2021-10-05 10:04:15 +00:00
|
|
|
|
|
|
|
it "read user on Windows without case-sensitivity" do
|
|
|
|
resource = MockLoader.new(:windows).load_resource("user", "administrator")
|
|
|
|
_(resource.exists?).must_equal true
|
|
|
|
_(resource.uid).wont_be_nil
|
|
|
|
_(resource.group).must_be_nil
|
|
|
|
_(resource.groups).must_equal %w{Administrators Users}
|
|
|
|
end
|
2015-10-05 09:21:25 +00:00
|
|
|
end
|