2024-05-12 05:59:38 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-03-08 02:28:48 +01:00
|
|
|
require_relative "../setup"
|
|
|
|
module BSD::Control
|
|
|
|
class EnableFeatureTest < Test::Unit::TestCase
|
|
|
|
require "fileutils"
|
|
|
|
include FileUtils
|
|
|
|
|
|
|
|
def test_enable_feature_lacks_privileges
|
|
|
|
touch(file)
|
2024-03-09 23:40:42 +01:00
|
|
|
assert_raises(Errno::EPERM) do
|
2024-03-20 20:25:20 +01:00
|
|
|
BSD::Control.feature(:pageexec).enable!(file)
|
2024-03-08 02:28:48 +01:00
|
|
|
end
|
|
|
|
ensure
|
|
|
|
rm(file)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def file
|
|
|
|
File.join(__dir__, "file")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|