mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-20 22:10:33 -04:00
* Fixed an issue where reading list were not able to update their summary due to a duplicate title check. * Misc code smell cleanup * Updated .net dependencies and removed unneeded ones * Fixed an issue where removing a series from want to read list page wouldn't update the page correctly * Fixed age restriction not applied to Recommended page * Ensure that Genres and Tags are age restricted gated * Persons are now age gated as well * When you choose a cover, the new cover will properly be selected and will focus on it, in the cases there are many other covers available. * Fixed caching profiles * Added in a special hook when deleting a library to clear all series Relations before we delete
285 lines
8.2 KiB
C#
285 lines
8.2 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using API.Data.Misc;
|
|
using API.Entities;
|
|
using API.Entities.Enums;
|
|
using API.Entities.Metadata;
|
|
using API.Extensions;
|
|
using Xunit;
|
|
|
|
namespace API.Tests.Extensions;
|
|
|
|
public class QueryableExtensionsTests
|
|
{
|
|
[Theory]
|
|
[InlineData(true, 2)]
|
|
[InlineData(false, 1)]
|
|
public void RestrictAgainstAgeRestriction_Series_ShouldRestrictEverythingAboveTeen(bool includeUnknowns, int expectedCount)
|
|
{
|
|
var items = new List<Series>()
|
|
{
|
|
new Series()
|
|
{
|
|
Metadata = new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.Teen,
|
|
}
|
|
},
|
|
new Series()
|
|
{
|
|
Metadata = new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.Unknown,
|
|
}
|
|
},
|
|
new Series()
|
|
{
|
|
Metadata = new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.X18Plus,
|
|
}
|
|
},
|
|
};
|
|
|
|
var filtered = items.AsQueryable().RestrictAgainstAgeRestriction(new AgeRestriction()
|
|
{
|
|
AgeRating = AgeRating.Teen,
|
|
IncludeUnknowns = includeUnknowns
|
|
});
|
|
Assert.Equal(expectedCount, filtered.Count());
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(true, 2)]
|
|
[InlineData(false, 1)]
|
|
public void RestrictAgainstAgeRestriction_CollectionTag_ShouldRestrictEverythingAboveTeen(bool includeUnknowns, int expectedCount)
|
|
{
|
|
var items = new List<CollectionTag>()
|
|
{
|
|
new CollectionTag()
|
|
{
|
|
SeriesMetadatas = new List<SeriesMetadata>()
|
|
{
|
|
new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.Teen,
|
|
}
|
|
}
|
|
},
|
|
new CollectionTag()
|
|
{
|
|
SeriesMetadatas = new List<SeriesMetadata>()
|
|
{
|
|
new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.Unknown,
|
|
},
|
|
new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.Teen,
|
|
}
|
|
}
|
|
},
|
|
new CollectionTag()
|
|
{
|
|
SeriesMetadatas = new List<SeriesMetadata>()
|
|
{
|
|
new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.X18Plus,
|
|
}
|
|
}
|
|
},
|
|
};
|
|
|
|
var filtered = items.AsQueryable().RestrictAgainstAgeRestriction(new AgeRestriction()
|
|
{
|
|
AgeRating = AgeRating.Teen,
|
|
IncludeUnknowns = includeUnknowns
|
|
});
|
|
Assert.Equal(expectedCount, filtered.Count());
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(true, 2)]
|
|
[InlineData(false, 1)]
|
|
public void RestrictAgainstAgeRestriction_Genre_ShouldRestrictEverythingAboveTeen(bool includeUnknowns, int expectedCount)
|
|
{
|
|
var items = new List<Genre>()
|
|
{
|
|
new Genre()
|
|
{
|
|
SeriesMetadatas = new List<SeriesMetadata>()
|
|
{
|
|
new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.Teen,
|
|
}
|
|
}
|
|
},
|
|
new Genre()
|
|
{
|
|
SeriesMetadatas = new List<SeriesMetadata>()
|
|
{
|
|
new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.Unknown,
|
|
},
|
|
new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.Teen,
|
|
}
|
|
}
|
|
},
|
|
new Genre()
|
|
{
|
|
SeriesMetadatas = new List<SeriesMetadata>()
|
|
{
|
|
new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.X18Plus,
|
|
}
|
|
}
|
|
},
|
|
};
|
|
|
|
var filtered = items.AsQueryable().RestrictAgainstAgeRestriction(new AgeRestriction()
|
|
{
|
|
AgeRating = AgeRating.Teen,
|
|
IncludeUnknowns = includeUnknowns
|
|
});
|
|
Assert.Equal(expectedCount, filtered.Count());
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(true, 2)]
|
|
[InlineData(false, 1)]
|
|
public void RestrictAgainstAgeRestriction_Tag_ShouldRestrictEverythingAboveTeen(bool includeUnknowns, int expectedCount)
|
|
{
|
|
var items = new List<Tag>()
|
|
{
|
|
new Tag()
|
|
{
|
|
SeriesMetadatas = new List<SeriesMetadata>()
|
|
{
|
|
new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.Teen,
|
|
}
|
|
}
|
|
},
|
|
new Tag()
|
|
{
|
|
SeriesMetadatas = new List<SeriesMetadata>()
|
|
{
|
|
new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.Unknown,
|
|
},
|
|
new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.Teen,
|
|
}
|
|
}
|
|
},
|
|
new Tag()
|
|
{
|
|
SeriesMetadatas = new List<SeriesMetadata>()
|
|
{
|
|
new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.X18Plus,
|
|
}
|
|
}
|
|
},
|
|
};
|
|
|
|
var filtered = items.AsQueryable().RestrictAgainstAgeRestriction(new AgeRestriction()
|
|
{
|
|
AgeRating = AgeRating.Teen,
|
|
IncludeUnknowns = includeUnknowns
|
|
});
|
|
Assert.Equal(expectedCount, filtered.Count());
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(true, 2)]
|
|
[InlineData(false, 1)]
|
|
public void RestrictAgainstAgeRestriction_Person_ShouldRestrictEverythingAboveTeen(bool includeUnknowns, int expectedCount)
|
|
{
|
|
var items = new List<Person>()
|
|
{
|
|
new Person()
|
|
{
|
|
SeriesMetadatas = new List<SeriesMetadata>()
|
|
{
|
|
new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.Teen,
|
|
}
|
|
}
|
|
},
|
|
new Person()
|
|
{
|
|
SeriesMetadatas = new List<SeriesMetadata>()
|
|
{
|
|
new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.Unknown,
|
|
},
|
|
new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.Teen,
|
|
}
|
|
}
|
|
},
|
|
new Person()
|
|
{
|
|
SeriesMetadatas = new List<SeriesMetadata>()
|
|
{
|
|
new SeriesMetadata()
|
|
{
|
|
AgeRating = AgeRating.X18Plus,
|
|
}
|
|
}
|
|
},
|
|
};
|
|
|
|
var filtered = items.AsQueryable().RestrictAgainstAgeRestriction(new AgeRestriction()
|
|
{
|
|
AgeRating = AgeRating.Teen,
|
|
IncludeUnknowns = includeUnknowns
|
|
});
|
|
Assert.Equal(expectedCount, filtered.Count());
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(true, 2)]
|
|
[InlineData(false, 1)]
|
|
public void RestrictAgainstAgeRestriction_ReadingList_ShouldRestrictEverythingAboveTeen(bool includeUnknowns, int expectedCount)
|
|
{
|
|
var items = new List<ReadingList>()
|
|
{
|
|
new ReadingList()
|
|
{
|
|
AgeRating = AgeRating.Teen,
|
|
},
|
|
new ReadingList()
|
|
{
|
|
AgeRating = AgeRating.Unknown,
|
|
},
|
|
new ReadingList()
|
|
{
|
|
AgeRating = AgeRating.X18Plus
|
|
},
|
|
};
|
|
|
|
var filtered = items.AsQueryable().RestrictAgainstAgeRestriction(new AgeRestriction()
|
|
{
|
|
AgeRating = AgeRating.Teen,
|
|
IncludeUnknowns = includeUnknowns
|
|
});
|
|
Assert.Equal(expectedCount, filtered.Count());
|
|
}
|
|
}
|