2015-12-31 15:33:35 -08:00
|
|
|
# frozen_string_literal: true
|
2014-12-31 19:49:49 +05:30
|
|
|
require_relative 'helper'
|
2014-12-30 12:51:36 -08:00
|
|
|
require 'sidekiq/logging'
|
|
|
|
|
2015-09-22 12:48:43 -07:00
|
|
|
class TestLogging < Sidekiq::Test
|
2014-12-30 12:51:36 -08:00
|
|
|
describe Sidekiq::Logging do
|
|
|
|
describe "#with_context" do
|
2017-01-02 12:06:02 -08:00
|
|
|
def ctx
|
2014-12-30 12:51:36 -08:00
|
|
|
Sidekiq::Logging.logger.formatter.context
|
|
|
|
end
|
|
|
|
|
|
|
|
it "has no context by default" do
|
2017-01-02 12:06:02 -08:00
|
|
|
assert_nil ctx
|
2014-12-30 12:51:36 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "can add a context" do
|
|
|
|
Sidekiq::Logging.with_context "xx" do
|
2017-01-02 12:06:02 -08:00
|
|
|
assert_equal " xx", ctx
|
2014-12-30 12:51:36 -08:00
|
|
|
end
|
2017-01-02 12:06:02 -08:00
|
|
|
assert_nil ctx
|
2014-12-30 12:51:36 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "can use multiple contexts" do
|
|
|
|
Sidekiq::Logging.with_context "xx" do
|
2017-01-02 12:06:02 -08:00
|
|
|
assert_equal " xx", ctx
|
2014-12-30 12:51:36 -08:00
|
|
|
Sidekiq::Logging.with_context "yy" do
|
2017-01-02 12:06:02 -08:00
|
|
|
assert_equal " xx yy", ctx
|
2014-12-30 12:51:36 -08:00
|
|
|
end
|
2017-01-02 12:06:02 -08:00
|
|
|
assert_equal " xx", ctx
|
2014-12-30 12:51:36 -08:00
|
|
|
end
|
2017-01-02 12:06:02 -08:00
|
|
|
assert_nil ctx
|
2014-12-30 12:51:36 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|