mirror of https://github.com/Sonarr/Sonarr
Broke some Eloquera tests to prove a point
This commit is contained in:
parent
04dda9384f
commit
8c99cca207
|
@ -14,14 +14,19 @@ namespace NzbDrone.Core.Test.Datastore
|
|||
private Series testSeries;
|
||||
private Episode testEpisode;
|
||||
|
||||
|
||||
[SetUp]
|
||||
public void SetUp()
|
||||
{
|
||||
WithObjectDb();
|
||||
|
||||
testSeries = Builder<Series>.CreateNew().Build();
|
||||
testEpisode = Builder<Episode>.CreateNew().Build();
|
||||
testSeries = Builder<Series>
|
||||
.CreateNew()
|
||||
.With(s => s.Id = 0)
|
||||
.Build();
|
||||
|
||||
testEpisode = Builder<Episode>
|
||||
.CreateNew()
|
||||
.Build();
|
||||
|
||||
|
||||
}
|
||||
|
@ -47,8 +52,6 @@ namespace NzbDrone.Core.Test.Datastore
|
|||
Db.AsQueryable<Episode>().Single().Series.Should().BeNull();
|
||||
}
|
||||
|
||||
|
||||
|
||||
[Test]
|
||||
public void should_store_nested_objects()
|
||||
{
|
||||
|
@ -76,7 +79,6 @@ namespace NzbDrone.Core.Test.Datastore
|
|||
Db.AsQueryable<Episode>().Single().Series.Title.Should().Be("UpdatedTitle");
|
||||
}
|
||||
|
||||
|
||||
[Test]
|
||||
public void new_objects_should_get_id()
|
||||
{
|
||||
|
@ -85,7 +87,28 @@ namespace NzbDrone.Core.Test.Datastore
|
|||
}
|
||||
|
||||
[Test]
|
||||
public void should_be_able_to_read_unknow_type()
|
||||
public void should_have_id_when_returned_from_database()
|
||||
{
|
||||
Db.Insert(testSeries);
|
||||
var item = Db.AsQueryable<Series>();
|
||||
|
||||
item.Should().HaveCount(1);
|
||||
item.First().Id.Should().NotBe(0);
|
||||
item.First().Id.Should().Be(testSeries.Id);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void should_be_able_to_find_object_by_id()
|
||||
{
|
||||
Db.Insert(testSeries);
|
||||
var item = Db.AsQueryable<Series>().Single(c => c.Id == testSeries.Id);
|
||||
|
||||
item.Id.Should().NotBe(0);
|
||||
item.Id.Should().Be(testSeries.Id);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void should_be_able_to_read_unknown_type()
|
||||
{
|
||||
Db.AsQueryable<UnknownType>().ToList().Should().BeEmpty();
|
||||
}
|
||||
|
|
|
@ -22,25 +22,24 @@ namespace NzbDrone.Core.Datastore
|
|||
|
||||
protected EloqueraDb EloqueraDb { get; private set; }
|
||||
|
||||
|
||||
public List<TModel> All()
|
||||
{
|
||||
return EloqueraDb.AsQueryable<TModel>().ToList();
|
||||
}
|
||||
|
||||
public TModel Get(int rootFolderId)
|
||||
public TModel Get(int id)
|
||||
{
|
||||
return EloqueraDb.AsQueryable<TModel>().Single(c => c.Id == rootFolderId);
|
||||
return EloqueraDb.AsQueryable<TModel>().Single(c => c.Id == id);
|
||||
}
|
||||
|
||||
public TModel Add(TModel rootFolder)
|
||||
public TModel Add(TModel model)
|
||||
{
|
||||
return EloqueraDb.Insert(rootFolder);
|
||||
return EloqueraDb.Insert(model);
|
||||
}
|
||||
|
||||
public void Delete(int rootFolderId)
|
||||
public void Delete(int id)
|
||||
{
|
||||
var itemToDelete = Get(rootFolderId);
|
||||
var itemToDelete = Get(id);
|
||||
EloqueraDb.Delete(itemToDelete);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@ namespace NzbDrone.Core.Repository
|
|||
{
|
||||
|
||||
[ID]
|
||||
public int Id;
|
||||
public long Id;
|
||||
|
||||
public virtual int SeriesId { get; set; }
|
||||
|
||||
|
|
Loading…
Reference in New Issue