-
Notifications
You must be signed in to change notification settings - Fork 785
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added UnitTests for Logs * Added unit test for BatchExportProcessor for Logs * Update LogLevels test * Update the description for RecordOnly and RecordAndSample * Addressed PR comments * Addressed PR comments * Addressed PR comments Co-authored-by: Cijo Thomas <cithomas@microsoft.com>
- Loading branch information
1 parent
fc8520a
commit fe9e90d
Showing
4 changed files
with
331 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,319 @@ | ||
// <copyright file="LogRecordTest.cs" company="OpenTelemetry Authors"> | ||
// Copyright The OpenTelemetry Authors | ||
// | ||
// Licensed 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. | ||
// </copyright> | ||
|
||
#if !NET452 && !NET46 | ||
#if NETCOREAPP2_1 | ||
using Microsoft.Extensions.DependencyInjection; | ||
#endif | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Diagnostics; | ||
using System.Linq; | ||
using Microsoft.Extensions.Logging; | ||
using OpenTelemetry.Exporter; | ||
using OpenTelemetry.Logs; | ||
using OpenTelemetry.Trace; | ||
using Xunit; | ||
|
||
namespace OpenTelemetry.Tests.Logs | ||
{ | ||
public class LogRecordTest : IDisposable | ||
{ | ||
private readonly ILogger logger; | ||
private readonly List<LogRecord> exportedItems = new List<LogRecord>(); | ||
#if NETCOREAPP2_1 | ||
private readonly ServiceProvider serviceProvider; | ||
#else | ||
private readonly ILoggerFactory loggerFactory; | ||
#endif | ||
private readonly BaseExportProcessor<LogRecord> processor; | ||
private readonly BaseExporter<LogRecord> exporter; | ||
|
||
public LogRecordTest() | ||
{ | ||
this.exporter = new InMemoryExporter<LogRecord>(this.exportedItems); | ||
this.processor = new SimpleExportProcessor<LogRecord>(this.exporter); | ||
#if NETCOREAPP2_1 | ||
var serviceCollection = new ServiceCollection().AddLogging(builder => | ||
#else | ||
this.loggerFactory = LoggerFactory.Create(builder => | ||
#endif | ||
{ | ||
builder.AddOpenTelemetry(options => options | ||
.AddProcessor(this.processor)); | ||
builder.AddFilter(typeof(LogRecordTest).FullName, LogLevel.Trace); | ||
}); | ||
|
||
#if NETCOREAPP2_1 | ||
this.serviceProvider = serviceCollection.BuildServiceProvider(); | ||
this.logger = this.serviceProvider.GetRequiredService<ILogger<LogRecordTest>>(); | ||
#else | ||
this.logger = this.loggerFactory.CreateLogger<LogRecordTest>(); | ||
#endif | ||
} | ||
|
||
[Fact] | ||
public void CheckCateogryNameForLog() | ||
{ | ||
this.logger.LogInformation("Log"); | ||
var categoryName = this.exportedItems[0].CategoryName; | ||
|
||
Assert.Equal(typeof(LogRecordTest).FullName, categoryName); | ||
} | ||
|
||
[Theory] | ||
[InlineData(LogLevel.Trace)] | ||
[InlineData(LogLevel.Debug)] | ||
[InlineData(LogLevel.Information)] | ||
[InlineData(LogLevel.Warning)] | ||
[InlineData(LogLevel.Error)] | ||
[InlineData(LogLevel.Critical)] | ||
public void CheckLogLevel(LogLevel logLevel) | ||
{ | ||
var message = $"Log {logLevel}"; | ||
this.logger.Log(logLevel, message); | ||
|
||
var logLevelRecorded = this.exportedItems[0].LogLevel; | ||
Assert.Equal(logLevel, logLevelRecorded); | ||
} | ||
|
||
[Fact] | ||
public void CheckStateForUnstructuredLog() | ||
{ | ||
var message = "Hello, World!"; | ||
this.logger.LogInformation(message); | ||
var state = this.exportedItems[0].State as IReadOnlyList<KeyValuePair<string, object>>; | ||
|
||
// state only has {OriginalFormat} | ||
Assert.Equal(1, state.Count); | ||
|
||
Assert.Equal(message.ToString(), state.ToString()); | ||
} | ||
|
||
[Fact] | ||
public void CheckStateForUnstructuredLogWithStringInterpolation() | ||
{ | ||
var message = $"Hello from potato {0.99}."; | ||
this.logger.LogInformation(message); | ||
var state = this.exportedItems[0].State as IReadOnlyList<KeyValuePair<string, object>>; | ||
|
||
// state only has {OriginalFormat} | ||
Assert.Equal(1, state.Count); | ||
|
||
Assert.Equal(message.ToString(), state.ToString()); | ||
} | ||
|
||
[Fact] | ||
public void CheckStateForStructuredLogWithTemplate() | ||
{ | ||
var message = "Hello from {name} {price}."; | ||
this.logger.LogInformation(message, "tomato", 2.99); | ||
var state = this.exportedItems[0].State as IReadOnlyList<KeyValuePair<string, object>>; | ||
|
||
// state has name, price and {OriginalFormat} | ||
Assert.Equal(3, state.Count); | ||
|
||
// Check if state has name | ||
Assert.Contains(state, item => item.Key == "name"); | ||
Assert.Equal("tomato", state.First(item => item.Key == "name").Value); | ||
|
||
// Check if state has price | ||
Assert.Contains(state, item => item.Key == "price"); | ||
Assert.Equal(2.99, state.First(item => item.Key == "price").Value); | ||
|
||
// Check if state has OriginalFormat | ||
Assert.Contains(state, item => item.Key == "{OriginalFormat}"); | ||
Assert.Equal(message, state.First(item => item.Key == "{OriginalFormat}").Value); | ||
|
||
Assert.Equal($"Hello from tomato 2.99.", state.ToString()); | ||
} | ||
|
||
[Fact] | ||
public void CheckStateForStructuredLogWithStrongType() | ||
{ | ||
var food = new Food { Name = "artichoke", Price = 3.99 }; | ||
this.logger.LogInformation("{food}", food); | ||
var state = this.exportedItems[0].State as IReadOnlyList<KeyValuePair<string, object>>; | ||
|
||
// state has food and {OriginalFormat} | ||
Assert.Equal(2, state.Count); | ||
|
||
// Check if state has food | ||
Assert.Contains(state, item => item.Key == "food"); | ||
|
||
var foodParameter = (Food)state.First(item => item.Key == "food").Value; | ||
Assert.Equal(food.Name, foodParameter.Name); | ||
Assert.Equal(food.Price, foodParameter.Price); | ||
|
||
// Check if state has OriginalFormat | ||
Assert.Contains(state, item => item.Key == "{OriginalFormat}"); | ||
Assert.Equal("{food}", state.First(item => item.Key == "{OriginalFormat}").Value); | ||
|
||
Assert.Equal(food.ToString(), state.ToString()); | ||
} | ||
|
||
[Fact] | ||
public void CheckStateForStructuredLogWithAnonymousType() | ||
{ | ||
var anonymousType = new { Name = "pumpkin", Price = 5.99 }; | ||
this.logger.LogInformation("{food}", anonymousType); | ||
var state = this.exportedItems[0].State as IReadOnlyList<KeyValuePair<string, object>>; | ||
|
||
// state has food and {OriginalFormat} | ||
Assert.Equal(2, state.Count); | ||
|
||
// Check if state has food | ||
Assert.Contains(state, item => item.Key == "food"); | ||
|
||
var foodParameter = state.First(item => item.Key == "food").Value as dynamic; | ||
Assert.Equal(anonymousType.Name, foodParameter.Name); | ||
Assert.Equal(anonymousType.Price, foodParameter.Price); | ||
|
||
// Check if state has OriginalFormat | ||
Assert.Contains(state, item => item.Key == "{OriginalFormat}"); | ||
Assert.Equal("{food}", state.First(item => item.Key == "{OriginalFormat}").Value); | ||
|
||
Assert.Equal(anonymousType.ToString(), state.ToString()); | ||
} | ||
|
||
[Fact] | ||
public void CheckStateForStrucutredLogWithGeneralType() | ||
{ | ||
var food = new Dictionary<string, object> | ||
{ | ||
["Name"] = "truffle", | ||
["Price"] = 299.99, | ||
}; | ||
this.logger.LogInformation("{food}", food); | ||
var state = this.exportedItems[0].State as IReadOnlyList<KeyValuePair<string, object>>; | ||
|
||
// state only has food and {OriginalFormat} | ||
Assert.Equal(2, state.Count); | ||
|
||
// Check if state has food | ||
Assert.Contains(state, item => item.Key == "food"); | ||
|
||
var foodParameter = state.First(item => item.Key == "food").Value as Dictionary<string, object>; | ||
Assert.True(food.Count == foodParameter.Count && !food.Except(foodParameter).Any()); | ||
|
||
// Check if state has OriginalFormat | ||
Assert.Contains(state, item => item.Key == "{OriginalFormat}"); | ||
Assert.Equal("{food}", state.First(item => item.Key == "{OriginalFormat}").Value); | ||
|
||
Assert.Equal("[Name, truffle], [Price, 299.99]", state.ToString()); | ||
} | ||
|
||
[Fact] | ||
public void CheckStateForExceptionLogged() | ||
{ | ||
var exceptionMessage = "Exception Message"; | ||
var exception = new Exception(exceptionMessage); | ||
var message = "Exception Occurred"; | ||
this.logger.LogInformation(exception, message); | ||
|
||
var state = this.exportedItems[0].State; | ||
var itemCount = state.GetType().GetProperty("Count").GetValue(state); | ||
|
||
// state only has {OriginalFormat} | ||
Assert.Equal(1, itemCount); | ||
|
||
var loggedException = this.exportedItems[0].Exception; | ||
Assert.NotNull(loggedException); | ||
Assert.Equal(exceptionMessage, loggedException.Message); | ||
|
||
Assert.Equal(message.ToString(), state.ToString()); | ||
} | ||
|
||
[Fact] | ||
public void CheckTraceIdForLogWithinDroppedActivity() | ||
{ | ||
this.logger.LogInformation("Log within a dropped activity"); | ||
var logRecord = this.exportedItems[0]; | ||
|
||
Assert.Null(Activity.Current); | ||
Assert.Equal(default, logRecord.TraceId); | ||
Assert.Equal(default, logRecord.SpanId); | ||
Assert.Equal(default, logRecord.TraceFlags); | ||
} | ||
|
||
[Fact] | ||
public void CheckTraceIdForLogWithinActivityMarkedAsRecordOnly() | ||
{ | ||
var sampler = new RecordOnlySampler(); | ||
var exportedActivityList = new List<Activity>(); | ||
var activitySourceName = "LogRecordTest"; | ||
var activitySource = new ActivitySource(activitySourceName); | ||
using var tracerProvider = Sdk.CreateTracerProviderBuilder() | ||
.AddSource(activitySourceName) | ||
.SetSampler(sampler) | ||
.AddInMemoryExporter(exportedActivityList) | ||
.Build(); | ||
|
||
using var activity = activitySource.StartActivity("Activity"); | ||
|
||
this.logger.LogInformation("Log within activity marked as RecordOnly"); | ||
var logRecord = this.exportedItems[0]; | ||
|
||
var currentActivity = Activity.Current; | ||
Assert.NotNull(Activity.Current); | ||
Assert.Equal(currentActivity.TraceId, logRecord.TraceId); | ||
Assert.Equal(currentActivity.SpanId, logRecord.SpanId); | ||
Assert.Equal(currentActivity.ActivityTraceFlags, logRecord.TraceFlags); | ||
} | ||
|
||
[Fact] | ||
public void CheckTraceIdForLogWithinActivityMarkedAsRecordAndSample() | ||
{ | ||
var sampler = new AlwaysOnSampler(); | ||
var exportedActivityList = new List<Activity>(); | ||
var activitySourceName = "LogRecordTest"; | ||
var activitySource = new ActivitySource(activitySourceName); | ||
using var tracerProvider = Sdk.CreateTracerProviderBuilder() | ||
.AddSource(activitySourceName) | ||
.SetSampler(sampler) | ||
.AddInMemoryExporter(exportedActivityList) | ||
.Build(); | ||
|
||
using var activity = activitySource.StartActivity("Activity"); | ||
|
||
this.logger.LogInformation("Log within activity marked as RecordAndSample"); | ||
var logRecord = this.exportedItems[0]; | ||
|
||
var currentActivity = Activity.Current; | ||
Assert.NotNull(Activity.Current); | ||
Assert.Equal(currentActivity.TraceId, logRecord.TraceId); | ||
Assert.Equal(currentActivity.SpanId, logRecord.SpanId); | ||
Assert.Equal(currentActivity.ActivityTraceFlags, logRecord.TraceFlags); | ||
} | ||
|
||
public void Dispose() | ||
{ | ||
#if NETCOREAPP2_1 | ||
this.serviceProvider?.Dispose(); | ||
#else | ||
this.loggerFactory?.Dispose(); | ||
#endif | ||
} | ||
|
||
internal struct Food | ||
{ | ||
public string Name { get; set; } | ||
|
||
public double Price { get; set; } | ||
} | ||
} | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters