-
Notifications
You must be signed in to change notification settings - Fork 23
test header capture #895
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
test header capture #895
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
1b482ae
remove obsolete things
SylvainJuge 7c934a7
rename features test to span stacktrace test
SylvainJuge 883fba7
revert to a single class for common features
SylvainJuge e47121a
fix minor issue with local debugging
SylvainJuge 916f656
add ability to provide http headers + assert attribute array value
SylvainJuge 1c5adb3
add jms message sending in test app
SylvainJuge 30c461d
implement header test for messaging
SylvainJuge ba459e2
code cleanup
SylvainJuge c6c4df1
code lint
SylvainJuge File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
87 changes: 87 additions & 0 deletions
87
smoke-tests/test-app/src/main/java/co/elastic/otel/test/MessagingController.java
This file contains hidden or 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,87 @@ | ||
| /* | ||
| * Licensed to Elasticsearch B.V. under one or more contributor | ||
| * license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright | ||
| * ownership. Elasticsearch B.V. 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 co.elastic.otel.test; | ||
|
|
||
| import java.util.Enumeration; | ||
| import javax.jms.JMSException; | ||
| import javax.jms.Message; | ||
| import javax.jms.TextMessage; | ||
| import org.springframework.beans.factory.annotation.Autowired; | ||
| import org.springframework.jms.core.JmsTemplate; | ||
| import org.springframework.web.bind.annotation.RequestMapping; | ||
| import org.springframework.web.bind.annotation.RequestParam; | ||
| import org.springframework.web.bind.annotation.RestController; | ||
|
|
||
| @RestController | ||
| @RequestMapping("/messages") | ||
| public class MessagingController { | ||
jackshirazi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| private static final String DESTINATION = "messages-destination"; | ||
|
|
||
| @Autowired | ||
| public MessagingController(JmsTemplate jmsTemplate) { | ||
| this.jmsTemplate = jmsTemplate; | ||
| } | ||
|
|
||
| private final JmsTemplate jmsTemplate; | ||
|
|
||
| @RequestMapping("/send") | ||
| public String send( | ||
| @RequestParam(name = "headerName", required = false) String headerName, | ||
| @RequestParam(name = "headerValue", required = false) String headerValue) { | ||
| jmsTemplate.send( | ||
| DESTINATION, | ||
| session -> { | ||
| TextMessage message = session.createTextMessage("Hello World"); | ||
| if (headerName != null && headerValue != null) { | ||
| message.setStringProperty(headerName, headerValue); | ||
| } | ||
| return message; | ||
| }); | ||
| return null; | ||
| } | ||
|
|
||
| @RequestMapping("/receive") | ||
| public String receive() throws JMSException { | ||
| Message received = jmsTemplate.receive(DESTINATION); | ||
| if (received instanceof TextMessage) { | ||
| TextMessage textMessage = (TextMessage) received; | ||
| StringBuilder sb = new StringBuilder(); | ||
| sb.append("message: [").append(textMessage.getText()).append("]"); | ||
|
|
||
| Enumeration<?> propertyNames = textMessage.getPropertyNames(); | ||
| if (propertyNames.hasMoreElements()) { | ||
| sb.append(", headers: ["); | ||
| int count = 0; | ||
| while (propertyNames.hasMoreElements()) { | ||
| String propertyName = (String) propertyNames.nextElement(); | ||
| sb.append(count++ > 0 ? ", " : "") | ||
| .append(propertyName) | ||
| .append(" = ") | ||
| .append(textMessage.getStringProperty(propertyName)); | ||
| } | ||
| sb.append("]"); | ||
| } | ||
|
|
||
| return sb.toString(); | ||
| } else { | ||
| return "nothing received"; | ||
| } | ||
| } | ||
| } | ||
2 changes: 2 additions & 0 deletions
2
smoke-tests/test-app/src/main/resources/application.properties
This file contains hidden or 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,2 @@ | ||
| # use an in-process activemq artemis instance | ||
| spring.artemis.mode=embedded | ||
jackshirazi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.