2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
2017-12-01 10:41:50 -05:00
|
|
|
|
2017-05-07 08:04:49 -04:00
|
|
|
platform_is_not :windows do
|
|
|
|
require 'syslog'
|
|
|
|
|
|
|
|
describe "Syslog.log" do
|
2020-02-13 09:08:31 -05:00
|
|
|
platform_is_not :windows, :darwin, :solaris, :aix, :android do
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
before :each do
|
|
|
|
Syslog.opened?.should be_false
|
|
|
|
end
|
|
|
|
|
|
|
|
after :each do
|
|
|
|
Syslog.opened?.should be_false
|
|
|
|
end
|
|
|
|
|
|
|
|
it "receives a priority as first argument" do
|
2019-07-27 06:40:09 -04:00
|
|
|
-> {
|
2017-05-07 08:04:49 -04:00
|
|
|
Syslog.open("rubyspec", Syslog::LOG_PERROR) do |s|
|
|
|
|
s.log(Syslog::LOG_ALERT, "Hello")
|
|
|
|
s.log(Syslog::LOG_CRIT, "World")
|
|
|
|
end
|
2020-03-12 02:30:20 -04:00
|
|
|
}.should output_to_fd(/\Arubyspec(?::| \d+ - -) Hello\nrubyspec(?::| \d+ - -) World\n\z/, $stderr)
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
2019-02-07 11:35:33 -05:00
|
|
|
it "accepts undefined priorities" do
|
2019-07-27 06:40:09 -04:00
|
|
|
-> {
|
2017-05-07 08:04:49 -04:00
|
|
|
Syslog.open("rubyspec", Syslog::LOG_PERROR) do |s|
|
|
|
|
s.log(1337, "Hello")
|
|
|
|
end
|
|
|
|
# use a regex since it'll output unknown facility/priority messages
|
2020-03-12 02:30:20 -04:00
|
|
|
}.should output_to_fd(/rubyspec(?::| \d+ - -) Hello\n\z/, $stderr)
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "fails with TypeError on nil log messages" do
|
|
|
|
Syslog.open do |s|
|
2019-07-27 06:40:09 -04:00
|
|
|
-> { s.log(1, nil) }.should raise_error(TypeError)
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "fails if the log is closed" do
|
2019-07-27 06:40:09 -04:00
|
|
|
-> {
|
2017-05-07 08:04:49 -04:00
|
|
|
Syslog.log(Syslog::LOG_ALERT, "test")
|
|
|
|
}.should raise_error(RuntimeError)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "accepts printf parameters" do
|
2019-07-27 06:40:09 -04:00
|
|
|
-> {
|
2017-05-07 08:04:49 -04:00
|
|
|
Syslog.open("rubyspec", Syslog::LOG_PERROR) do |s|
|
|
|
|
s.log(Syslog::LOG_ALERT, "%s x %d", "chunky bacon", 2)
|
|
|
|
end
|
2020-03-12 02:30:20 -04:00
|
|
|
}.should output_to_fd(/rubyspec(?::| \d+ - -) chunky bacon x 2\n\z/, $stderr)
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|