summaryrefslogtreecommitdiff
path: root/qpid/java/qpid-perftests-systests/src/main/java/org/apache/qpid/systest/disttest/clientonly/MessageProviderTest.java
blob: dcbff6518b4f2aabe2cb8983379652192c9e7b16 (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
 * 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.systest.disttest.clientonly;

import java.util.HashMap;
import java.util.Map;

import javax.jms.DeliveryMode;
import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.MessageConsumer;
import javax.jms.Session;
import javax.jms.TextMessage;

import org.apache.qpid.disttest.client.MessageProvider;
import org.apache.qpid.disttest.client.property.PropertyValue;
import org.apache.qpid.disttest.client.property.SimplePropertyValue;
import org.apache.qpid.disttest.message.CreateMessageProviderCommand;
import org.apache.qpid.disttest.message.CreateProducerCommand;
import org.apache.qpid.systest.disttest.DistributedTestSystemTestBase;
import org.apache.qpid.systest.disttest.clientonly.ProducerParticipantTest.TestClientJmsDelegate;

public class MessageProviderTest extends DistributedTestSystemTestBase
{
    private MessageConsumer _consumer;
    private Session _session;
    private TestClientJmsDelegate _delegate;

    @Override
    protected void setUp() throws Exception
    {
        super.setUp();
        _session = _connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
        _consumer = _session.createConsumer(getTestQueue());
        _delegate = new TestClientJmsDelegate(getContext());
    }

    public void testMessageSize() throws Exception
    {
        runSizeTest(0);
        runSizeTest(5);
        runSizeTest(512);
    }

    public void runSizeTest(int size) throws Exception
    {
        CreateProducerCommand command = new CreateProducerCommand();
        command.setMessageSize(size);
        MessageProvider messageProvider = new MessageProvider(null);
        Message message = messageProvider.nextMessage(_session, command);
        assertNotNull("Message is not generated", message);
        assertTrue("Wrong message type", message instanceof TextMessage);
        TextMessage textMessage = (TextMessage)message;
        String text = textMessage.getText();
        assertNotNull("Message payload is not generated", text);
        assertEquals("Message payload size is incorrect", size, text.length());
    }

    public void testCreateMessageProviderAndSendMessage() throws Exception
    {
        final CreateMessageProviderCommand messageProviderCommand = new CreateMessageProviderCommand();
        messageProviderCommand.setProviderName("test1");
        Map<String, PropertyValue> messageProperties = new HashMap<String, PropertyValue>();
        messageProperties.put("test", new SimplePropertyValue("testValue"));
        messageProperties.put("priority", new SimplePropertyValue(new Integer(9)));
        messageProviderCommand.setMessageProperties(messageProperties);
        _delegate.createMessageProvider(messageProviderCommand);

        final CreateProducerCommand producerCommand = new CreateProducerCommand();
        producerCommand.setNumberOfMessages(1);
        producerCommand.setDeliveryMode(DeliveryMode.PERSISTENT);
        producerCommand.setPriority(6);
        producerCommand.setParticipantName("test");
        producerCommand.setMessageSize(10);
        producerCommand.setSessionName("testSession");
        producerCommand.setDestinationName(getTestQueueName());
        producerCommand.setMessageProviderName(messageProviderCommand.getProviderName());

        Session session = _connection.createSession(true, Session.SESSION_TRANSACTED);
        _delegate.addConnection("name-does-not-matter", _connection);
        _delegate.addSession(producerCommand.getSessionName(), session);
        _delegate.createProducer(producerCommand);

        Message message = _delegate.sendNextMessage(producerCommand);
        session.commit();
        assertMessage(message);

        _connection.start();
        Message receivedMessage = _consumer.receive(1000l);
        assertMessage(receivedMessage);
     }

    protected void assertMessage(Message message) throws JMSException
    {
        assertNotNull("Message should not be null", message);
        assertEquals("Unexpected test property", "testValue", message.getStringProperty("test"));
        assertEquals("Unexpected priority property", 9, message.getJMSPriority());
        assertTrue("Unexpected message type", message instanceof TextMessage);
        String text = ((TextMessage)message).getText();
        assertNotNull("Message text should not be null", text);
        assertNotNull("Unexpected message size ", text.length());
    }
}