-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModuleTests.cs
105 lines (87 loc) · 3.09 KB
/
ModuleTests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
using IntegrationTests.Helpers;
using Newtonsoft.Json;
using OpenTelemetry.AutoInstrumentation;
using OpenTelemetry.AutoInstrumentation.Configurations;
using Xunit.Abstractions;
namespace IntegrationTests;
[UsesVerify]
public class ModuleTests : TestHelper
{
public ModuleTests(ITestOutputHelper output)
: base("Modules", output)
{
}
[Fact]
public async Task Default()
{
EnableDefaultExporters();
EnableBytecodeInstrumentation();
string verifyTestName =
#if NETFRAMEWORK
$"{nameof(ModuleTests)}.{nameof(Default)}.NetFx";
#else
$"{nameof(ModuleTests)}.{nameof(Default)}.NetCore";
#endif
await RunTests(verifyTestName);
}
[Fact]
public async Task DefaultNoExporters()
{
// Exporters using RPC can cause dependency loads, which can cause next instrumentation loads.
// This test ensures correct instrumentation loading.
SetEnvironmentVariable(ConfigurationKeys.Traces.Exporter, Constants.ConfigurationValues.None);
SetEnvironmentVariable(ConfigurationKeys.Metrics.Exporter, Constants.ConfigurationValues.None);
SetEnvironmentVariable(ConfigurationKeys.Logs.Exporter, Constants.ConfigurationValues.None);
string verifyTestName =
#if NETFRAMEWORK
$"{nameof(ModuleTests)}.{nameof(DefaultNoExporters)}.NetFx";
#else
$"{nameof(ModuleTests)}.{nameof(DefaultNoExporters)}.NetCore";
#endif
await RunTests(verifyTestName);
}
[Fact]
public async Task Minimal()
{
SetEnvironmentVariable(ConfigurationKeys.InstrumentationEnabled, "false");
SetEnvironmentVariable(ConfigurationKeys.ResourceDetectorEnabled, "false");
SetEnvironmentVariable(ConfigurationKeys.Traces.Exporter, Constants.ConfigurationValues.None);
SetEnvironmentVariable(ConfigurationKeys.Metrics.Exporter, Constants.ConfigurationValues.None);
SetEnvironmentVariable(ConfigurationKeys.Logs.Exporter, Constants.ConfigurationValues.None);
SetEnvironmentVariable(ConfigurationKeys.Traces.OpenTracingEnabled, bool.FalseString);
string verifyTestName =
#if NETFRAMEWORK
$"{nameof(ModuleTests)}.{nameof(Minimal)}.NetFx";
#else
$"{nameof(ModuleTests)}.{nameof(Minimal)}.NetCore";
#endif
await RunTests(verifyTestName);
}
private async Task RunTests(string verifyName)
{
var tempPath = Path.GetTempFileName();
try
{
RunTestApplication(new()
{
Arguments = $"--temp-path {tempPath}"
});
if (!File.Exists(tempPath))
{
Assert.Fail("Could not find modules report file.");
}
var json = File.ReadAllText(tempPath);
var modules = JsonConvert.DeserializeObject<string[]>(json);
await Verifier.Verify(modules)
.UseFileName(verifyName)
.DisableDiff();
}
finally
{
// Cleanup
File.Delete(tempPath);
}
}
}