2013-02-17 06:35:52 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using FizzWare.NBuilder;
|
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using NzbDrone.Core.Datastore;
|
2013-03-25 07:13:53 +01:00
|
|
|
|
using NzbDrone.Core.Jobs;
|
2013-02-17 06:35:52 +01:00
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test.Datastore
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
[TestFixture]
|
2013-03-25 07:13:53 +01:00
|
|
|
|
public class
|
|
|
|
|
BasicRepositoryFixture : DbTest<BasicRepository<JobDefinition>, JobDefinition>
|
2013-02-17 06:35:52 +01:00
|
|
|
|
{
|
2013-03-25 07:13:53 +01:00
|
|
|
|
private JobDefinition _basicType;
|
2013-02-17 06:35:52 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[SetUp]
|
|
|
|
|
public void Setup()
|
|
|
|
|
{
|
2013-03-25 07:13:53 +01:00
|
|
|
|
_basicType = Builder<JobDefinition>
|
2013-03-05 02:47:51 +01:00
|
|
|
|
.CreateNew()
|
|
|
|
|
.With(c => c.Id = 0)
|
|
|
|
|
.Build();
|
2013-02-17 06:35:52 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_able_to_add()
|
|
|
|
|
{
|
2013-03-25 04:51:32 +01:00
|
|
|
|
Subject.Insert(_basicType);
|
2013-02-17 06:35:52 +01:00
|
|
|
|
Subject.All().Should().HaveCount(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_able_to_delete_model()
|
|
|
|
|
{
|
2013-03-25 04:51:32 +01:00
|
|
|
|
Subject.Insert(_basicType);
|
2013-02-17 06:35:52 +01:00
|
|
|
|
Subject.All().Should().HaveCount(1);
|
|
|
|
|
|
2013-03-25 04:51:32 +01:00
|
|
|
|
Subject.Delete(_basicType.Id);
|
2013-02-17 06:35:52 +01:00
|
|
|
|
Subject.All().Should().BeEmpty();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_able_to_find_by_id()
|
|
|
|
|
{
|
2013-03-25 04:51:32 +01:00
|
|
|
|
Subject.Insert(_basicType);
|
|
|
|
|
Subject.Get(_basicType.Id)
|
2013-03-05 02:47:51 +01:00
|
|
|
|
.ShouldHave()
|
|
|
|
|
.AllProperties()
|
2013-03-25 04:51:32 +01:00
|
|
|
|
.EqualTo(_basicType);
|
2013-02-17 06:35:52 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-25 06:27:49 +02:00
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_able_to_get_single()
|
|
|
|
|
{
|
|
|
|
|
Subject.Insert(_basicType);
|
|
|
|
|
Subject.SingleOrDefault().Should().NotBeNull();
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-17 06:35:52 +01:00
|
|
|
|
[Test]
|
|
|
|
|
public void getting_model_with_invalid_id_should_throw()
|
|
|
|
|
{
|
|
|
|
|
Assert.Throws<InvalidOperationException>(() => Subject.Get(12));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void get_all_with_empty_db_should_return_empty_list()
|
|
|
|
|
{
|
|
|
|
|
Subject.All().Should().BeEmpty();
|
|
|
|
|
}
|
2013-03-05 02:47:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_able_to_call_ToList_on_empty_quariable()
|
|
|
|
|
{
|
|
|
|
|
Subject.All().ToList().Should().BeEmpty();
|
|
|
|
|
|
|
|
|
|
}
|
2013-02-17 06:35:52 +01:00
|
|
|
|
}
|
|
|
|
|
}
|