forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestNotSupported.cs
More file actions
51 lines (45 loc) · 2 KB
/
TestNotSupported.cs
File metadata and controls
51 lines (45 loc) · 2 KB
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
using Xunit;
using SdtEventSources;
using Microsoft.DotNet.RemoteExecutor;
#if USE_MDT_EVENTSOURCE
using Microsoft.Diagnostics.Tracing;
#else
using System.Diagnostics.Tracing;
#endif
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();
}
}
}