You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.2 KiB
64 lines
2.2 KiB
/* Copyright 2013-present MongoDB Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Net;
|
|
#if NET45
|
|
using System.Runtime.Serialization.Formatters.Binary;
|
|
#endif
|
|
using FluentAssertions;
|
|
using MongoDB.Driver.Core.Clusters;
|
|
using MongoDB.Driver.Core.Connections;
|
|
using MongoDB.Driver.Core.Servers;
|
|
using Xunit;
|
|
|
|
namespace MongoDB.Driver
|
|
{
|
|
public class MongoConnectionFailedExceptionTests
|
|
{
|
|
private readonly ConnectionId _connectionId = new ConnectionId(new ServerId(new ClusterId(1), new DnsEndPoint("localhost", 27017)), 2).WithServerValue(3);
|
|
|
|
[Fact]
|
|
public void constructor_should_initialize_subject()
|
|
{
|
|
var subject = new MongoConnectionClosedException(_connectionId);
|
|
|
|
subject.ConnectionId.Should().BeSameAs(_connectionId);
|
|
subject.InnerException.Should().BeNull();
|
|
subject.Message.Should().BeSameAs("The connection was closed while we were waiting our turn to use it.");
|
|
}
|
|
|
|
#if NET45
|
|
[Fact]
|
|
public void Serialization_should_work()
|
|
{
|
|
var subject = new MongoConnectionClosedException(_connectionId);
|
|
|
|
var formatter = new BinaryFormatter();
|
|
using (var stream = new MemoryStream())
|
|
{
|
|
formatter.Serialize(stream, subject);
|
|
stream.Position = 0;
|
|
var rehydrated = (MongoConnectionClosedException)formatter.Deserialize(stream);
|
|
|
|
rehydrated.ConnectionId.Should().Be(subject.ConnectionId);
|
|
rehydrated.InnerException.Should().BeNull();
|
|
rehydrated.Message.Should().Be(subject.Message);
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
}
|