blob: 69f8cc1406d436b68e68a82ec8b483a6a586fb5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 log4net;
using NUnit.Framework;
using Qpid.Messaging;
using Qpid.Client.Qms;
namespace Qpid.Client.Tests
{
/// <summary>
/// Provides a basis for writing Unit tests that communicate with an AMQ protocol broker. By default it creates a connection
/// to a message broker running on localhost on the standard AMQ port, 5672, using guest:guest login credentials, on the default exchange,
/// 'test' queue.
/// </summary>
public class BaseMessagingTestFixture
{
private static ILog _logger = LogManager.GetLogger(typeof(BaseMessagingTestFixture));
/// <summary> The default AMQ connection URL to use for tests. </summary>
const string connectionUri = "amqp://guest:guest@default/test?brokerlist='tcp://localhost:5672'";
/// <summary> Holds the test connection. </summary>
protected IConnection _connection;
/// <summary> Holds the test channel. </summary>
protected IChannel _channel;
/// <summary>
/// Creates the test connection and channel.
/// </summary>
[SetUp]
public virtual void Init()
{
_logger.Info("public virtual void Init(): called");
try
{
IConnectionInfo connectionInfo = QpidConnectionInfo.FromUrl(connectionUri);
_connection = new AMQConnection(connectionInfo);
_channel = _connection.CreateChannel(false, AcknowledgeMode.NoAcknowledge, 1);
}
catch (QpidException e)
{
_logger.Error("Error initialisng test fixture: " + e, e);
throw e;
}
}
/// <summary>
/// Disposes the test connection. This is called manually because the connection is a field so dispose will not be automatically
/// called on it.
/// </summary>
[TearDown]
public virtual void Shutdown()
{
_logger.Info("public virtual void Shutdown(): called");
if (_connection != null)
{
_logger.Info("Disposing connection.");
_connection.Dispose();
_logger.Info("Connection disposed.");
}
}
}
}
|