1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/NzbDrone.Core.Test/Datastore/BasicRepositoryFixture.cs

86 lines
2.0 KiB
C#
Raw Normal View History

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;
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-03-25 07:13:53 +01:00
private JobDefinition _basicType;
[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();
}
[Test]
public void should_be_able_to_add()
{
2013-03-25 04:51:32 +01:00
Subject.Insert(_basicType);
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);
Subject.All().Should().HaveCount(1);
2013-03-25 04:51:32 +01:00
Subject.Delete(_basicType.Id);
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-04-25 06:27:49 +02:00
[Test]
public void should_be_able_to_get_single()
{
Subject.Insert(_basicType);
Subject.SingleOrDefault().Should().NotBeNull();
}
[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();
}
}
}