mirror of
https://github.com/Radarr/Radarr
synced 2025-02-22 06:11:09 +00:00
SearchForSeries won't fail if an apostrophe is used in the search term (Let's PetaPoco handle building the query, as it should).
This commit is contained in:
parent
51958672d0
commit
58abb6fbc2
2 changed files with 29 additions and 4 deletions
|
@ -721,5 +721,30 @@ public void SearchForSeries_should_not_return_results_that_do_not_contain_the_qu
|
||||||
//Assert
|
//Assert
|
||||||
series.Should().HaveCount(0);
|
series.Should().HaveCount(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void SearchForSeries_should_return_results_when_query_has_special_characters()
|
||||||
|
{
|
||||||
|
var mocker = new AutoMoqer(MockBehavior.Strict);
|
||||||
|
var db = TestDbHelper.GetEmptyDatabase();
|
||||||
|
mocker.SetConstant(db);
|
||||||
|
|
||||||
|
var fakeQuality = Builder<QualityProfile>.CreateNew().Build();
|
||||||
|
var fakeSeries = Builder<Series>.CreateListOfSize(10)
|
||||||
|
.All()
|
||||||
|
.With(e => e.QualityProfileId = fakeQuality.QualityProfileId)
|
||||||
|
.TheLast(1)
|
||||||
|
.With(s => s.Title = "It's Always Sunny")
|
||||||
|
.Build();
|
||||||
|
|
||||||
|
db.InsertMany(fakeSeries);
|
||||||
|
db.Insert(fakeQuality);
|
||||||
|
|
||||||
|
//Act
|
||||||
|
var series = mocker.Resolve<SeriesProvider>().SearchForSeries("it's");
|
||||||
|
|
||||||
|
//Assert
|
||||||
|
series.Should().HaveCount(1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} |