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); } } }