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.
Prowlarr/NzbDrone.Core.Test/Datastore/ObjectDatabaseFixture.cs

131 lines
3.3 KiB

using System;
using System.Collections.Generic;
12 years ago
using System.Data;
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]
public class ObjectDatabaseFixture : DbTest<BasicRepository<BasicType>, BasicType>
{
private BasicType _sampleType;
[SetUp]
public void SetUp()
{
_sampleType = Builder<BasicType>
.CreateNew()
.With(s => s.Id = 0)
.Build();
12 years ago
}
[Test]
public void should_be_able_to_write_to_database()
{
12 years ago
Subject.Insert(_sampleType);
Db.All<BasicType>().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()
{
var series = new List<BasicType>();
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);
Db.All<BasicType>().Should().HaveCount(1);
12 years ago
_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<BasicType>();
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<BasicType>().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()
{
var childModel = new BasicType
{
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";
12 years ago
Subject.UpdateFields(childModel, t => t.Name);
Db.All<BasicType>().Single().Address.Should().Be("Address");
Db.All<BasicType>().Single().Name.Should().Be("B");
Db.All<BasicType>().Single().Tilte.Should().Be("Title");
}
}
}