mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-13 17:23:02 -05:00
* Open XEL file changes * placeholders for openxel * add observable xe reader * md format tweaks * implement localfile as a new session type * add ErrorMessage to session stopped notice * fix flaky test * handle already running session * fix stopped session event send on file completion * fix flaky unit test * Update XElite and dependent versions * Fix errors after merge and remove failing tests for now * Fix main merge mess-up. Address comments. Add one more relevant test. * Remove extra namespace. * Remove unnecessary import * Fix build error * Address comments. * Remove disabiling JSON002 compiler warning * Address comments and update json handling * Fix build error * Fix integration test (emerged due to Main merge mess up) * Clean up code (no functional changes) --------- Co-authored-by: Karl Burtram <karlb@microsoft.com> Co-authored-by: shueybubbles <david.shiflet@microsoft.com>
166 lines
6.2 KiB
C#
166 lines
6.2 KiB
C#
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
//
|
|
|
|
#nullable disable
|
|
|
|
using System;
|
|
using System.Threading;
|
|
using Microsoft.SqlTools.ServiceLayer.Profiler;
|
|
using Microsoft.SqlTools.ServiceLayer.Profiler.Contracts;
|
|
using NUnit.Framework;
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.UnitTests.Profiler
|
|
{
|
|
/// <summary>
|
|
/// Tests for ProfilerSession class
|
|
/// </summary>
|
|
public class ProfilerSessionTests
|
|
{
|
|
/// <summary>
|
|
/// Test the FilterOldEvents method
|
|
/// </summary>
|
|
[Test]
|
|
public void TestFilterOldEvents()
|
|
{
|
|
// create a profiler session and get some test events
|
|
var profilerSession = new ProfilerSession(new XEventSession());
|
|
var allEvents = ProfilerTestObjects.TestProfilerEvents;
|
|
var profilerEvents = ProfilerTestObjects.TestProfilerEvents;
|
|
|
|
// filter all the results from the first poll
|
|
// these events happened before the profiler began
|
|
profilerSession.FilterOldEvents(profilerEvents);
|
|
Assert.AreEqual(0, profilerEvents.Count);
|
|
|
|
// add a new event
|
|
var newEvent = new ProfilerEvent("new event", "1/1/2017");
|
|
newEvent.Values.Add("event_sequence", "4");
|
|
allEvents.Add(newEvent);
|
|
|
|
// poll all events
|
|
profilerEvents.AddRange(allEvents);
|
|
|
|
// filtering should leave only the new event
|
|
profilerSession.FilterOldEvents(profilerEvents);
|
|
Assert.AreEqual(1, profilerEvents.Count);
|
|
Assert.True(profilerEvents[0].Equals(newEvent));
|
|
|
|
//poll again with no new events
|
|
profilerEvents.AddRange(allEvents);
|
|
|
|
// filter should now filter all the events since they've been seen before
|
|
profilerSession.FilterOldEvents(profilerEvents);
|
|
Assert.AreEqual(0, profilerEvents.Count);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Test the FilterProfilerEvents method
|
|
/// </summary>
|
|
[Test]
|
|
public void TestFilterProfilerEvents()
|
|
{
|
|
// create a profiler session and get some test events
|
|
var profilerSession = new ProfilerSession(new XEventSession());
|
|
var profilerEvents = ProfilerTestObjects.TestProfilerEvents;
|
|
|
|
int expectedEventCount = profilerEvents.Count;
|
|
|
|
// add a new "Profiler Polling" event
|
|
var newEvent = new ProfilerEvent("sql_batch_completed", "1/1/2017");
|
|
newEvent.Values.Add("batch_text", "SELECT target_data FROM sys.dm_xe_session_targets");
|
|
newEvent.Values.Add("event_sequence", "4");
|
|
profilerEvents.Add(newEvent);
|
|
|
|
// verify that the polling event is removed
|
|
Assert.AreEqual(profilerEvents.Count, expectedEventCount + 1);
|
|
var newProfilerEvents = profilerSession.FilterProfilerEvents(profilerEvents);
|
|
Assert.AreEqual(newProfilerEvents.Count, expectedEventCount);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Test notifications for lost events
|
|
/// </summary>
|
|
[Test]
|
|
public void TestEventsLost()
|
|
{
|
|
// create a profiler session and get some test events
|
|
var profilerSession = new ProfilerSession(new XEventSession());
|
|
var profilerEvents = ProfilerTestObjects.TestProfilerEvents;
|
|
|
|
// filter all the results from the first poll
|
|
// these events happened before the profiler began
|
|
profilerSession.FilterOldEvents(profilerEvents);
|
|
Assert.AreEqual(0, profilerEvents.Count);
|
|
// No events should be lost
|
|
Assert.False(profilerSession.EventsLost);
|
|
|
|
// test all events are overwritten, but no events are lost
|
|
profilerEvents.Clear();
|
|
ProfilerEvent newEvent = new ProfilerEvent("event4", "6/18/2018");
|
|
newEvent.Values.Add("event_sequence", "4");
|
|
|
|
profilerEvents.Add(newEvent);
|
|
profilerSession.FilterOldEvents(profilerEvents);
|
|
|
|
// should not show event loss
|
|
Assert.False(profilerSession.EventsLost);
|
|
|
|
// test all events are overwritten, and events are lost
|
|
profilerEvents.Clear();
|
|
newEvent = new ProfilerEvent("event7", "6/18/2018");
|
|
newEvent.Values.Add("event_sequence", "7");
|
|
|
|
profilerEvents.Add(newEvent);
|
|
profilerSession.FilterOldEvents(profilerEvents);
|
|
|
|
// should show event loss
|
|
Assert.True(profilerSession.EventsLost);
|
|
|
|
//poll again with previously seen events
|
|
profilerEvents.Add(newEvent);
|
|
|
|
// old events were seen, no event loss occured
|
|
profilerSession.FilterOldEvents(profilerEvents);
|
|
Assert.False(profilerSession.EventsLost);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Test the TryEnterPolling method
|
|
/// </summary>
|
|
[Test]
|
|
public void TestTryEnterPolling()
|
|
{
|
|
DateTime startTime = DateTime.Now;
|
|
|
|
// create new profiler session
|
|
var profilerSession = new ProfilerSession(new XEventSession());
|
|
|
|
// enter the polling block
|
|
Assert.True(profilerSession.TryEnterPolling());
|
|
Assert.True(profilerSession.IsPolling);
|
|
|
|
// verify we can't enter again
|
|
Assert.False(profilerSession.TryEnterPolling());
|
|
|
|
// set polling to false to exit polling block
|
|
profilerSession.IsPolling = false;
|
|
|
|
bool outsideDelay = DateTime.Now.Subtract(startTime) >= profilerSession.PollingDelay;
|
|
|
|
// verify we can only enter again if we're outside polling delay interval
|
|
Assert.AreEqual(profilerSession.TryEnterPolling(), outsideDelay);
|
|
|
|
// reset IsPolling in case the delay has elasped on slow machine or while debugging
|
|
profilerSession.IsPolling = false;
|
|
|
|
// wait for the polling delay to elapse
|
|
Thread.Sleep(profilerSession.PollingDelay);
|
|
|
|
// verify we can enter the polling block again
|
|
Assert.True(profilerSession.TryEnterPolling());
|
|
}
|
|
}
|
|
}
|