Skip to content

Add integration test #1689

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

Closed
wants to merge 7 commits into from
Closed

Conversation

DavideD
Copy link
Member

@DavideD DavideD commented Jun 29, 2023

The build should fail because it doesn't include this fix

Fix #1686

@DavideD DavideD force-pushed the 1686-integration-tests branch 2 times, most recently from 0406f45 to 252755c Compare June 29, 2023 20:57
}

private Future<Product> getProduct(RoutingContext ctx) {
long id = Long.parseLong( ctx.pathParam( "id" ) );

Check notice

Code scanning / CodeQL

Missing catch of NumberFormatException

Potential uncaught 'java.lang.NumberFormatException'.

postRequests.add( send );
}
return all( postRequests );

Check notice

Code scanning / CodeQL

Deprecated method or constructor invocation

Invoking [CompositeFuture.all](1) should be avoided because it has been deprecated.
.deployVerticle( () -> new ProductVerticle( () -> sf ), deploymentOptions )
.map( ignore -> webClient )
.compose( this::createProducts )
.map( ignore -> webClient )

Check notice

Code scanning / CodeQL

Useless parameter

The parameter 'ignore' is never used.
.compose( this::createProducts )
.map( ignore -> webClient )
.compose( this::findProducts )
.onSuccess( res -> context.completeNow() )

Check notice

Code scanning / CodeQL

Useless parameter

The parameter 'res' is never used.
@DavideD DavideD force-pushed the 1686-integration-tests branch from 252755c to 18e456f Compare June 29, 2023 21:18
.deployVerticle( () -> new WorldVerticle( () -> sf ), deploymentOptions )
.map( ignore -> webClient )
.compose( this::createData )
.map( ignore -> webClient )

Check notice

Code scanning / CodeQL

Useless parameter

The parameter 'ignore' is never used.
.compose( this::createData )
.map( ignore -> webClient )
.compose( this::updates )
.onSuccess( res -> context.completeNow() )

Check notice

Code scanning / CodeQL

Useless parameter

The parameter 'res' is never used.
@DavideD DavideD force-pushed the 1686-integration-tests branch 5 times, most recently from 9db6a29 to 751ff2a Compare June 30, 2023 09:23
@DavideD DavideD force-pushed the 1686-integration-tests branch from 751ff2a to 3b7fe84 Compare June 30, 2023 09:57
@DavideD
Copy link
Member Author

DavideD commented Jun 30, 2023

Superseeed by #1690

@DavideD DavideD closed this Jun 30, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add back integration tests with Vert.x
1 participant