-
Notifications
You must be signed in to change notification settings - Fork 96
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
Add integration test #1689
Conversation
0406f45
to
252755c
Compare
...s/verticle-postgres-it/src/main/java/org/hibernate/reactive/it/verticle/ProductVerticle.java
Fixed
Show fixed
Hide fixed
} | ||
|
||
private Future<Product> getProduct(RoutingContext ctx) { | ||
long id = Long.parseLong( ctx.pathParam( "id" ) ); |
Check notice
Code scanning / CodeQL
Missing catch of NumberFormatException
...chempower-postgres-it/src/main/java/org/hibernate/reactive/it/techempower/WorldVerticle.java
Fixed
Show fixed
Hide fixed
...s/verticle-postgres-it/src/main/java/org/hibernate/reactive/it/verticle/ProductVerticle.java
Fixed
Show fixed
Hide fixed
|
||
postRequests.add( send ); | ||
} | ||
return all( postRequests ); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation
.deployVerticle( () -> new ProductVerticle( () -> sf ), deploymentOptions ) | ||
.map( ignore -> webClient ) | ||
.compose( this::createProducts ) | ||
.map( ignore -> webClient ) |
Check notice
Code scanning / CodeQL
Useless parameter
.compose( this::createProducts ) | ||
.map( ignore -> webClient ) | ||
.compose( this::findProducts ) | ||
.onSuccess( res -> context.completeNow() ) |
Check notice
Code scanning / CodeQL
Useless parameter
...wer-postgres-it/src/test/java/org/hibernate/reactive/techempower/TechEmpowerRestAPITest.java
Fixed
Show fixed
Hide fixed
...wer-postgres-it/src/test/java/org/hibernate/reactive/techempower/TechEmpowerRestAPITest.java
Fixed
Show fixed
Hide fixed
252755c
to
18e456f
Compare
.deployVerticle( () -> new WorldVerticle( () -> sf ), deploymentOptions ) | ||
.map( ignore -> webClient ) | ||
.compose( this::createData ) | ||
.map( ignore -> webClient ) |
Check notice
Code scanning / CodeQL
Useless parameter
.compose( this::createData ) | ||
.map( ignore -> webClient ) | ||
.compose( this::updates ) | ||
.onSuccess( res -> context.completeNow() ) |
Check notice
Code scanning / CodeQL
Useless parameter
9db6a29
to
751ff2a
Compare
Remove warnings and refactor the createion of the test tasks
751ff2a
to
3b7fe84
Compare
Superseeed by #1690 |
The build should fail because it doesn't include this fix
Fix #1686