You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sonarr/NzbDrone.Core.Test/Datastore/ObjectDatabaseFixture.cs

129 lines
3.3 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using FizzWare.NBuilder;
using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Test.Framework;
namespace NzbDrone.Core.Test.Datastore
{
[TestFixture]
12 years ago
public class ObjectDatabaseFixture : DbTest<BasicRepository<BaiscType>, BaiscType>
{
12 years ago
private BaiscType _sampleType;
[SetUp]
public void SetUp()
{
12 years ago
_sampleType = Builder<BaiscType>
.CreateNew()
.With(s => s.Id = 0)
.Build();
}
[Test]
public void should_be_able_to_write_to_database()
{
12 years ago
Subject.Insert(_sampleType);
Db.All<BaiscType>().Should().HaveCount(1);
}
[Test]
public void double_insert_should_fail()
{
12 years ago
Subject.Insert(_sampleType);
Assert.Throws<InvalidOperationException>(() => Subject.Insert(_sampleType));
}
[Test]
public void update_item_with_root_index_0_should_faile()
{
12 years ago
_sampleType.Id = 0;
Assert.Throws<InvalidOperationException>(() => Subject.Update(_sampleType));
}
12 years ago
[Test]
public void should_be_able_to_store_empty_list()
{
12 years ago
var series = new List<BaiscType>();
12 years ago
Subject.InsertMany(series);
}
[Test]
public void new_objects_should_get_id()
{
12 years ago
_sampleType.Id = 0;
Subject.Insert(_sampleType);
_sampleType.Id.Should().NotBe(0);
}
[Test]
public void new_object_should_get_new_id()
{
12 years ago
_sampleType.Id = 0;
Subject.Insert(_sampleType);
12 years ago
Db.All<BaiscType>().Should().HaveCount(1);
_sampleType.Id.Should().Be(1);
}
[Test]
public void should_have_id_when_returned_from_database()
{
12 years ago
_sampleType.Id = 0;
Subject.Insert(_sampleType);
var item = Db.All<BaiscType>();
item.Should().HaveCount(1);
item.First().Id.Should().NotBe(0);
item.First().Id.Should().BeLessThan(100);
12 years ago
item.First().Id.Should().Be(_sampleType.Id);
}
[Test]
public void should_be_able_to_find_object_by_id()
{
12 years ago
Subject.Insert(_sampleType);
var item = Db.All<BaiscType>().Single(c => c.Id == _sampleType.Id);
item.Id.Should().NotBe(0);
12 years ago
item.Id.Should().Be(_sampleType.Id);
}
[Test]
public void update_field_should_only_update_that_filed()
{
12 years ago
var childModel = new BaiscType
{
12 years ago
Address = "Address",
Name = "Name",
Tilte = "Title"
};
12 years ago
Subject.Insert(childModel);
12 years ago
childModel.Address = "A";
childModel.Name = "B";
childModel.Tilte = "C";
Subject.UpdateFields(childModel, t=>t.Name);
12 years ago
Db.All<BaiscType>().Single().Address.Should().Be("Address");
Db.All<BaiscType>().Single().Name.Should().Be("B");
Db.All<BaiscType>().Single().Tilte.Should().Be("Title");
}
}
}