mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-22 08:02:24 +08:00
56 lines
1.8 KiB
C#
56 lines
1.8 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.Collections.Generic;
|
|
using NUnit.Framework;
|
|
using Wox.Core.Plugin;
|
|
using Wox.Plugin;
|
|
|
|
namespace Wox.Test
|
|
{
|
|
public class QueryBuilderTest
|
|
{
|
|
[Test]
|
|
public void ExclusivePluginQueryTest()
|
|
{
|
|
var nonGlobalPlugins = new Dictionary<string, PluginPair>
|
|
{
|
|
{ ">", new PluginPair { Metadata = new PluginMetadata { ActionKeywords = new List<string> { ">" } } } }
|
|
};
|
|
|
|
Query q = QueryBuilder.Build("> file.txt file2 file3", nonGlobalPlugins);
|
|
|
|
Assert.AreEqual("file.txt file2 file3", q.Search);
|
|
Assert.AreEqual(">", q.ActionKeyword);
|
|
}
|
|
|
|
[Test]
|
|
public void ExclusivePluginQueryIgnoreDisabledTest()
|
|
{
|
|
var nonGlobalPlugins = new Dictionary<string, PluginPair>
|
|
{
|
|
{ ">", new PluginPair { Metadata = new PluginMetadata { ActionKeywords = new List<string> { ">" }, Disabled = true } } }
|
|
};
|
|
|
|
Query q = QueryBuilder.Build("> file.txt file2 file3", nonGlobalPlugins);
|
|
|
|
Assert.AreEqual("> file.txt file2 file3", q.Search);
|
|
}
|
|
|
|
[Test]
|
|
public void GenericPluginQueryTest()
|
|
{
|
|
Query q = QueryBuilder.Build("file.txt file2 file3", new Dictionary<string, PluginPair>());
|
|
|
|
Assert.AreEqual("file.txt file2 file3", q.Search);
|
|
Assert.AreEqual("", q.ActionKeyword);
|
|
|
|
Assert.AreEqual("file.txt", q.FirstSearch);
|
|
Assert.AreEqual("file2", q.SecondSearch);
|
|
Assert.AreEqual("file3", q.ThirdSearch);
|
|
Assert.AreEqual("file2 file3", q.SecondToEndSearch);
|
|
}
|
|
}
|
|
}
|