-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pulsar JMS Client all package - relocate Pulsar classes and use Pulsa…
…r Client shaded depenencies
- Loading branch information
Showing
11 changed files
with
241 additions
and
18 deletions.
There are no files selected for viewing
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
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
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
61 changes: 61 additions & 0 deletions
61
...tegration-tests/src/test/java/com/datastax/oss/pulsar/jms/tests/RelocatedClassesTest.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,61 @@ | ||
/* | ||
* Copyright DataStax, Inc. | ||
* | ||
* 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 com.datastax.oss.pulsar.jms.tests; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
import com.datastax.oss.pulsar.jms.PulsarConnectionFactory; | ||
import com.datastax.oss.pulsar.jms.shaded.org.apache.pulsar.client.impl.auth.AuthenticationToken; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
import org.junit.jupiter.api.Test; | ||
|
||
public class RelocatedClassesTest { | ||
|
||
@Test | ||
public void test() throws Exception { | ||
Map<String, Object> properties = new HashMap<>(); | ||
|
||
// here we are using the repackaged Pulsar client and actually the class name is | ||
assertTrue( | ||
AuthenticationToken.class.getName().startsWith("com.datastax.oss.pulsar.jms.shaded")); | ||
|
||
properties.put("authPlugin", "org.apache.pulsar.client.impl.auth.AuthenticationToken"); | ||
|
||
Map<String, Object> consumerProperties = new HashMap<>(); | ||
consumerProperties.put("something", "org.apache.pulsar.client.something"); | ||
|
||
Map<String, Object> producerProperties = new HashMap<>(); | ||
producerProperties.put("somethingElse", "org.apache.pulsar.somethingElse"); | ||
|
||
properties.put("consumerConfig", consumerProperties); | ||
properties.put("producerConfig", producerProperties); | ||
|
||
try (PulsarConnectionFactory factory = new PulsarConnectionFactory(properties); ) { | ||
Map<String, Object> adjustedConfiguration = factory.getConfiguration(); | ||
assertEquals(AuthenticationToken.class.getName(), adjustedConfiguration.get("authPlugin")); | ||
|
||
assertEquals( | ||
"com.datastax.oss.pulsar.jms.shaded.org.apache.pulsar.client.something", | ||
((Map) adjustedConfiguration.get("consumerConfig")).get("something")); | ||
|
||
assertEquals( | ||
"com.datastax.oss.pulsar.jms.shaded.org.apache.pulsar.somethingElse", | ||
((Map) adjustedConfiguration.get("producerConfig")).get("somethingElse")); | ||
} | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
pulsar-jms-integration-tests/src/test/resources/admin-token.jwt
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 @@ | ||
eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJhZG1pbiJ9.AkN4Ig_QUcGUwbG_8IkD68raAFmtewjipO2fK0Y3RtQ |
69 changes: 69 additions & 0 deletions
69
pulsar-jms-integration-tests/src/test/resources/client.conf
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,69 @@ | ||
# | ||
# 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. | ||
# | ||
|
||
# Configuration for pulsar-client and pulsar-admin CLI tools | ||
|
||
# URL for Pulsar REST API (for admin operations) | ||
# For TLS: | ||
# webServiceUrl=https://localhost:8443/ | ||
webServiceUrl=http://localhost:8080/ | ||
|
||
# URL for Pulsar Binary Protocol (for produce and consume operations) | ||
# For TLS: | ||
# brokerServiceUrl=pulsar+ssl://localhost:6651/ | ||
brokerServiceUrl=pulsar://localhost:6650/ | ||
|
||
# Authentication plugin to authenticate with servers | ||
# e.g. for TLS | ||
# authPlugin=org.apache.pulsar.client.impl.auth.AuthenticationTls | ||
authPlugin=org.apache.pulsar.client.impl.auth.AuthenticationToken | ||
|
||
# Parameters passed to authentication plugin. | ||
# A comma separated list of key:value pairs. | ||
# Keys depend on the configured authPlugin. | ||
# e.g. for TLS | ||
# authParams=tlsCertFile:/path/to/client-cert.pem,tlsKeyFile:/path/to/client-key.pem | ||
authParams=file:///pulsar/conf/admin-token.jwt | ||
|
||
# Allow TLS connections to servers whose certificate cannot be | ||
# be verified to have been signed by a trusted certificate | ||
# authority. | ||
tlsAllowInsecureConnection=false | ||
|
||
# Whether server hostname must match the common name of the certificate | ||
# the server is using. | ||
tlsEnableHostnameVerification=false | ||
|
||
# Path for the trusted TLS certificate file. | ||
# This cert is used to verify that any cert presented by a server | ||
# is signed by a certificate authority. If this verification | ||
# fails, then the cert is untrusted and the connection is dropped. | ||
tlsTrustCertsFilePath= | ||
|
||
# Enable TLS with KeyStore type configuration in broker. | ||
useKeyStoreTls=false | ||
|
||
# TLS KeyStore type configuration: JKS, PKCS12 | ||
tlsTrustStoreType=JKS | ||
|
||
# TLS TrustStore path | ||
tlsTrustStorePath= | ||
|
||
# TLS TrustStore password | ||
tlsTrustStorePassword= |
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 @@ | ||
t������F�>g�_B`�xPD,$��NWb0 |
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
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
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 @@ | ||
eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ0ZXN0LXVzZXIifQ.33mWJpOK6K2VtSfnuzSKyTmRZ8NOU9TXD88DiVcmZ-s |
Oops, something went wrong.