blob: b71e31de7df1affbff5cf28a0d4569bed67e8220 [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
* <br>
* http://www.apache.org/licenses/LICENSE-2.0
* <br>
* 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.activemq.artemis.tests.integration;
import org.apache.activemq.artemis.api.core.client.ClientConsumer;
import org.apache.activemq.artemis.api.core.client.ClientMessage;
import org.apache.activemq.artemis.api.core.client.ClientProducer;
import org.apache.activemq.artemis.tests.util.SingleServerTestBase;
import org.junit.Test;
import java.util.UUID;
/**
* A simple test-case used for documentation purposes.
*/
public class SingleServerSimpleTest extends SingleServerTestBase {
/**
* Because this class extends org.apache.activemq.artemis.tests.util.SingleServerTestBase and only uses a single
* instance of ActiveMQServer then no explicit setUp is required. The class simply needs tests which will use
* the server.
*/
@Test
public void simpleTest() throws Exception {
final String data = "Simple Text " + UUID.randomUUID().toString();
final String queueName = "simpleQueue";
final String addressName = "simpleAddress";
// Create a queue bound to a particular address where the test will send to & consume from.
session.createQueue(addressName, queueName);
// Create a producer to send a message to the previously created address.
ClientProducer producer = session.createProducer(addressName);
// Create a non-durable message.
ClientMessage message = session.createMessage(false);
// Put some data into the message.
message.getBodyBuffer().writeString(data);
// Send the message. This send will be auto-committed based on the way the session was created in setUp()
producer.send(message);
// Close the producer.
producer.close();
// Create a consumer on the queue bound to the address where the message was sent.
ClientConsumer consumer = session.createConsumer(queueName);
// Start the session to allow messages to be consumed.
session.start();
// Receive the message we sent previously.
message = consumer.receive(1000);
// Ensure the message was received.
assertNotNull(message);
// Acknowledge the message.
message.acknowledge();
// Ensure the data in the message received matches the data in the message sent.
assertEquals(data, message.getBodyBuffer().readString());
}
}