Skip to content

Commit 98eb4ae

Browse files
committed
Some minor testing changes
1 parent 778da05 commit 98eb4ae

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

TestEaPdf/TestEmailFunctions.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -491,10 +491,10 @@ public void TestSampleEmlFile(
491491
//The expected error, warning, and message counts were set by running the test scripts as of 2024-02-29
492492

493493
//Gmail Exports
494-
[DataRow("Gmail\\Eml\\Inbox", "out_Inbox", "MD5", false, false, false, false, false, false, 0, 75, 330, DisplayName = "xhtml-gmail-emls")] //gmail mbox export file
494+
[DataRow("Gmail\\Eml\\Inbox", "out_Inbox", "MD5", false, false, false, false, false, false, 0, 78, 330, DisplayName = "xhtml-gmail-emls")] //gmail mbox export file
495495
[DataRow("Gmail\\Eml\\Inbox\\2016-06-23 143920 d3eb274969.eml", "out_d3eb274969", "MD5", false, false, false, false, false, false, 0, 1, 1, DisplayName = "xhtml-gmail-emls-2016-06-23-143920-d3eb274969")] //gmail mbox export file with some weirdness
496496
[DataRow("Gmail\\Eml\\Inbox\\2016-06-24 002410 57b3136fd3.eml", "out_57b3136fd3", "MD5", false, false, false, false, false, false, 0, 1, 1, DisplayName = "xhtml-gmail-emls-2016-06-24-002410-57b3136fd3")] //gmail mbox export file with some html issues
497-
[DataRow("Gmail\\account.mbox", "out_account", "MD5", false, false, false, false, false, false, 0, 75, 331, DisplayName = "xhtml-gmail-mbox")] //gmail mbox export file
497+
[DataRow("Gmail\\account.mbox", "out_account", "MD5", false, false, false, false, false, false, 0, 78, 331, DisplayName = "xhtml-gmail-mbox")] //gmail mbox export file
498498

499499
//Mozilla mbox with child mboxes, different combinations of settings
500500
[DataRow("MozillaThunderbird\\DLF Distributed Library", "out_dlf-sha1", "SHA1", false, false, false, false, false, false, 0, 9, 384, DisplayName = "xhtml-moz-dlf-sha1")]
@@ -515,9 +515,9 @@ public void TestSampleEmlFile(
515515

516516

517517
//Pine mbox folder
518-
[DataRow("Pine", "out_pine", "MD5", false, false, false, false, false, false, 0, 583, 20799, DisplayName = "xhtml-pine-folder-one-file")]
519-
[DataRow("Pine", "out_pine-one", "MD5", false, false, false, false, false, false, 0, 583, 20799, DisplayName = "xhtml-pine-folder-one-file-in-subfolder")]
520-
[DataRow("Pine", "out_pine-many", "MD5", false, false, false, false, false, true, 0, 583, 20799, DisplayName = "xhtml-pine-folder-one-file-per-in-subfolder")]
518+
[DataRow("Pine", "out_pine", "MD5", false, false, false, false, false, false, 0, 584, 20799, DisplayName = "xhtml-pine-folder-one-file")]
519+
[DataRow("Pine", "out_pine-one", "MD5", false, false, false, false, false, false, 0, 584, 20799, DisplayName = "xhtml-pine-folder-one-file-in-subfolder")]
520+
[DataRow("Pine", "out_pine-many", "MD5", false, false, false, false, false, true, 0, 584, 20799, DisplayName = "xhtml-pine-folder-one-file-per-in-subfolder")]
521521
//Pine mbox files with special properties
522522
[DataRow("Pine\\sent-mail-aug-2007", "out_pine-sent-mail-aug-2007", "MD5", false, false, false, false, false, false, 0, 278, 1301, DisplayName = "xhtml-pine-sent-mail-aug-2007")] //not an mbox file
523523
[DataRow("Pine\\sent-mail-jul-2006", "out_pine-sent-mail-jul-2006", "MD5", false, false, false, false, false, false, 0, 1, 466, DisplayName = "xhtml-pine-sent-mail-jul-2006")] //not an mbox file

TestEaPdf/TestPdfFunctions.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ public void TestEaxsToPdfInlineImages(string inPath, string foProcessor, bool ex
101101
public void TestEaxsToPdfProcessorLargeFiles(string inPath, string foProcessor, bool ext, bool wrap)
102102
{
103103
//FUTURE: skip for the time being, takes too long
104-
if (foProcessor.Equals("xep", System.StringComparison.OrdinalIgnoreCase))
105-
Assert.Inconclusive("Test is commented out");
104+
//if (foProcessor.Equals("xep", System.StringComparison.OrdinalIgnoreCase))
105+
// Assert.Inconclusive("Test is commented out");
106106

107107
TestEaxsToPdfProcessor(inPath, foProcessor, ext, wrap);
108108
}
@@ -282,8 +282,8 @@ public void TestEaxsToPdfInlineImagesRemoveDimensions(string inPath, string foPr
282282
public void TestEaxsToPdfProcessorWithContinuations(string inPath, string foProcessor, bool ext, bool wrap, long maxOutFileSize)
283283
{
284284
//FUTURE: skip for the time being, takes too long
285-
if (foProcessor.Equals("xep", System.StringComparison.OrdinalIgnoreCase))
286-
Assert.Inconclusive("Test is commented out");
285+
//if (foProcessor.Equals("xep", System.StringComparison.OrdinalIgnoreCase))
286+
// Assert.Inconclusive("Test is commented out");
287287

288288
if (!foProcessor.Equals("fop", System.StringComparison.OrdinalIgnoreCase) && !foProcessor.Equals("xep", System.StringComparison.OrdinalIgnoreCase))
289289
throw new ArgumentException($"The {nameof(foProcessor)} param must be either 'fop' or 'xep', ignoring case", nameof(foProcessor));

0 commit comments

Comments
 (0)