spec/elastic_apm/context_spec.rb (31 lines of code) (raw):
# Licensed to Elasticsearch B.V. under one or more contributor
# license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright
# ownership. Elasticsearch B.V. licenses this file to you under
# the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# frozen_string_literal: true
require 'spec_helper'
module ElasticAPM
RSpec.describe Context do
it 'initializes with labels and context' do
expect(subject.labels).to eq({})
expect(subject.custom).to eq({})
end
describe '#empty?' do
it 'is when new' do
expect(Context.new).to be_empty
end
it "isn't when it has data" do
expect(Context.new(labels: { a: 1 })).to_not be_empty
expect(Context.new(custom: { a: 1 })).to_not be_empty
expect(Context.new(user: { a: 1 })).to_not be_empty
expect(Context.new.tap { |c| c.request = 1 }).to_not be_empty
expect(Context.new.tap { |c| c.response = 1 }).to_not be_empty
end
end
describe 'service' do
before do
subject.set_service(framework_name: 'Grape',
framework_version: '1.2')
end
it 'sets the service' do
expect(subject.service.framework.name).to eq('Grape')
expect(subject.service.framework.version).to eq('1.2')
end
end
end
end