2013-02-18 08:59:43 +01:00
|
|
|
|
// ReSharper disable RedundantUsingDirective
|
|
|
|
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using FizzWare.NBuilder;
|
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using NCrunch.Framework;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using NzbDrone.Common;
|
|
|
|
|
using NzbDrone.Core.Jobs;
|
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
using NzbDrone.Core.Repository;
|
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
using NzbDrone.Test.Common;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test.JobTests
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2013-02-23 20:38:25 +01:00
|
|
|
|
public class JobRepositoryFixture : ObjectDbTest<JobRepository, JobDefinition>
|
2013-02-18 08:59:43 +01:00
|
|
|
|
{
|
|
|
|
|
FakeJob _fakeJob;
|
|
|
|
|
DisabledJob _disabledJob;
|
|
|
|
|
|
|
|
|
|
[SetUp]
|
|
|
|
|
public void Setup()
|
|
|
|
|
{
|
|
|
|
|
_fakeJob = new FakeJob();
|
|
|
|
|
_disabledJob = new DisabledJob();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Init_should_add_defintaions()
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<IJob> baseFakeJobs = new List<IJob> { _fakeJob };
|
|
|
|
|
Mocker.SetConstant(baseFakeJobs);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Subject.Init();
|
|
|
|
|
|
|
|
|
|
Storage.All().Should().HaveCount(1);
|
2013-03-02 21:14:18 +01:00
|
|
|
|
StoredModel.Interval.Should().Be((Int32)_fakeJob.DefaultInterval.TotalMinutes);
|
|
|
|
|
StoredModel.Name.Should().Be(_fakeJob.Name);
|
|
|
|
|
StoredModel.TypeName.Should().Be(_fakeJob.GetType().ToString());
|
|
|
|
|
StoredModel.LastExecution.Should().HaveYear(DateTime.Now.Year);
|
|
|
|
|
StoredModel.LastExecution.Should().HaveMonth(DateTime.Now.Month);
|
|
|
|
|
StoredModel.LastExecution.Should().HaveDay(DateTime.Today.Day);
|
|
|
|
|
StoredModel.Enable.Should().BeTrue();
|
2013-02-18 08:59:43 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void inti_should_removed_jobs_that_no_longer_exist()
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<IJob> fakeJobs = new List<IJob> { _fakeJob };
|
|
|
|
|
Mocker.SetConstant(fakeJobs);
|
|
|
|
|
|
|
|
|
|
Subject.Init();
|
|
|
|
|
|
|
|
|
|
var deletedJob = Builder<JobDefinition>.CreateNew()
|
2013-02-26 04:58:57 +01:00
|
|
|
|
.With(c => c.Id = 0)
|
2013-02-18 08:59:43 +01:00
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
Db.Insert(deletedJob);
|
|
|
|
|
Subject.Init();
|
|
|
|
|
|
2013-03-02 21:14:18 +01:00
|
|
|
|
AllStoredModels.Should().HaveCount(1);
|
|
|
|
|
AllStoredModels.Should().NotContain(c => c.TypeName == deletedJob.TypeName);
|
2013-02-18 08:59:43 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void inti_should_removed_jobs_that_no_longer_exist_even_with_same_name()
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<IJob> fakeJobs = new List<IJob> { _fakeJob };
|
|
|
|
|
Mocker.SetConstant(fakeJobs);
|
|
|
|
|
|
|
|
|
|
Subject.Init();
|
|
|
|
|
|
|
|
|
|
var deletedJob = Builder<JobDefinition>.CreateNew()
|
|
|
|
|
.With(c => c.Name = _fakeJob.Name)
|
2013-02-26 04:58:57 +01:00
|
|
|
|
.With(c => c.Id = 0)
|
2013-02-18 08:59:43 +01:00
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Db.Insert(deletedJob);
|
|
|
|
|
Subject.Init();
|
|
|
|
|
|
|
|
|
|
|
2013-03-02 21:14:18 +01:00
|
|
|
|
AllStoredModels.Should().HaveCount(1);
|
|
|
|
|
AllStoredModels.Should().NotContain(c => c.TypeName == deletedJob.TypeName);
|
2013-02-18 08:59:43 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void init_should_update_existing_job()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
var oldJob = Builder<JobDefinition>.CreateNew()
|
2013-02-26 04:58:57 +01:00
|
|
|
|
.With(c => c.Id = 0)
|
2013-02-18 08:59:43 +01:00
|
|
|
|
.With(c => c.Name = "OldName")
|
|
|
|
|
.With(c => c.TypeName = typeof(FakeJob).ToString())
|
|
|
|
|
.With(c => c.Interval = 0)
|
|
|
|
|
.With(c => c.Enable = true)
|
|
|
|
|
.With(c => c.Success = true)
|
|
|
|
|
.With(c => c.LastExecution = DateTime.Now.AddDays(-7).Date)
|
|
|
|
|
.Build();
|
|
|
|
|
|
2013-02-19 07:56:02 +01:00
|
|
|
|
Storage.Insert(oldJob);
|
2013-02-18 08:59:43 +01:00
|
|
|
|
|
|
|
|
|
var newJob = new FakeJob();
|
|
|
|
|
|
|
|
|
|
IEnumerable<IJob> fakeJobs = new List<IJob> { newJob };
|
|
|
|
|
Mocker.SetConstant(fakeJobs);
|
|
|
|
|
|
2013-02-19 07:56:02 +01:00
|
|
|
|
Subject.Init();
|
2013-02-18 08:59:43 +01:00
|
|
|
|
|
|
|
|
|
|
2013-03-02 21:14:18 +01:00
|
|
|
|
AllStoredModels.Should().HaveCount(1);
|
|
|
|
|
StoredModel.TypeName.Should().Be(newJob.GetType().FullName);
|
|
|
|
|
StoredModel.Name.Should().Be(newJob.Name);
|
|
|
|
|
StoredModel.Interval.Should().Be((int)newJob.DefaultInterval.TotalMinutes);
|
|
|
|
|
StoredModel.Enable.Should().Be(true);
|
|
|
|
|
StoredModel.Success.Should().Be(oldJob.Success);
|
|
|
|
|
StoredModel.LastExecution.Should().Be(oldJob.LastExecution);
|
2013-02-18 08:59:43 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void jobs_with_zero_interval_are_registered_as_disabled()
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<IJob> fakeJobs = new List<IJob> { _disabledJob };
|
|
|
|
|
Mocker.SetConstant(fakeJobs);
|
|
|
|
|
|
|
|
|
|
Subject.Init();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Storage.All().Should().HaveCount(1);
|
|
|
|
|
Storage.All().First().Enable.Should().BeFalse();
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-02 21:14:18 +01:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void pending_job_should_get_jobs_that_have_matured()
|
|
|
|
|
{
|
|
|
|
|
var oldJob = Builder<JobDefinition>.CreateNew()
|
|
|
|
|
.With(c => c.Id = 0)
|
|
|
|
|
.With(c => c.Interval = 1)
|
|
|
|
|
.With(c => c.Enable = true)
|
|
|
|
|
.With(c => c.Success = true)
|
|
|
|
|
.With(c => c.LastExecution = DateTime.Now.AddMinutes(-5))
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Storage.Insert(oldJob);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Subject.GetPendingJobs().Should().HaveCount(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void pending_job_should_not_get_jobs_that_havent_matured()
|
|
|
|
|
{
|
|
|
|
|
var recent = Builder<JobDefinition>.CreateNew()
|
|
|
|
|
.With(c => c.Id = 0)
|
|
|
|
|
.With(c => c.Interval = 60)
|
|
|
|
|
.With(c => c.Enable = true)
|
|
|
|
|
.With(c => c.Success = true)
|
|
|
|
|
.With(c => c.LastExecution = DateTime.Now.AddMinutes(-5))
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Storage.Insert(recent);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Subject.GetPendingJobs().Should().BeEmpty();
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-19 07:56:02 +01:00
|
|
|
|
/* [Test]
|
|
|
|
|
public void disabled_jobs_arent_run_by_scheduler()
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<IJob> BaseFakeJobs = new List<IJob> { disabledJob };
|
|
|
|
|
Mocker.SetConstant(BaseFakeJobs);
|
2013-02-18 08:59:43 +01:00
|
|
|
|
|
2013-02-19 07:56:02 +01:00
|
|
|
|
var jobProvider = Mocker.Resolve<JobController>();
|
|
|
|
|
jobProvider.QueueScheduled();
|
2013-02-18 08:59:43 +01:00
|
|
|
|
|
2013-02-19 07:56:02 +01:00
|
|
|
|
WaitForQueue();
|
2013-02-18 08:59:43 +01:00
|
|
|
|
|
|
|
|
|
|
2013-02-19 07:56:02 +01:00
|
|
|
|
disabledJob.ExecutionCount.Should().Be(0);
|
|
|
|
|
}*/
|
2013-02-18 08:59:43 +01:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|