mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
703 B
23 lines
703 B
using ErsatzTV.Infrastructure.Search; |
|
using FluentAssertions; |
|
using Lucene.Net.Search; |
|
using NUnit.Framework; |
|
|
|
namespace ErsatzTV.Infrastructure.Tests.Search; |
|
|
|
public class SearchQueryParserTests |
|
{ |
|
[TestFixture] |
|
public class ParseQuery |
|
{ |
|
[TestCase("actor:\"Will Smith\"", "actor:\"will smith\"")] |
|
[TestCase("tag:\"Will Smith\"", "tag:\"will smith\"")] |
|
[TestCase("library_id:4", "library_id:4")] |
|
[TestCase("content_rating:\"TV-14\"", "content_rating:TV-14")] |
|
public void Test(string input, string expected) |
|
{ |
|
Query result = SearchQueryParser.ParseQuery(input); |
|
result.ToString().Should().Be(expected); |
|
} |
|
} |
|
}
|
|
|