2013-02-16 07:03:54 +03:00
|
|
|
using System;
|
2013-02-16 06:50:22 +03:00
|
|
|
using System.Collections.Generic;
|
2013-02-05 07:07:07 +03:00
|
|
|
using System.Linq;
|
|
|
|
using FizzWare.NBuilder;
|
|
|
|
using FluentAssertions;
|
|
|
|
using NUnit.Framework;
|
2013-02-13 04:25:32 +03:00
|
|
|
using NzbDrone.Core.Datastore;
|
2013-02-05 07:07:07 +03:00
|
|
|
using NzbDrone.Core.Repository;
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test.Datastore
|
|
|
|
{
|
|
|
|
[TestFixture]
|
|
|
|
public class ObjectDatabaseFixture : ObjectDbTest
|
|
|
|
{
|
2013-02-17 07:33:56 +03:00
|
|
|
private ChildModel childModel;
|
|
|
|
private ParentModel ParentModel;
|
2013-02-05 07:07:07 +03:00
|
|
|
|
|
|
|
[SetUp]
|
|
|
|
public void SetUp()
|
|
|
|
{
|
2013-02-17 07:33:56 +03:00
|
|
|
childModel = Builder<ChildModel>
|
2013-02-06 11:40:57 +03:00
|
|
|
.CreateNew()
|
2013-02-26 06:58:57 +03:00
|
|
|
.With(s => s.Id = 0)
|
2013-02-06 11:40:57 +03:00
|
|
|
.Build();
|
|
|
|
|
2013-02-17 07:33:56 +03:00
|
|
|
ParentModel = Builder<ParentModel>
|
2013-02-06 11:40:57 +03:00
|
|
|
.CreateNew()
|
2013-02-26 06:58:57 +03:00
|
|
|
.With(e => e.Id = 0)
|
2013-02-06 11:40:57 +03:00
|
|
|
.Build();
|
2013-02-05 07:07:07 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void should_be_able_to_write_to_database()
|
|
|
|
{
|
2013-02-17 07:33:56 +03:00
|
|
|
Db.Insert(childModel);
|
|
|
|
Db.AsQueryable<ChildModel>().Should().HaveCount(1);
|
2013-02-05 07:07:07 +03:00
|
|
|
}
|
|
|
|
|
2013-02-16 07:03:54 +03:00
|
|
|
[Test]
|
|
|
|
public void double_insert_should_fail()
|
|
|
|
{
|
2013-02-17 07:33:56 +03:00
|
|
|
Db.Insert(childModel);
|
|
|
|
Assert.Throws<InvalidOperationException>(() => Db.Insert(childModel));
|
2013-02-16 07:03:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void update_item_with_root_index_0_should_faile()
|
|
|
|
{
|
2013-02-26 06:58:57 +03:00
|
|
|
childModel.Id = 0;
|
2013-02-17 07:33:56 +03:00
|
|
|
Assert.Throws<InvalidOperationException>(() => Db.Update(childModel));
|
2013-02-16 07:03:54 +03:00
|
|
|
}
|
|
|
|
|
2013-02-16 07:17:23 +03:00
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void should_be_able_to_store_empty_list()
|
|
|
|
{
|
2013-02-17 07:33:56 +03:00
|
|
|
var series = new List<ParentModel>();
|
2013-02-16 07:17:23 +03:00
|
|
|
|
|
|
|
Db.InsertMany(series);
|
|
|
|
}
|
|
|
|
|
2013-02-05 07:07:07 +03:00
|
|
|
[Test]
|
|
|
|
public void should_not_store_dirty_data_in_cache()
|
|
|
|
{
|
2013-02-17 07:33:56 +03:00
|
|
|
Db.Insert(ParentModel);
|
2013-02-05 07:07:07 +03:00
|
|
|
|
2013-02-17 07:33:56 +03:00
|
|
|
Db.AsQueryable<ParentModel>().Single().Child.Should().BeNull();
|
2013-02-05 07:07:07 +03:00
|
|
|
|
2013-02-17 07:33:56 +03:00
|
|
|
ParentModel.Child = Builder<ChildModel>.CreateNew().Build();
|
2013-02-05 07:07:07 +03:00
|
|
|
|
2013-02-17 07:33:56 +03:00
|
|
|
Db.AsQueryable<ParentModel>().Single().Child.Should().BeNull();
|
2013-02-05 07:07:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void should_store_nested_objects()
|
|
|
|
{
|
2013-02-17 07:33:56 +03:00
|
|
|
ParentModel.Child = childModel;
|
2013-02-05 07:07:07 +03:00
|
|
|
|
2013-02-17 07:33:56 +03:00
|
|
|
Db.Insert(ParentModel);
|
2013-02-05 07:07:07 +03:00
|
|
|
|
2013-02-17 07:33:56 +03:00
|
|
|
Db.AsQueryable<ParentModel>().Should().HaveCount(1);
|
|
|
|
Db.AsQueryable<ParentModel>().Single().Child.Should().NotBeNull();
|
2013-02-05 07:07:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void should_update_nested_objects()
|
|
|
|
{
|
2013-02-17 07:33:56 +03:00
|
|
|
ParentModel.Child = Builder<ChildModel>
|
2013-02-08 11:05:43 +03:00
|
|
|
.CreateNew()
|
2013-02-26 06:58:57 +03:00
|
|
|
.With(s => s.Id = 0)
|
2013-02-08 11:05:43 +03:00
|
|
|
.Build();
|
2013-02-05 07:07:07 +03:00
|
|
|
|
2013-02-17 07:33:56 +03:00
|
|
|
Db.Insert(ParentModel);
|
2013-02-05 07:07:07 +03:00
|
|
|
|
2013-02-17 07:33:56 +03:00
|
|
|
ParentModel.Child.A = "UpdatedTitle";
|
2013-02-05 07:07:07 +03:00
|
|
|
|
2013-02-17 07:33:56 +03:00
|
|
|
Db.Update(ParentModel);
|
2013-02-05 07:07:07 +03:00
|
|
|
|
2013-02-17 07:33:56 +03:00
|
|
|
Db.AsQueryable<ParentModel>().Should().HaveCount(1);
|
|
|
|
Db.AsQueryable<ParentModel>().Single().Child.Should().NotBeNull();
|
|
|
|
Db.AsQueryable<ParentModel>().Single().Child.A.Should().Be("UpdatedTitle");
|
2013-02-05 07:07:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void new_objects_should_get_id()
|
|
|
|
{
|
2013-02-26 06:58:57 +03:00
|
|
|
childModel.Id = 0;
|
2013-02-17 07:33:56 +03:00
|
|
|
Db.Insert(childModel);
|
2013-02-26 06:58:57 +03:00
|
|
|
childModel.Id.Should().NotBe(0);
|
2013-02-05 07:07:07 +03:00
|
|
|
}
|
|
|
|
|
2013-02-16 06:50:22 +03:00
|
|
|
[Test]
|
2013-02-16 07:03:54 +03:00
|
|
|
public void new_object_should_get_new_id()
|
2013-02-16 06:50:22 +03:00
|
|
|
{
|
2013-02-26 06:58:57 +03:00
|
|
|
childModel.Id = 0;
|
2013-02-17 07:33:56 +03:00
|
|
|
Db.Insert(childModel);
|
2013-02-16 06:50:22 +03:00
|
|
|
|
2013-02-17 07:33:56 +03:00
|
|
|
Db.AsQueryable<ChildModel>().Should().HaveCount(1);
|
2013-02-26 06:58:57 +03:00
|
|
|
childModel.Id.Should().Be(1);
|
2013-02-16 06:50:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void should_be_able_to_assign_ids_to_nested_objects()
|
|
|
|
{
|
|
|
|
var nested = new NestedModel();
|
|
|
|
|
|
|
|
nested.List.Add(new NestedModel());
|
|
|
|
|
|
|
|
Db.Insert(nested);
|
|
|
|
|
2013-02-26 06:58:57 +03:00
|
|
|
nested.Id.Should().Be(1);
|
|
|
|
nested.List.Should().OnlyContain(c => c.Id > 0);
|
2013-02-16 06:50:22 +03:00
|
|
|
}
|
|
|
|
|
2013-02-05 07:07:07 +03:00
|
|
|
[Test]
|
2013-02-06 11:40:57 +03:00
|
|
|
public void should_have_id_when_returned_from_database()
|
|
|
|
{
|
2013-02-26 06:58:57 +03:00
|
|
|
childModel.Id = 0;
|
2013-02-17 07:33:56 +03:00
|
|
|
Db.Insert(childModel);
|
|
|
|
var item = Db.AsQueryable<ChildModel>();
|
2013-02-06 11:40:57 +03:00
|
|
|
|
|
|
|
item.Should().HaveCount(1);
|
2013-02-26 06:58:57 +03:00
|
|
|
item.First().Id.Should().NotBe(0);
|
|
|
|
item.First().Id.Should().BeLessThan(100);
|
|
|
|
item.First().Id.Should().Be(childModel.Id);
|
2013-02-06 11:40:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void should_be_able_to_find_object_by_id()
|
|
|
|
{
|
2013-02-17 07:33:56 +03:00
|
|
|
Db.Insert(childModel);
|
2013-02-26 06:58:57 +03:00
|
|
|
var item = Db.AsQueryable<ChildModel>().Single(c => c.Id == childModel.Id);
|
2013-02-06 11:40:57 +03:00
|
|
|
|
2013-02-26 06:58:57 +03:00
|
|
|
item.Id.Should().NotBe(0);
|
|
|
|
item.Id.Should().Be(childModel.Id);
|
2013-02-06 11:40:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void should_be_able_to_read_unknown_type()
|
2013-02-05 07:07:07 +03:00
|
|
|
{
|
|
|
|
Db.AsQueryable<UnknownType>().ToList().Should().BeEmpty();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-18 06:18:25 +03:00
|
|
|
public class UnknownType : ModelBase
|
2013-02-05 07:07:07 +03:00
|
|
|
{
|
|
|
|
public string Field1 { get; set; }
|
|
|
|
}
|
2013-02-16 06:50:22 +03:00
|
|
|
|
2013-02-18 06:18:25 +03:00
|
|
|
public class NestedModel : ModelBase
|
2013-02-16 06:50:22 +03:00
|
|
|
{
|
|
|
|
public NestedModel()
|
|
|
|
{
|
|
|
|
List = new List<NestedModel> { this };
|
|
|
|
}
|
|
|
|
|
2013-02-17 04:52:40 +03:00
|
|
|
public List<NestedModel> List { get; set; }
|
2013-02-16 06:50:22 +03:00
|
|
|
}
|
2013-02-17 07:33:56 +03:00
|
|
|
|
2013-02-18 06:18:25 +03:00
|
|
|
public class ParentModel : ModelBase
|
2013-02-17 07:33:56 +03:00
|
|
|
{
|
|
|
|
public ChildModel Child { get; set; }
|
|
|
|
}
|
|
|
|
|
2013-02-18 06:18:25 +03:00
|
|
|
public class ChildModel : ModelBase
|
2013-02-17 07:33:56 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
public String A { get; set; }
|
|
|
|
public int B { get; set; }
|
|
|
|
public int C { get; set; }
|
|
|
|
}
|
2013-02-05 07:07:07 +03:00
|
|
|
}
|
|
|
|
|