2023-01-24 15:29:31 +01:00
|
|
|
|
/* Copyright (c) Cloud Software Group, Inc.
|
2013-06-24 13:41:48 +02:00
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms,
|
|
|
|
|
* with or without modification, are permitted provided
|
|
|
|
|
* that the following conditions are met:
|
|
|
|
|
*
|
|
|
|
|
* * Redistributions of source code must retain the above
|
|
|
|
|
* copyright notice, this list of conditions and the
|
|
|
|
|
* following disclaimer.
|
|
|
|
|
* * Redistributions in binary form must reproduce the above
|
|
|
|
|
* copyright notice, this list of conditions and the
|
|
|
|
|
* following disclaimer in the documentation and/or other
|
|
|
|
|
* materials provided with the distribution.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
|
|
|
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
|
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
|
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using NUnit.Framework;
|
2023-09-22 16:41:54 +02:00
|
|
|
|
using XenCenterLib;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
using XenCenterLib.Archive;
|
|
|
|
|
|
|
|
|
|
namespace XenAdminTests.ArchiveTests
|
|
|
|
|
{
|
2019-06-03 19:04:52 +02:00
|
|
|
|
[TestFixture, Category(TestCategories.Unit)]
|
|
|
|
|
public class ArchiveIteratorTests
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
|
|
|
|
#region ArchiveIterator Fake
|
|
|
|
|
private class ArchiveIteratorFake : ArchiveIterator
|
|
|
|
|
{
|
|
|
|
|
private Stream extractedFile;
|
|
|
|
|
private bool disposed;
|
|
|
|
|
|
2019-06-03 19:04:52 +02:00
|
|
|
|
public int NumberOfCallsLeftReturn { private get; set; }
|
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
public Stream ExtractedFileReturn
|
|
|
|
|
{
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
extractedFile = value;
|
|
|
|
|
disposed = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-09-22 16:41:54 +02:00
|
|
|
|
public string CurrentFileNameReturn { get; set; }
|
2019-06-03 19:04:52 +02:00
|
|
|
|
public long CurrentFileSizeReturn { private get; set; }
|
|
|
|
|
public DateTime ModTimeReturn { private get; set; }
|
|
|
|
|
public bool IsDirectoryReturn { private get; set; }
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
|
|
public ArchiveIteratorFake()
|
|
|
|
|
{
|
|
|
|
|
Reset();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Reset()
|
|
|
|
|
{
|
|
|
|
|
CurrentFileNameReturn = "TestFileName.fake";
|
|
|
|
|
CurrentFileSizeReturn = 100;
|
|
|
|
|
ExtractedFileReturn = new MemoryStream(Encoding.ASCII.GetBytes("This is a test"));
|
|
|
|
|
IsDirectoryReturn = false;
|
|
|
|
|
ModTimeReturn = new DateTime(2011, 4, 1, 11, 04, 01);
|
|
|
|
|
NumberOfCallsLeftReturn = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool HasNext()
|
|
|
|
|
{
|
2019-06-03 19:04:52 +02:00
|
|
|
|
if (NumberOfCallsLeftReturn < 1)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
return false;
|
|
|
|
|
|
2019-06-03 19:04:52 +02:00
|
|
|
|
NumberOfCallsLeftReturn--;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-06 03:43:54 +01:00
|
|
|
|
public override void ExtractCurrentFile(Stream extractedFileContents, Action cancellingDelegate)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
|
|
|
|
byte[] buffer = new byte[2 * 1024 * 1024];
|
|
|
|
|
int read;
|
|
|
|
|
while ((read = extractedFile.Read(buffer, 0, buffer.Length)) > 0)
|
|
|
|
|
{
|
|
|
|
|
extractedFileContents.Write(buffer, 0, read);
|
|
|
|
|
}
|
|
|
|
|
extractedFile.Position = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string CurrentFileName()
|
|
|
|
|
{
|
2023-09-22 16:41:54 +02:00
|
|
|
|
if (string.IsNullOrEmpty(CurrentFileNameReturn))
|
2019-06-03 19:04:52 +02:00
|
|
|
|
return CurrentFileNameReturn;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2023-09-22 16:41:54 +02:00
|
|
|
|
return CurrentFileNameReturn + NumberOfCallsLeftReturn;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override long CurrentFileSize()
|
|
|
|
|
{
|
2019-06-03 19:04:52 +02:00
|
|
|
|
return CurrentFileSizeReturn;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override DateTime CurrentFileModificationTime()
|
|
|
|
|
{
|
2019-06-03 19:04:52 +02:00
|
|
|
|
return ModTimeReturn;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool IsDirectory()
|
|
|
|
|
{
|
2019-06-03 19:04:52 +02:00
|
|
|
|
return IsDirectoryReturn;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
base.Dispose(disposing);
|
2023-09-22 16:41:54 +02:00
|
|
|
|
|
|
|
|
|
if (!disposed && disposing)
|
|
|
|
|
extractedFile?.Dispose();
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
2019-06-03 19:04:52 +02:00
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
#endregion
|
|
|
|
|
|
2019-06-03 19:04:52 +02:00
|
|
|
|
private ArchiveIteratorFake fakeIterator;
|
2023-09-22 16:41:54 +02:00
|
|
|
|
private string tempPath;
|
2019-06-03 19:04:52 +02:00
|
|
|
|
|
|
|
|
|
[OneTimeSetUp]
|
2013-06-24 13:41:48 +02:00
|
|
|
|
public void Setup()
|
|
|
|
|
{
|
|
|
|
|
fakeIterator = new ArchiveIteratorFake();
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-03 19:04:52 +02:00
|
|
|
|
[OneTimeTearDown]
|
2013-06-24 13:41:48 +02:00
|
|
|
|
public void TearDown()
|
|
|
|
|
{
|
|
|
|
|
fakeIterator.Dispose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[SetUp]
|
|
|
|
|
public void TestSetup()
|
|
|
|
|
{
|
2023-09-22 16:41:54 +02:00
|
|
|
|
tempPath = null;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
fakeIterator.Reset();
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-22 16:41:54 +02:00
|
|
|
|
[TearDown]
|
|
|
|
|
public void TestTearDown()
|
|
|
|
|
{
|
|
|
|
|
if (Directory.Exists(tempPath))
|
|
|
|
|
Directory.Delete(tempPath, true);
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
|
|
[Test]
|
2023-09-22 16:41:54 +02:00
|
|
|
|
public void TestExtractToNullDestinationPath()
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2019-06-03 19:04:52 +02:00
|
|
|
|
Assert.Throws(typeof(ArgumentNullException), () => fakeIterator.ExtractAllContents(null));
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
2023-09-22 16:41:54 +02:00
|
|
|
|
public void TestExtractNullFile()
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
|
|
|
|
fakeIterator.CurrentFileNameReturn = null;
|
2023-09-22 16:41:54 +02:00
|
|
|
|
Assert.Throws(typeof(NullReferenceException), () => fakeIterator.ExtractAllContents(Path.GetTempPath()));
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
2023-09-22 16:41:54 +02:00
|
|
|
|
|
|
|
|
|
[TestCase(true, true)]
|
|
|
|
|
[TestCase(true, false)]
|
|
|
|
|
[TestCase(false, true)]
|
|
|
|
|
[TestCase(false, false)]
|
|
|
|
|
public void TestExtractFile(bool longDirectoryPath, bool longFilePath)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2023-09-22 16:41:54 +02:00
|
|
|
|
tempPath = Path.Combine(Path.GetTempPath(), Path.GetRandomFileName());
|
|
|
|
|
|
|
|
|
|
var dirCharNumber = (longDirectoryPath ? 248 : 247) - tempPath.Length - 2;
|
|
|
|
|
//2 was removed for the combining slash between tempPath and dir, and the combining slash between dir and filename
|
|
|
|
|
var dir = new string('A', dirCharNumber);
|
|
|
|
|
var fileCharNumber = (longFilePath ? 260 : 259) - Path.Combine(tempPath, dir).Length - 2;
|
|
|
|
|
//2 was removed for the combining slash between the full dir path and filename, and the NumberOfCallsLeftReturn
|
|
|
|
|
var fileName = new string('B', fileCharNumber);
|
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
const int numberOfFiles = 3;
|
|
|
|
|
fakeIterator.NumberOfCallsLeftReturn = numberOfFiles;
|
2023-09-22 16:41:54 +02:00
|
|
|
|
fakeIterator.CurrentFileNameReturn = Path.Combine(dir, fileName);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
fakeIterator.ExtractAllContents(tempPath);
|
|
|
|
|
|
2023-09-22 16:41:54 +02:00
|
|
|
|
for (var i = 0; i < 3; i++)
|
|
|
|
|
{
|
|
|
|
|
string targetFile = Path.Combine(tempPath, fakeIterator.CurrentFileNameReturn + i);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2023-09-22 16:41:54 +02:00
|
|
|
|
if (longDirectoryPath || longFilePath)
|
|
|
|
|
targetFile = StringUtility.ToLongWindowsPathUnchecked(targetFile);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2023-09-22 16:41:54 +02:00
|
|
|
|
Assert.IsTrue(File.Exists(targetFile), "File should exist");
|
|
|
|
|
Assert.IsNotEmpty(File.ReadAllBytes(targetFile), "File should not be empty");
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2023-09-22 16:41:54 +02:00
|
|
|
|
Assert.IsFalse((File.GetAttributes(targetFile) & FileAttributes.Directory) == FileAttributes.Directory,
|
|
|
|
|
"It should not have directory attributes");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Check recursively that there are only the correct number of files
|
|
|
|
|
var actualFileNumber = Directory.GetFiles(tempPath, "*.*", SearchOption.AllDirectories).Length;
|
|
|
|
|
Assert.AreEqual(numberOfFiles, actualFileNumber, $"There should be {numberOfFiles}");
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2023-09-22 16:41:54 +02:00
|
|
|
|
if (longDirectoryPath || longFilePath)
|
|
|
|
|
tempPath = StringUtility.ToLongWindowsPathUnchecked(tempPath);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
|
2023-09-22 16:41:54 +02:00
|
|
|
|
|
|
|
|
|
[TestCase(true)]
|
|
|
|
|
[TestCase(false)]
|
|
|
|
|
public void TestExtractDirectory(bool longDirectoryPath)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
{
|
2023-09-22 16:41:54 +02:00
|
|
|
|
tempPath = Path.Combine(Path.GetTempPath(), Path.GetRandomFileName());
|
|
|
|
|
var dirCharNumber = (longDirectoryPath ? 248 : 247) - tempPath.Length - 2;
|
|
|
|
|
//2 was removed for the combining slash between tempPath and dir, and the NumberOfCallsLeftReturn
|
|
|
|
|
var dir = new string('A', dirCharNumber);
|
|
|
|
|
|
2013-06-24 13:41:48 +02:00
|
|
|
|
fakeIterator.IsDirectoryReturn = true;
|
2023-09-22 16:41:54 +02:00
|
|
|
|
fakeIterator.CurrentFileNameReturn = dir;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
fakeIterator.ExtractAllContents(tempPath);
|
|
|
|
|
|
|
|
|
|
string targetPath = Path.Combine(tempPath, fakeIterator.CurrentFileName());
|
|
|
|
|
|
2023-09-22 16:41:54 +02:00
|
|
|
|
if (longDirectoryPath)
|
|
|
|
|
targetPath = StringUtility.ToLongWindowsPathUnchecked(targetPath);
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2023-09-22 16:41:54 +02:00
|
|
|
|
Assert.IsFalse(File.Exists(targetPath), "Files should not exist");
|
|
|
|
|
Assert.IsEmpty(Directory.GetFiles(tempPath), "Directory should not have files");
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2023-09-22 16:41:54 +02:00
|
|
|
|
Assert.IsTrue(Directory.Exists(targetPath), "Directory should exist");
|
|
|
|
|
Assert.IsTrue((File.GetAttributes(targetPath) & FileAttributes.Directory) == FileAttributes.Directory,
|
|
|
|
|
"It should have directory attributes");
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
2023-09-22 16:41:54 +02:00
|
|
|
|
if (longDirectoryPath)
|
|
|
|
|
tempPath = StringUtility.ToLongWindowsPathUnchecked(tempPath);
|
|
|
|
|
}
|
2013-06-24 13:41:48 +02:00
|
|
|
|
}
|
|
|
|
|
}
|