Skip to content
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

feat: apiml Spring-Modulith based module with Gateway and Discovery services #4051

Draft
wants to merge 115 commits into
base: v3.x.x
Choose a base branch
from

Conversation

pablocarle
Copy link
Contributor

Description

Gateway and Discovery as part of Spring Modulith APIML module.

Type of change

  • feat: New feature (non-breaking change which adds functionality)

Checklist:

  • My code follows the style guidelines of this project
  • PR title conforms to commit message guideline ## Commit Message Structure Guideline
  • I have commented my code, particularly in hard-to-understand areas. In JS I did provide JSDoc
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • New and existing unit tests pass locally with my changes
  • The java tests in the area I was working on leverage @nested annotations
  • Any dependent changes have been merged and published in downstream modules

nx673747 and others added 30 commits March 21, 2025 10:50
Signed-off-by: Pablo Carle <[email protected]>
Signed-off-by: Pablo Carle <[email protected]>
Signed-off-by: nx673747 <[email protected]>
Signed-off-by: Pablo Carle <[email protected]>
Signed-off-by: Pablo Carle <[email protected]>
fix
Signed-off-by: Pablo Carle <[email protected]>
Signed-off-by: Pablo Carle <[email protected]>
Signed-off-by: Pablo Carle <[email protected]>
Signed-off-by: Andrea Tabone <[email protected]>
Signed-off-by: Pablo Carle <[email protected]>
.setInstanceId(String.format("%s:%s:%d", hostname, serviceId, port))
.setAppName(serviceId)
.setHostName(hostname)
.setHomePageUrl(null, String.format("%s://%s:%d", scheme, hostname, port)) //TODO Will it break something else other than catalog?
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess it's solved?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I need to improve this, it's a quick fix only, thanks for spotting it


# Service specific messages
# 700-999
- key: org.zowe.apiml.common.unauthorized
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe this import is not necessary, this message is already in common-log-messages.yml which is already included in the MessageService bean, but we should verify it

@@ -32,26 +34,44 @@ public class BasicAuthFilter implements WebFilter {

@Override
public Mono<Void> filter(ServerWebExchange exchange, WebFilterChain chain) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

some javadoc for this filter would be good too

}

// TODO Add test when primary registration
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

todo

InstanceInfo instance4 = createBasicTestInstance(InstanceInfo.InstanceStatus.UP);
List<InstanceInfo> instances = Arrays.asList(instance1, instance2, instance3, instance4);
when(eurekaClient.getApplication(CLIENT_SERVICE_ID)).thenReturn(new Application(CLIENT_SERVICE_ID, instances));
var instance1 = createBasicTestInstance(InstanceInfo.InstanceStatus.STARTING);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

could you put them globally since they are used in more than one test?

pablocarle and others added 11 commits April 2, 2025 16:25
…atewayIndexService.java

Co-authored-by: Andrea Tabone <[email protected]>
Signed-off-by: Pablo Carle <[email protected]>
Signed-off-by: Pablo Carle <[email protected]>
Signed-off-by: Pablo Carle <[email protected]>
Signed-off-by: Pablo Carle <[email protected]>
Signed-off-by: Pablo Carle <[email protected]>
Signed-off-by: Pablo Carle <[email protected]>
Signed-off-by: Pablo Carle <[email protected]>
Signed-off-by: Pablo Carle <[email protected]>
Signed-off-by: Pablo Carle <[email protected]>
Copy link

sonarqubecloud bot commented Apr 4, 2025

Quality Gate Failed Quality Gate failed

Failed conditions
30.2% Coverage on New Code (required ≥ 80%)

See analysis details on SonarQube Cloud

Pablo Carle added 2 commits April 4, 2025 17:30
Signed-off-by: Pablo Carle <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Sensitive Sensitive change that requires peer review size/XXL
Projects
Status: In Progress
Development

Successfully merging this pull request may close these issues.

2 participants