Browse Source
This commit removes the queue attribute of the JmsListener annotation as this information should be provided by the container factory and not by each individual listener endpoints. There was a side effect that an annotation value cannot be null, which was forcing the container to be a queue-based container by default. Issue: SPR-9882pull/530/head
Stephane Nicoll
11 years ago
13 changed files with 118 additions and 59 deletions
@ -0,0 +1,64 @@
@@ -0,0 +1,64 @@
|
||||
/* |
||||
* Copyright 2002-2014 the original author or authors. |
||||
* |
||||
* 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. |
||||
*/ |
||||
|
||||
package org.springframework.jms.listener.endpoint; |
||||
|
||||
import static org.junit.Assert.*; |
||||
|
||||
import org.junit.Rule; |
||||
import org.junit.Test; |
||||
import org.junit.rules.ExpectedException; |
||||
|
||||
/** |
||||
* @author Stephane Nicoll |
||||
*/ |
||||
public class JmsMessageEndpointManagerTests { |
||||
|
||||
@Rule |
||||
public final ExpectedException thrown = ExpectedException.none(); |
||||
|
||||
@Test |
||||
public void isPubSubDomainWithQueue() { |
||||
JmsMessageEndpointManager endpoint = new JmsMessageEndpointManager(); |
||||
JmsActivationSpecConfig config = new JmsActivationSpecConfig(); |
||||
config.setPubSubDomain(false); |
||||
endpoint.setActivationSpecConfig(config); |
||||
assertEquals(false, endpoint.isPubSubDomain()); |
||||
} |
||||
|
||||
@Test |
||||
public void isPubSubDomainWithTopic() { |
||||
JmsMessageEndpointManager endpoint = new JmsMessageEndpointManager(); |
||||
JmsActivationSpecConfig config = new JmsActivationSpecConfig(); |
||||
config.setPubSubDomain(true); |
||||
endpoint.setActivationSpecConfig(config); |
||||
assertEquals(true, endpoint.isPubSubDomain()); |
||||
} |
||||
|
||||
@Test |
||||
public void isPubSubDomainWithNoConfig() { |
||||
JmsMessageEndpointManager endpoint = new JmsMessageEndpointManager(); |
||||
|
||||
thrown.expect(IllegalStateException.class); // far from ideal
|
||||
endpoint.isPubSubDomain(); |
||||
} |
||||
|
||||
@Test |
||||
public void getMessageConverterNoConfig() { |
||||
JmsMessageEndpointManager endpoint = new JmsMessageEndpointManager(); |
||||
assertNull(endpoint.getMessageConverter()); |
||||
} |
||||
} |
Loading…
Reference in new issue