blob: c820107304d310f4684666a9dca6b83be68164e8 [file] [log] [blame]
/*
*
* 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.
*
*/
package org.apache.qpid.server.logging.messages;
import java.util.List;
/**
* Test CON Log Messages
*/
public class ConnectionMessagesTest extends AbstractTestMessages
{
public void testConnectionOpen_WithOptional()
{
String port = "myport";
String local = "127.0.0.1:5672";
String protocolVersion = "0-8";
String clientID = "client";
String clientVersion = "1.2.3_4";
String clientProduct = "myProduct";
_logMessage = ConnectionMessages.OPEN(port, local, protocolVersion, clientID, clientVersion, clientProduct , false, true, true, true);
List<Object> log = performLog();
String[] expected = {"Open",
": Destination", "myport(127.0.0.1:5672)",
": Protocol Version :", protocolVersion,
": Client ID", clientID,
": Client Version :", clientVersion,
": Client Product :", clientProduct};
validateLogMessage(log, "CON-1001", expected);
}
public void testConnectionOpen()
{
String port = "myport";
String local = "127.0.0.1:5672";
String protocolVersion = "0-8";
_logMessage = ConnectionMessages.OPEN(port, local, protocolVersion, null, null, null , false, false, false, false);
List<Object> log = performLog();
String[] expected = {"Open",
": Destination", "myport(127.0.0.1:5672)",
": Protocol Version :", protocolVersion};
validateLogMessage(log, "CON-1001", expected);
}
public void testSslConnectionOpen()
{
String port = "myport";
String local = "127.0.0.1:5672";
String protocolVersion = "0-8";
_logMessage = ConnectionMessages.OPEN(port, local, protocolVersion, null, null, null , true, false, false, false);
List<Object> log = performLog();
String[] expected = {"Open",
": Destination", "myport(127.0.0.1:5672)",
": Protocol Version :", protocolVersion,
": SSL"};
validateLogMessage(log, "CON-1001", expected);
}
public void testConnectionClose()
{
_logMessage = ConnectionMessages.CLOSE();
List<Object> log = performLog();
String[] expected = {"Close"};
validateLogMessage(log, "CON-1002", expected);
}
}