2013-02-24 00:29:22 +03:00
|
|
|
using System;
|
|
|
|
using FizzWare.NBuilder;
|
|
|
|
using FluentAssertions;
|
|
|
|
using NUnit.Framework;
|
|
|
|
using NzbDrone.Core.History;
|
2013-02-27 06:19:22 +03:00
|
|
|
using NzbDrone.Core.Qualities;
|
2013-02-24 00:29:22 +03:00
|
|
|
using NzbDrone.Core.Tv;
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test.HistoryTests
|
|
|
|
{
|
|
|
|
[TestFixture]
|
2013-03-27 03:51:37 +03:00
|
|
|
public class HistoryRepositoryFixture : DbTest<HistoryRepository, History.History>
|
2013-02-24 00:29:22 +03:00
|
|
|
{
|
|
|
|
[Test]
|
|
|
|
public void Trim_Items()
|
|
|
|
{
|
|
|
|
var historyItem = Builder<History.History>.CreateListOfSize(30)
|
|
|
|
.All()
|
2013-02-26 06:58:57 +03:00
|
|
|
.With(c=>c.Id = 0)
|
2013-02-24 00:29:22 +03:00
|
|
|
.TheFirst(10).With(c => c.Date = DateTime.Now)
|
|
|
|
.TheNext(20).With(c => c.Date = DateTime.Now.AddDays(-31))
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
Db.InsertMany(historyItem);
|
|
|
|
|
|
|
|
AllStoredModels.Should().HaveCount(30);
|
|
|
|
Subject.Trim();
|
|
|
|
|
|
|
|
AllStoredModels.Should().HaveCount(10);
|
|
|
|
AllStoredModels.Should().OnlyContain(s => s.Date > DateTime.Now.AddDays(-30));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|