-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #613 from pzygielo/jms/ra/versions-test
- Loading branch information
Showing
4 changed files
with
121 additions
and
1 deletion.
There are no files selected for viewing
43 changes: 43 additions & 0 deletions
43
...n/mq-client/src/test/java/com/sun/messaging/jmq/jmsclient/ConnectionMetaDataImplTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Copyright (c) 2020 Contributors to Eclipse Foundation. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the | ||
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
package com.sun.messaging.jmq.jmsclient; | ||
|
||
import static org.junit.jupiter.api.Assertions.*; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.mockito.Mockito; | ||
|
||
import jakarta.jms.JMSException; | ||
|
||
class ConnectionMetaDataImplTest { | ||
@Test | ||
void testJMSVersionConsistency() throws JMSException { | ||
ConnectionImpl stubCon = makeConnectionImpl(); | ||
ConnectionMetaDataImpl cmdi = new ConnectionMetaDataImpl(stubCon); | ||
|
||
int majorVersion = cmdi.getJMSMajorVersion(); | ||
int minorVersion = cmdi.getJMSMinorVersion(); | ||
String version = cmdi.getJMSVersion(); | ||
|
||
assertEquals(String.format("%d.%d", majorVersion, minorVersion), version); | ||
} | ||
|
||
private static ConnectionImpl makeConnectionImpl() throws JMSException { | ||
ConnectionImpl cimpl = Mockito.mock(ConnectionImpl.class); | ||
return cimpl; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
66 changes: 66 additions & 0 deletions
66
mq/main/mq-jmsra/jmsra-ra/src/test/java/com/sun/messaging/jms/ra/ConnectionMetaDataTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/* | ||
* Copyright (c) 2020 Contributors to Eclipse Foundation. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the | ||
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
package com.sun.messaging.jms.ra; | ||
|
||
import static org.junit.jupiter.api.Assertions.*; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import jakarta.jms.JMSException; | ||
|
||
class ConnectionMetaDataTest { | ||
@Test | ||
void testJMSVersionConsistency() throws JMSException { | ||
ConnectionMetaData cmdi = makeConnectionMetaData(); | ||
|
||
int majorVersion = cmdi.getJMSMajorVersion(); | ||
int minorVersion = cmdi.getJMSMinorVersion(); | ||
String version = cmdi.getJMSVersion(); | ||
|
||
assertEquals(String.format("%d.%d", majorVersion, minorVersion), version); | ||
} | ||
|
||
private static ConnectionMetaData makeConnectionMetaData() { | ||
ConnectionMetaData cmd = new ConnectionMetaData(null) { | ||
|
||
@Override | ||
protected boolean hasJMSXAppID() { | ||
return false; | ||
} | ||
|
||
@Override | ||
protected boolean hasJMSXUserID() { | ||
return false; | ||
} | ||
|
||
@Override | ||
protected boolean hasJMSXProducerTXID() { | ||
return false; | ||
} | ||
|
||
@Override | ||
protected boolean hasJMSXConsumerTXID() { | ||
return false; | ||
} | ||
|
||
@Override | ||
protected boolean hasJMSXRcvTimestamp() { | ||
return false; | ||
}}; | ||
return cmd; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters