/src/CleanZip.Test/ZipEntryTest.cs

https://bitbucket.org/jens13/cleanzip · C# · 193 lines · 174 code · 15 blank · 4 comment · 7 complexity · 3986ad6714d6669fff5b5cd8b70e2ca9 MD5 · raw file

  1. // Copyright Jens Granlund 2012.
  2. // Distributed under the New BSD License.
  3. // (See accompanying file notice.txt or at
  4. // http://www.opensource.org/licenses/bsd-license.php)
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Diagnostics;
  8. using System.IO;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Threading;
  12. using CleanZip.Compression;
  13. using Xunit;
  14. namespace CleanZip.Test
  15. {
  16. public class ZipEntryTest : ZipTestBase
  17. {
  18. [Fact]
  19. public void CompressionTypeTest()
  20. {
  21. var testZip = "testComp.zip";
  22. File.Delete(testZip);
  23. Thread.Sleep(100);
  24. using (var zf = ZipFile.Open(testZip))
  25. {
  26. zf.Add(new MemoryStream(new byte[0]), "ZeroBytes", CompressionType.Deflate);
  27. zf.Add(new MemoryStream(Encoding.ASCII.GetBytes("test")), "Test", CompressionType.Deflate);
  28. var test = "test";
  29. for (int i = 0; i < 1000; i++) test += "test";
  30. zf.Add(new MemoryStream(Encoding.ASCII.GetBytes(test)), "LargeTest", CompressionType.Deflate);
  31. }
  32. using (var zf = ZipFile.OpenRead(testZip))
  33. {
  34. var zipEntry = zf.Entries.ToArray()[0];
  35. Assert.Equal(CompressionType.Store, zipEntry.CompressionMethod);
  36. Assert.Equal(0, (int)zipEntry.CompressedSize);
  37. Assert.Equal(0, (int)zipEntry.UncompressedSize);
  38. for (int n = 1; n < 3; n++)
  39. {
  40. zipEntry = zf.Entries.ToArray()[n];
  41. if (zipEntry.CompressedSize == zipEntry.UncompressedSize)
  42. {
  43. Assert.Equal(CompressionType.Store, zipEntry.CompressionMethod);
  44. }
  45. else
  46. {
  47. Assert.Equal(CompressionType.Deflate, zipEntry.CompressionMethod);
  48. }
  49. }
  50. }
  51. Thread.Sleep(100);
  52. File.Delete(testZip);
  53. }
  54. [Fact]
  55. public void TestDecryption()
  56. {
  57. var testZip = "testDecrypt.zip";
  58. var password = "test";
  59. File.Delete(testZip);
  60. Thread.Sleep(100);
  61. ResourceUtility.ExctractIfNotExists("7z_encrypt", testZip);
  62. TestDecryptFile(testZip, password);
  63. Thread.Sleep(100);
  64. File.Delete(testZip);
  65. }
  66. [Fact]
  67. public void TestDecryptionWrongPassword()
  68. {
  69. var testZip = "testDecrypt.zip";
  70. var password = "test1";
  71. File.Delete(testZip);
  72. Thread.Sleep(100);
  73. ResourceUtility.ExctractIfNotExists("7z_encrypt", testZip);
  74. Assert.Throws<WinZipAesException>(() => TestDecryptFile(testZip, password));
  75. Thread.Sleep(100);
  76. File.Delete(testZip);
  77. }
  78. private void TestDecryptFile(string testZip, string password)
  79. {
  80. using (var zf = ZipFile.OpenRead(testZip))
  81. {
  82. var zipEntries = zf.Entries.ToList();
  83. foreach (var zipEntry in zipEntries)
  84. {
  85. Assert.NotNull(zipEntry.WinZipAesExtra);
  86. var entryText = ReadToEnd(zipEntries[0], password);
  87. Assert.Equal(entryText.Substring(entryText.Length - 5), " }\r\n}");
  88. }
  89. }
  90. }
  91. [Fact]
  92. public void TestEncryptDecryptSmall()
  93. {
  94. const string testZip = "smallEncDec.zip";
  95. const string password = "test";
  96. RunCompressionTest(testZip, 5, 5, password);
  97. }
  98. [Fact]
  99. public void TestEncryptDecryptMedium()
  100. {
  101. const string testZip = "mediumEncDec.zip";
  102. const string password = "test";
  103. RunCompressionTest(testZip, 5, 50, password);
  104. }
  105. [Fact]
  106. public void TestEncryptDecryptLarge()
  107. {
  108. const string testZip = "largeEncDec.zip";
  109. const string password = "test";
  110. RunCompressionTest(testZip, 5, 20 * OneKiloByte, password);
  111. }
  112. [Fact]
  113. public void TestCompressionSmall()
  114. {
  115. const string testZip = "smallComp.zip";
  116. RunCompressionTest(testZip, 5, 5);
  117. }
  118. [Fact]
  119. public void TestCompressionMedium()
  120. {
  121. const string testZip = "mediumComp.zip";
  122. RunCompressionTest(testZip, 5, 50);
  123. }
  124. [Fact]
  125. public void TestCompressionLarge()
  126. {
  127. const string testZip = "largeComp.zip";
  128. RunCompressionTest(testZip, 5, 20 * OneKiloByte);
  129. }
  130. [Fact]
  131. public void TestCompressionWithEncryption()
  132. {
  133. string testZip = "compareEnc.zip";
  134. Console.WriteLine("Compressing with encryption");
  135. RunCompressionTest(testZip, 10, OneMegaByte, "test");
  136. Console.WriteLine("");
  137. testZip = "compareComp.zip";
  138. Console.WriteLine("Compressing without encryption");
  139. RunCompressionTest(testZip, 10, OneMegaByte);
  140. }
  141. private void RunCompressionTest(string zipFile, int numberOfFiles, int contentSize, string password = null)
  142. {
  143. File.Delete(zipFile);
  144. Thread.Sleep(100);
  145. var content = RandomString(contentSize);
  146. var files = GetFileNames(numberOfFiles);
  147. var timer = Stopwatch.StartNew();
  148. using (var zf = ZipFile.Open(zipFile))
  149. {
  150. foreach (var file in files)
  151. {
  152. var fileStream = new MemoryStream(Encoding.ASCII.GetBytes(content));
  153. if (password == null)
  154. {
  155. zf.Add(fileStream, file, CompressionType.Deflate);
  156. }
  157. else
  158. {
  159. zf.Add(fileStream, file, CompressionType.Deflate, password);
  160. }
  161. }
  162. }
  163. timer.Stop();
  164. Console.WriteLine("Elapsed time: {0}", timer.ElapsedMilliseconds);
  165. using (var zf = ZipFile.OpenRead(zipFile))
  166. {
  167. foreach (var file in files)
  168. {
  169. var zipEntry = zf.Find(file);
  170. var entryText = password == null ? ReadToEnd(zipEntry) : ReadToEnd(zipEntry, password);
  171. Assert.Equal(content, entryText);
  172. }
  173. }
  174. Thread.Sleep(100);
  175. File.Delete(zipFile);
  176. }
  177. }
  178. }