Updated various parts of scanning and ingestion, either for bug fixes, or for enhancements.
This commit is contained in:
@@ -37,6 +37,7 @@ public class DLSiteClientTests
|
||||
result.Count.ShouldBe(2);
|
||||
|
||||
result.ShouldContainKey("RJ01230163");
|
||||
result["RJ01230163"].Title.ShouldBe("[Azur Lane ASMR] Commander Pampering Team! Golden Hind's Tentacular Treatment");
|
||||
result["RJ01230163"].HasTrial.ShouldBeTrue();
|
||||
result["RJ01230163"].HasDLPlay.ShouldBeTrue();
|
||||
result["RJ01230163"].HasReviews.ShouldBeTrue();
|
||||
@@ -58,6 +59,8 @@ public class DLSiteClientTests
|
||||
"RG0001",
|
||||
new ProductInfo()
|
||||
{
|
||||
WorkName = "Product 1",
|
||||
WorkNameMasked = "Product 1 (Masked)",
|
||||
WishlistCount = 250,
|
||||
DownloadCount = 100,
|
||||
Options = ["TRI", "DLP", "JPN"],
|
||||
@@ -69,6 +72,8 @@ public class DLSiteClientTests
|
||||
"RG0002",
|
||||
new ProductInfo()
|
||||
{
|
||||
WorkName = "Product 2",
|
||||
WorkNameMasked = "Product 2 (Masked)",
|
||||
WishlistCount = 100,
|
||||
DownloadCount = 50,
|
||||
Options = ["TRI", "ENG", "DOT", "VET"],
|
||||
@@ -91,6 +96,7 @@ public class DLSiteClientTests
|
||||
|
||||
// RG0001
|
||||
VoiceWorkDetails voiceWorkDetails = mappedCollection["RG0001"];
|
||||
voiceWorkDetails.Title.ShouldBe("Product 1");
|
||||
voiceWorkDetails.WishlistCount.ShouldBe(250);
|
||||
voiceWorkDetails.DownloadCount.ShouldBe(100);
|
||||
voiceWorkDetails.HasTrial.ShouldBe(true);
|
||||
@@ -105,6 +111,7 @@ public class DLSiteClientTests
|
||||
|
||||
// RG0002
|
||||
VoiceWorkDetails secondVoiceWorkDetails = mappedCollection["RG0002"];
|
||||
secondVoiceWorkDetails.Title.ShouldBe("Product 2");
|
||||
secondVoiceWorkDetails.WishlistCount.ShouldBe(100);
|
||||
secondVoiceWorkDetails.DownloadCount.ShouldBe(50);
|
||||
secondVoiceWorkDetails.HasTrial.ShouldBe(true);
|
||||
|
||||
Reference in New Issue
Block a user