-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
TestNotSupported.cs
46 lines (40 loc) · 1.86 KB
/
TestNotSupported.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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using SdtEventSources;
using System.Collections.Generic;
using System.Diagnostics.Tracing;
using Microsoft.DotNet.RemoteExecutor;
using Xunit;
namespace BasicEventSourceTests
{
public class TestNotSupported
{
/// <summary>
/// Tests using EventSource when the System.Diagnostics.Tracing.EventSource.IsSupported
/// feature switch is set to disable all EventSource operations.
/// </summary>
[ConditionalFact(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
public void TestBasicOperations_IsSupported_False()
{
RemoteInvokeOptions options = new RemoteInvokeOptions();
options.RuntimeConfigurationOptions.Add("System.Diagnostics.Tracing.EventSource.IsSupported", false);
RemoteExecutor.Invoke(() =>
{
using (var log = new EventSourceTest())
{
using (var listener = new LoudListener(log))
{
IEnumerable<EventSource> sources = EventSource.GetSources();
Assert.Empty(sources);
Assert.Null(EventSource.GenerateManifest(typeof(SimpleEventSource), string.Empty, EventManifestOptions.OnlyIfNeededForRegistration));
Assert.Null(EventSource.GenerateManifest(typeof(EventSourceTest), string.Empty, EventManifestOptions.AllCultures));
log.Event0();
Assert.Null(LoudListener.LastEvent);
EventSource.SendCommand(log, EventCommand.Enable, commandArguments: null);
Assert.False(log.IsEnabled());
}
}
}, options).Dispose();
}
}
}