add fuzzy string match support for Programs plugin

This commit is contained in:
cxfksword
2014-02-09 00:33:10 +08:00
committed by Yeechan Lu
parent 8c7547ab03
commit a9fa1fb66b
5 changed files with 107 additions and 4 deletions

View File

@@ -0,0 +1,44 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NUnit.Framework;
using Wox.Infrastructure;
namespace Wox.Test
{
[TestFixture]
public class FuzzyMatcherTest
{
[Test]
public void MatchTest()
{
var sources = new List<string>()
{
"file open in browser-test",
"Install Package",
"add new bsd",
"Inste",
"aac",
};
var results = new List<Wox.Plugin.Result>();
foreach (var str in sources)
{
results.Add(new Plugin.Result()
{
Title = str,
Score = FuzzyMatcher.Create("inst").Score(str)
});
}
results = results.Where(x => x.Score > 0).OrderByDescending(x => x.Score).ToList();
Assert.IsTrue(results.Count == 3);
Assert.IsTrue(results[0].Title == "Inste");
Assert.IsTrue(results[1].Title == "Install Package");
Assert.IsTrue(results[2].Title == "file open in browser-test");
}
}
}