mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-30 14:17:56 +08:00
a161a94241
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
207 lines
8.7 KiB
C#
207 lines
8.7 KiB
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using Mono.Collections.Generic;
|
|
using NUnit.Framework;
|
|
using Wox.Core.Plugin;
|
|
using Wox.Plugin;
|
|
|
|
namespace Wox.Test
|
|
{
|
|
public class QueryBuilderTest
|
|
{
|
|
private static bool AreEqual(Query firstQuery, Query secondQuery)
|
|
{
|
|
// Using Ordinal since this is used internally
|
|
return firstQuery.ActionKeyword.Equals(secondQuery.ActionKeyword, StringComparison.Ordinal)
|
|
&& firstQuery.Search.Equals(secondQuery.Search, StringComparison.Ordinal)
|
|
&& firstQuery.RawQuery.Equals(secondQuery.RawQuery, StringComparison.Ordinal);
|
|
}
|
|
|
|
[Test]
|
|
public void QueryBuilderShouldRemoveExtraSpacesForNonGlobalPlugin()
|
|
{
|
|
// Arrange
|
|
var nonGlobalPlugins = new Dictionary<string, PluginPair>
|
|
{
|
|
{ ">", new PluginPair { Metadata = new PluginMetadata(new List<string> { ">" } ) } },
|
|
};
|
|
string searchQuery = "> file.txt file2 file3";
|
|
|
|
// Act
|
|
var pluginQueryPairs = QueryBuilder.Build(ref searchQuery, nonGlobalPlugins);
|
|
|
|
// Assert
|
|
Assert.AreEqual("> file.txt file2 file3", searchQuery);
|
|
}
|
|
|
|
[Test]
|
|
public void QueryBuilderShouldRemoveExtraSpacesForDisabledNonGlobalPlugin()
|
|
{
|
|
// Arrange
|
|
var nonGlobalPlugins = new Dictionary<string, PluginPair>
|
|
{
|
|
{ ">", new PluginPair { Metadata = new PluginMetadata(new List<string> { ">" }) { Disabled = true } } },
|
|
};
|
|
string searchQuery = "> file.txt file2 file3";
|
|
|
|
// Act
|
|
var pluginQueryPairs = QueryBuilder.Build(ref searchQuery, nonGlobalPlugins);
|
|
|
|
// Assert
|
|
Assert.AreEqual("> file.txt file2 file3", searchQuery);
|
|
}
|
|
|
|
[Test]
|
|
public void QueryBuilderShouldRemoveExtraSpacesForGlobalPlugin()
|
|
{
|
|
// Arrange
|
|
string searchQuery = "file.txt file2 file3";
|
|
|
|
// Act
|
|
var pluginQueryPairs = QueryBuilder.Build(ref searchQuery, new Dictionary<string, PluginPair>());
|
|
|
|
// Assert
|
|
Assert.AreEqual("file.txt file2 file3", searchQuery);
|
|
}
|
|
|
|
[Test]
|
|
public void QueryBuilderShouldGenerateSameQueryIfEitherActionKeywordOrActionKeywordsListIsSet()
|
|
{
|
|
// Arrange
|
|
string searchQuery = "> query";
|
|
var firstPlugin = new PluginPair { Metadata = new PluginMetadata(new List<string> { ">" } ) };
|
|
var secondPlugin = new PluginPair { Metadata = new PluginMetadata { ActionKeyword = ">" } };
|
|
|
|
var nonGlobalPluginWithActionKeywords = new Dictionary<string, PluginPair>
|
|
{
|
|
{ ">", firstPlugin },
|
|
};
|
|
|
|
var nonGlobalPluginWithActionKeyword = new Dictionary<string, PluginPair>
|
|
{
|
|
{ ">", secondPlugin },
|
|
};
|
|
string[] terms = { ">", "query" };
|
|
Query expectedQuery = new Query("> query", "query", new ReadOnlyCollection<string>(terms), ">");
|
|
|
|
// Act
|
|
var queriesForPluginsWithActionKeywords = QueryBuilder.Build(ref searchQuery, nonGlobalPluginWithActionKeywords);
|
|
var queriesForPluginsWithActionKeyword = QueryBuilder.Build(ref searchQuery, nonGlobalPluginWithActionKeyword);
|
|
|
|
var firstQuery = queriesForPluginsWithActionKeyword.GetValueOrDefault(firstPlugin);
|
|
var secondQuery = queriesForPluginsWithActionKeywords.GetValueOrDefault(secondPlugin);
|
|
|
|
// Assert
|
|
Assert.IsTrue(AreEqual(firstQuery, expectedQuery));
|
|
Assert.IsTrue(AreEqual(firstQuery, secondQuery));
|
|
}
|
|
|
|
[Test]
|
|
public void QueryBuilderShouldGenerateCorrectQueriesForPluginsWithMultipleActionKeywords()
|
|
{
|
|
// Arrange
|
|
var plugin = new PluginPair { Metadata = new PluginMetadata(new List<string> { "a", "b" } ) };
|
|
var nonGlobalPlugins = new Dictionary<string, PluginPair>
|
|
{
|
|
{ "a", plugin },
|
|
{ "b", plugin },
|
|
};
|
|
|
|
var firstQueryText = "asearch";
|
|
var secondQueryText = "bsearch";
|
|
|
|
// Act
|
|
var firstPluginQueryPair = QueryBuilder.Build(ref firstQueryText, nonGlobalPlugins);
|
|
var firstQuery = firstPluginQueryPair.GetValueOrDefault(plugin);
|
|
|
|
var secondPluginQueryPairs = QueryBuilder.Build(ref secondQueryText, nonGlobalPlugins);
|
|
var secondQuery = secondPluginQueryPairs.GetValueOrDefault(plugin);
|
|
|
|
// Assert
|
|
Assert.IsTrue(AreEqual(firstQuery, new Query { ActionKeyword = "a", RawQuery = "asearch", Search = "search" }));
|
|
Assert.IsTrue(AreEqual(secondQuery, new Query { ActionKeyword = "b", RawQuery = "bsearch", Search = "search" }));
|
|
}
|
|
|
|
[Test]
|
|
public void QueryBuildShouldGenerateSameSearchQueryWithOrWithoutSpaceAfterActionKeyword()
|
|
{
|
|
// Arrange
|
|
var plugin = new PluginPair { Metadata = new PluginMetadata(new List<string> { "a" } ) };
|
|
var nonGlobalPlugins = new Dictionary<string, PluginPair>
|
|
{
|
|
{ "a", plugin },
|
|
};
|
|
|
|
var firstQueryText = "asearch";
|
|
var secondQueryText = "a search";
|
|
|
|
// Act
|
|
var firstPluginQueryPair = QueryBuilder.Build(ref firstQueryText, nonGlobalPlugins);
|
|
var firstQuery = firstPluginQueryPair.GetValueOrDefault(plugin);
|
|
|
|
var secondPluginQueryPairs = QueryBuilder.Build(ref secondQueryText, nonGlobalPlugins);
|
|
var secondQuery = secondPluginQueryPairs.GetValueOrDefault(plugin);
|
|
|
|
// Assert
|
|
// Using Ordinal since this is used internally
|
|
Assert.IsTrue(firstQuery.Search.Equals(secondQuery.Search, StringComparison.Ordinal));
|
|
Assert.IsTrue(firstQuery.ActionKeyword.Equals(secondQuery.ActionKeyword, StringComparison.Ordinal));
|
|
}
|
|
|
|
[Test]
|
|
public void QueryBuildShouldGenerateCorrectQueryForPluginsWhoseActionKeywordsHaveSamePrefix()
|
|
{
|
|
// Arrange
|
|
string searchQuery = "abcdefgh";
|
|
var firstPlugin = new PluginPair { Metadata = new PluginMetadata { ActionKeyword = "ab", ID = "plugin1" } };
|
|
var secondPlugin = new PluginPair { Metadata = new PluginMetadata { ActionKeyword = "abcd", ID = "plugin2" } };
|
|
|
|
var nonGlobalPlugins = new Dictionary<string, PluginPair>
|
|
{
|
|
{ "ab", firstPlugin },
|
|
{ "abcd", secondPlugin },
|
|
};
|
|
|
|
// Act
|
|
var pluginQueryPairs = QueryBuilder.Build(ref searchQuery, nonGlobalPlugins);
|
|
|
|
var firstQuery = pluginQueryPairs.GetValueOrDefault(firstPlugin);
|
|
var secondQuery = pluginQueryPairs.GetValueOrDefault(secondPlugin);
|
|
|
|
// Assert
|
|
Assert.IsTrue(AreEqual(firstQuery, new Query { RawQuery = searchQuery, Search = searchQuery.Substring(firstPlugin.Metadata.ActionKeyword.Length), ActionKeyword = firstPlugin.Metadata.ActionKeyword } ));
|
|
Assert.IsTrue(AreEqual(secondQuery, new Query { RawQuery = searchQuery, Search = searchQuery.Substring(secondPlugin.Metadata.ActionKeyword.Length), ActionKeyword = secondPlugin.Metadata.ActionKeyword }));
|
|
}
|
|
|
|
[Test]
|
|
public void QueryBuilderShouldSetTermsCorrectlyWhenCalled()
|
|
{
|
|
// Arrange
|
|
string searchQuery = "abcd efgh";
|
|
var firstPlugin = new PluginPair { Metadata = new PluginMetadata { ActionKeyword = "ab", ID = "plugin1" } };
|
|
var secondPlugin = new PluginPair { Metadata = new PluginMetadata { ActionKeyword = "abcd", ID = "plugin2" } };
|
|
|
|
var nonGlobalPlugins = new Dictionary<string, PluginPair>
|
|
{
|
|
{ "ab", firstPlugin },
|
|
{ "abcd", secondPlugin },
|
|
};
|
|
|
|
// Act
|
|
var pluginQueryPairs = QueryBuilder.Build(ref searchQuery, nonGlobalPlugins);
|
|
|
|
var firstQuery = pluginQueryPairs.GetValueOrDefault(firstPlugin);
|
|
var secondQuery = pluginQueryPairs.GetValueOrDefault(secondPlugin);
|
|
|
|
// Assert
|
|
// Using Ordinal since this is used internally
|
|
Assert.IsTrue(firstQuery.Terms[0].Equals("cd", StringComparison.Ordinal) && firstQuery.Terms[1].Equals("efgh", StringComparison.Ordinal) && firstQuery.Terms.Count == 2);
|
|
Assert.IsTrue(secondQuery.Terms[0].Equals("efgh", StringComparison.Ordinal) && secondQuery.Terms.Count == 1);
|
|
}
|
|
}
|
|
}
|