2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
2017-10-28 11:15:48 -04:00
|
|
|
|
|
|
|
describe "Warning.warn" do
|
2019-04-27 12:53:23 -04:00
|
|
|
it "complains" do
|
|
|
|
-> {
|
|
|
|
Warning.warn("Chunky bacon!")
|
|
|
|
}.should complain("Chunky bacon!")
|
|
|
|
end
|
2017-10-28 11:15:48 -04:00
|
|
|
|
2019-04-27 12:53:23 -04:00
|
|
|
it "does not add a newline" do
|
|
|
|
ruby_exe("Warning.warn('test')", args: "2>&1").should == "test"
|
|
|
|
end
|
2018-11-27 15:38:57 -05:00
|
|
|
|
2019-04-27 12:53:23 -04:00
|
|
|
it "returns nil" do
|
|
|
|
ruby_exe("p Warning.warn('test')", args: "2>&1").should == "testnil\n"
|
|
|
|
end
|
2018-11-27 15:38:57 -05:00
|
|
|
|
2019-04-27 12:53:23 -04:00
|
|
|
it "extends itself" do
|
|
|
|
Warning.singleton_class.ancestors.should include(Warning)
|
|
|
|
end
|
2017-10-28 11:15:48 -04:00
|
|
|
|
2019-04-27 12:53:23 -04:00
|
|
|
it "has Warning as the method owner" do
|
|
|
|
ruby_exe("p Warning.method(:warn).owner").should == "Warning\n"
|
|
|
|
end
|
2017-10-28 11:15:48 -04:00
|
|
|
|
2019-04-27 12:53:23 -04:00
|
|
|
it "can be overridden" do
|
|
|
|
code = <<-RUBY
|
|
|
|
$stdout.sync = true
|
|
|
|
$stderr.sync = true
|
|
|
|
def Warning.warn(msg)
|
|
|
|
if msg.start_with?("A")
|
|
|
|
puts msg.upcase
|
|
|
|
else
|
|
|
|
super
|
2017-10-28 11:15:48 -04:00
|
|
|
end
|
|
|
|
end
|
2019-04-27 12:53:23 -04:00
|
|
|
Warning.warn("A warning!")
|
|
|
|
Warning.warn("warning from stderr\n")
|
|
|
|
RUBY
|
|
|
|
ruby_exe(code, args: "2>&1").should == %Q[A WARNING!\nwarning from stderr\n]
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is called by parser warnings" do
|
|
|
|
Warning.should_receive(:warn)
|
|
|
|
verbose = $VERBOSE
|
|
|
|
$VERBOSE = false
|
|
|
|
begin
|
|
|
|
eval "{ key: :value, key: :value2 }"
|
|
|
|
ensure
|
|
|
|
$VERBOSE = verbose
|
2017-10-28 11:15:48 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
Add rb_category_warn{,ing} for warning messages with categories
This adds the following C-API functions that can be used to emit
warnings with categories included:
```c
void rb_category_warn(const char *, const char*, ...)
void rb_category_warning(const char*, const char*, ...)
```
Internally in error.c, there is an rb_warn_category function
that will call Warning.warn with the string and the category
keyword if it doesn't have an arity of 1, and will call
Warning.warn with just the string if it has an arity of 1.
This refactors the rb_warn_deprecated{,_to_remove} functions
to use rb_warn_category.
This makes Kernel#warn accept a category keyword and pass it
to Warning.warn, so that Ruby methods can more easily emit
warnings with categories. rb_warn_category makes sure that
the passed category is a already defined category symbol
before calling Warning.warn.
The only currently defined warning category is :deprecated,
since that is what is already used. More categories can be
added in later commits.
2020-09-03 11:00:10 -04:00
|
|
|
|
|
|
|
ruby_version_is '3.0' do
|
|
|
|
it "is called by Kernel.warn with nil category keyword" do
|
|
|
|
Warning.should_receive(:warn).with("Chunky bacon!\n", category: nil)
|
|
|
|
verbose = $VERBOSE
|
|
|
|
$VERBOSE = false
|
|
|
|
begin
|
|
|
|
Kernel.warn("Chunky bacon!")
|
|
|
|
ensure
|
|
|
|
$VERBOSE = verbose
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is called by Kernel.warn with given category keyword converted to a symbol" do
|
|
|
|
Warning.should_receive(:warn).with("Chunky bacon!\n", category: :deprecated)
|
|
|
|
verbose = $VERBOSE
|
|
|
|
$VERBOSE = false
|
|
|
|
begin
|
|
|
|
Kernel.warn("Chunky bacon!", category: 'deprecated')
|
|
|
|
ensure
|
|
|
|
$VERBOSE = verbose
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
ruby_version_is ''...'3.0' do
|
|
|
|
it "is called by Kernel.warn" do
|
|
|
|
Warning.should_receive(:warn).with("Chunky bacon!\n")
|
|
|
|
verbose = $VERBOSE
|
|
|
|
$VERBOSE = false
|
|
|
|
begin
|
|
|
|
Kernel.warn("Chunky bacon!")
|
|
|
|
ensure
|
|
|
|
$VERBOSE = verbose
|
|
|
|
end
|
2017-10-28 11:15:48 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|