2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
|
|
|
require_relative 'fixtures/classes'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
describe "Kernel#untaint" do
|
2019-09-24 23:59:12 -04:00
|
|
|
ruby_version_is ''...'2.7' do
|
|
|
|
it "returns self" do
|
|
|
|
o = Object.new
|
|
|
|
o.untaint.should equal(o)
|
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2019-09-24 23:59:12 -04:00
|
|
|
it "clears the tainted bit" do
|
|
|
|
o = Object.new.taint
|
|
|
|
o.untaint
|
2020-05-03 06:28:29 -04:00
|
|
|
o.should_not.tainted?
|
2019-09-24 23:59:12 -04:00
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2020-02-08 21:07:01 -05:00
|
|
|
it "raises FrozenError on a tainted, frozen object" do
|
2019-09-24 23:59:12 -04:00
|
|
|
o = Object.new.taint.freeze
|
2020-02-08 21:07:01 -05:00
|
|
|
-> { o.untaint }.should raise_error(FrozenError)
|
2019-09-24 23:59:12 -04:00
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2019-09-24 23:59:12 -04:00
|
|
|
it "does not raise an error on an untainted, frozen object" do
|
|
|
|
o = Object.new.freeze
|
|
|
|
o.untaint.should equal(o)
|
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
end
|