2014-12-31 09:19:49 -05:00
|
|
|
require_relative 'helper'
|
2014-12-30 15:51:36 -05:00
|
|
|
require 'sidekiq/logging'
|
|
|
|
|
|
|
|
class TestFetcher < Sidekiq::Test
|
|
|
|
describe Sidekiq::Logging do
|
|
|
|
describe "#with_context" do
|
|
|
|
def context
|
|
|
|
Sidekiq::Logging.logger.formatter.context
|
|
|
|
end
|
|
|
|
|
|
|
|
it "has no context by default" do
|
2014-12-30 16:01:30 -05:00
|
|
|
context.must_equal nil
|
2014-12-30 15:51:36 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "can add a context" do
|
|
|
|
Sidekiq::Logging.with_context "xx" do
|
|
|
|
context.must_equal " xx"
|
|
|
|
end
|
2014-12-30 16:01:30 -05:00
|
|
|
context.must_equal nil
|
2014-12-30 15:51:36 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "can use multiple contexts" do
|
|
|
|
Sidekiq::Logging.with_context "xx" do
|
|
|
|
context.must_equal " xx"
|
|
|
|
Sidekiq::Logging.with_context "yy" do
|
2014-12-30 16:01:30 -05:00
|
|
|
context.must_equal " xx yy"
|
2014-12-30 15:51:36 -05:00
|
|
|
end
|
|
|
|
context.must_equal " xx"
|
|
|
|
end
|
2014-12-30 16:01:30 -05:00
|
|
|
context.must_equal nil
|
2014-12-30 15:51:36 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|