Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix stack overflow in FilterExpression.ValidForProperties #3946

Merged
merged 16 commits into from Aug 24, 2022
Merged
96 changes: 70 additions & 26 deletions src/Microsoft.TestPlatform.Common/Filtering/FilterExpression.cs
Expand Up @@ -119,27 +119,26 @@ private static void ProcessOperator(Stack<FilterExpression> filterStack, Operato
/// </summary>
internal string[]? ValidForProperties(IEnumerable<string>? properties, Func<string, TestProperty?>? propertyProvider)
{
string[]? invalidProperties = null;

if (null == properties)
{
// if null, initialize to empty list so that invalid properties can be found.
properties = Enumerable.Empty<string>();
}

bool valid = false;
if (_condition != null)
return IterateFilterExpression<string[]?>((current, result) =>
{
valid = _condition.ValidForProperties(properties, propertyProvider);
if (!valid)
if (current._condition != null) // only the leaves have a condition value
{
invalidProperties = new string[1] { _condition.Name };
bool valid = false;
valid = current._condition.ValidForProperties(properties, propertyProvider);
// if it's not valid will add it to the function's return array
return !valid ? new string[1] { current._condition.Name } : null;
}
}
else
{
invalidProperties = _left!.ValidForProperties(properties, propertyProvider);
var invalidRight = _right!.ValidForProperties(properties, propertyProvider);

// concatenate the children node's result to get their parent result
var invalidRight = current._right != null ? result.Pop() : null;
var invalidProperties = current._left != null ? result.Pop() : null;

if (null == invalidProperties)
{
invalidProperties = invalidRight;
Expand All @@ -148,9 +147,10 @@ private static void ProcessOperator(Stack<FilterExpression> filterStack, Operato
{
invalidProperties = invalidProperties.Concat(invalidRight).ToArray();
}
}

return invalidProperties;
return invalidProperties;
});

}

/// <summary>
Expand Down Expand Up @@ -265,7 +265,46 @@ internal static FilterExpression Parse(string filterString, out FastFilter? fast

return filterStack.Pop();
}
private T IterateFilterExpression<T>(Func<FilterExpression, Stack<T>, T> getNodeValue)
{
FilterExpression? current = this;
//will have the nodes
Stack<FilterExpression> filterStack = new();
// will contain the nodes results to use them in thier parent result's calculation
// and at the end will have the root result.
Stack<T> result = new();

do
{
// Push root's right child and then root to stack then Set root as root's left child.
while (current != null)
{
if (current._right != null)
{
filterStack.Push(current._right);
}
filterStack.Push(current);
current = current._left;
}

// If the popped item has a right child and the right child is at top of stack,
// then remove the right child from stack, push the root back and set root as root's right child.
current = filterStack.Pop();
if (filterStack.Count > 0 && current._right == filterStack.Peek())
{
filterStack.Pop();
filterStack.Push(current);
current = current._right;
continue;
}

result.Push(getNodeValue(current, result));
current = null;
} while (filterStack.Count > 0);

TPDebug.Assert(result.Count == 1, "Result stack should have one element at the end.");
return result.Peek();
}
/// <summary>
/// Evaluate filterExpression with given propertyValueProvider.
/// </summary>
Expand All @@ -274,19 +313,24 @@ internal static FilterExpression Parse(string filterString, out FastFilter? fast
internal bool Evaluate(Func<string, object?> propertyValueProvider)
{
ValidateArg.NotNull(propertyValueProvider, nameof(propertyValueProvider));
bool filterResult = false;
if (null != _condition)
{
filterResult = _condition.Evaluate(propertyValueProvider);
}
else

return IterateFilterExpression<bool>((current, result) =>
{
// & or | operator
bool leftResult = _left!.Evaluate(propertyValueProvider);
bool rightResult = _right!.Evaluate(propertyValueProvider);
filterResult = _areJoinedByAnd ? leftResult && rightResult : leftResult || rightResult;
}
return filterResult;
bool filterResult = false;
if (null != current._condition) // only the leaves have a condition value
{
filterResult = current._condition.Evaluate(propertyValueProvider);
}
else
Evangelink marked this conversation as resolved.
Show resolved Hide resolved
{
// & or | operator
bool rightResult = current._right != null ? result.Pop() : false;
bool leftResult = current._left != null ? result.Pop() : false;
// concatenate the children node's result to get their parent result
filterResult = current._areJoinedByAnd ? leftResult && rightResult : leftResult || rightResult;
}
return filterResult;
});
}

internal static IEnumerable<string> TokenizeFilterExpressionString(string str)
Expand Down
Expand Up @@ -5,6 +5,7 @@
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Text;

using Microsoft.VisualStudio.TestPlatform.Common.Filtering;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Client;
Expand Down Expand Up @@ -90,6 +91,37 @@ public void FastFilterWithSingleEqualsClause()
Assert.IsFalse(fastFilter.Evaluate(s => "Test2"));
}

[TestMethod]
public void ValidForPropertiesHandlesBigFilteringExpressions()
{
StringBuilder testCaseFilter = new("Category=Test1");

for (int i = 0; i < 1e5; i++) // creating a 100k filter cases string
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
for (int i = 0; i < 1e5; i++) // creating a 100k filter cases string
// Create filter with 100k conditions.
for (int i = 0; i < 100_000; i++)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just a nitpick.

{
testCaseFilter.Append("|Test2");
}

var filterExpressionWrapper = new FilterExpressionWrapper(testCaseFilter.ToString());
string[]? invalidProperties = filterExpressionWrapper.ValidForProperties(new List<string>() { "FullyQualifiedName" }, null);

Assert.IsNotNull(invalidProperties);
Assert.AreEqual(invalidProperties?.Count(), 1);
Evangelink marked this conversation as resolved.
Show resolved Hide resolved
Assert.AreEqual(invalidProperties![0], "Category");
Evangelink marked this conversation as resolved.
Show resolved Hide resolved
}

[TestMethod]
public void EvaluateHandlesBigFilteringExpressions()
{
StringBuilder testCaseFilter = new("Test1");
for (int i = 0; i < 1e5; i++) // creating a 100k filter cases string
{
testCaseFilter.Append("|Test2");
}

var filterExpressionWrapper = new FilterExpressionWrapper(testCaseFilter.ToString());
Assert.IsTrue(filterExpressionWrapper.Evaluate(s => "Test1"));
}

[TestMethod]
public void FastFilterWithMultipleEqualsClause()
{
Expand Down