2014-07-03 11:00:05 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Runtime.Serialization.Formatters.Binary;
|
|
|
|
|
using NUnit.Framework;
|
2017-05-24 10:23:47 +02:00
|
|
|
|
using XenAdmin.Core;
|
2014-07-03 11:00:05 +02:00
|
|
|
|
using XenAPI;
|
|
|
|
|
|
|
|
|
|
namespace XenAdminTests.UnitTests
|
|
|
|
|
{
|
|
|
|
|
[TestFixture, Category(TestCategories.Unit)]
|
|
|
|
|
class ExceptionSerializationTest
|
|
|
|
|
{
|
|
|
|
|
private List<string> errorDescriptions = new List<string> { "AN_ERROR_CODEE", "Error description", "Some text"};
|
|
|
|
|
private List<string> friendlyErrorDescriptions = new List<string> { "CANNOT_ADD_VLAN_TO_BOND_SLAVE", "Cannot add..."};
|
|
|
|
|
private string errorText = "An Error has occured";
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestEmptyFailure()
|
|
|
|
|
{
|
|
|
|
|
var failure = new Failure();
|
|
|
|
|
TestFailureSeralization(failure);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestInnerExceptionFailure()
|
|
|
|
|
{
|
|
|
|
|
var failure = new Failure(errorText, new Exception(errorText));
|
|
|
|
|
TestFailureSeralization(failure);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestSimpleFailure()
|
|
|
|
|
{
|
|
|
|
|
var failure = new Failure(errorText);
|
|
|
|
|
TestFailureSeralization(failure);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestFailureWithErrorDescriptions()
|
|
|
|
|
{
|
|
|
|
|
var failure = new Failure(errorDescriptions);
|
|
|
|
|
TestFailureSeralization(failure);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestFailureWithFriendlyErrorNames()
|
|
|
|
|
{
|
|
|
|
|
var failure = new Failure(friendlyErrorDescriptions);
|
|
|
|
|
TestFailureSeralization(failure);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void TestFailureSeralization(Failure failure)
|
|
|
|
|
{
|
|
|
|
|
Failure deserializedFailure;
|
|
|
|
|
|
|
|
|
|
// Serialize and de-serialize with a BinaryFormatter
|
|
|
|
|
BinaryFormatter bf = new BinaryFormatter();
|
|
|
|
|
using (MemoryStream ms = new MemoryStream())
|
|
|
|
|
{
|
|
|
|
|
bf.Serialize(ms, failure);
|
|
|
|
|
ms.Seek(0, 0);
|
|
|
|
|
deserializedFailure = (Failure)(bf.Deserialize(ms));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check that properties are preserved
|
|
|
|
|
Assert.AreEqual(failure.Message, deserializedFailure.Message, "Message is different");
|
|
|
|
|
Assert.AreEqual(failure.ShortMessage, deserializedFailure.ShortMessage, "ShortMessage is different");
|
|
|
|
|
if (failure.ErrorDescription != null)
|
|
|
|
|
{
|
2014-07-04 15:44:38 +02:00
|
|
|
|
Assert.IsNotNull(deserializedFailure.ErrorDescription);
|
2014-07-03 11:00:05 +02:00
|
|
|
|
Assert.AreEqual(failure.ErrorDescription.Count, deserializedFailure.ErrorDescription.Count,
|
|
|
|
|
"ErrorDescription count is different");
|
|
|
|
|
for (int i = 0; i < failure.ErrorDescription.Count; i++)
|
|
|
|
|
{
|
|
|
|
|
Assert.AreEqual(failure.ErrorDescription[i], deserializedFailure.ErrorDescription[i],
|
|
|
|
|
string.Format("ErrorDescription[{0}] count is different", i));
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-07-04 15:44:38 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Assert.IsNull(deserializedFailure.ErrorDescription);
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-03 11:00:05 +02:00
|
|
|
|
if (failure.InnerException != null)
|
|
|
|
|
{
|
2014-07-04 15:44:38 +02:00
|
|
|
|
Assert.IsNotNull(deserializedFailure.InnerException);
|
2014-07-03 11:00:05 +02:00
|
|
|
|
Assert.AreEqual(failure.InnerException.Message, deserializedFailure.InnerException.Message, "Message is different");
|
|
|
|
|
}
|
2014-07-04 15:44:38 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Assert.IsNull(deserializedFailure.InnerException);
|
|
|
|
|
}
|
2014-07-03 11:00:05 +02:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestTooManyRedirectsException()
|
|
|
|
|
{
|
|
|
|
|
var exception = new HTTP.TooManyRedirectsException(2, new Uri("http://www.someurl.com"));
|
|
|
|
|
HTTP.TooManyRedirectsException deserializedException;
|
|
|
|
|
|
|
|
|
|
// Serialize and de-serialize with a BinaryFormatter
|
|
|
|
|
BinaryFormatter bf = new BinaryFormatter();
|
|
|
|
|
using (MemoryStream ms = new MemoryStream())
|
|
|
|
|
{
|
|
|
|
|
bf.Serialize(ms, exception);
|
|
|
|
|
ms.Seek(0, 0);
|
|
|
|
|
deserializedException = (HTTP.TooManyRedirectsException)(bf.Deserialize(ms));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check that properties are preserved
|
|
|
|
|
Assert.AreEqual(exception.Message, deserializedException.Message, "Message is different");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestBadServerResponseException()
|
|
|
|
|
{
|
|
|
|
|
var exception = new HTTP.BadServerResponseException();
|
|
|
|
|
HTTP.BadServerResponseException deserializedException;
|
|
|
|
|
|
|
|
|
|
// Serialize and de-serialize with a BinaryFormatter
|
|
|
|
|
BinaryFormatter bf = new BinaryFormatter();
|
|
|
|
|
using (MemoryStream ms = new MemoryStream())
|
|
|
|
|
{
|
|
|
|
|
bf.Serialize(ms, exception);
|
|
|
|
|
ms.Seek(0, 0);
|
|
|
|
|
deserializedException = (HTTP.BadServerResponseException)(bf.Deserialize(ms));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check that properties are preserved
|
|
|
|
|
Assert.AreEqual(exception.Message, deserializedException.Message, "Message is different");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestCancelledException()
|
|
|
|
|
{
|
|
|
|
|
var exception = new HTTP.CancelledException();
|
|
|
|
|
HTTP.CancelledException deserializedException;
|
|
|
|
|
|
|
|
|
|
// Serialize and de-serialize with a BinaryFormatter
|
|
|
|
|
BinaryFormatter bf = new BinaryFormatter();
|
|
|
|
|
using (MemoryStream ms = new MemoryStream())
|
|
|
|
|
{
|
|
|
|
|
bf.Serialize(ms, exception);
|
|
|
|
|
ms.Seek(0, 0);
|
|
|
|
|
deserializedException = (HTTP.CancelledException)(bf.Deserialize(ms));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check that properties are preserved
|
|
|
|
|
Assert.AreEqual(exception.Message, deserializedException.Message, "Message is different");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestEventNextBlockedException()
|
|
|
|
|
{
|
2017-05-24 10:23:47 +02:00
|
|
|
|
var exception = new EventFromBlockedException();
|
|
|
|
|
EventFromBlockedException deserializedException;
|
2014-07-03 11:00:05 +02:00
|
|
|
|
|
|
|
|
|
// Serialize and de-serialize with a BinaryFormatter
|
|
|
|
|
BinaryFormatter bf = new BinaryFormatter();
|
|
|
|
|
using (MemoryStream ms = new MemoryStream())
|
|
|
|
|
{
|
|
|
|
|
bf.Serialize(ms, exception);
|
2017-05-24 10:23:47 +02:00
|
|
|
|
ms.Seek(0, 0);
|
|
|
|
|
deserializedException = (EventFromBlockedException)(bf.Deserialize(ms));
|
2014-07-03 11:00:05 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check that properties are preserved
|
|
|
|
|
Assert.AreEqual(exception.Message, deserializedException.Message, "Message is different");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|