sijie commented on a change in pull request #3168: Refactor api commands
URL: https://github.com/apache/pulsar/pull/3168#discussion_r243146265
##########
File path:
pulsar-functions/worker/src/test/java/org/apache/pulsar/functions/worker/rest/api/v2/SinkApiV2ResourceTest.java
##########
@@ -282,13 +314,18 @@ public void testRegisterSinkNoInput() throws IOException
{
null,
className,
parallelism,
- null,
- "Must specify at least one topic of input via
topicToSerdeClassName, topicsPattern, topicToSchemaType or inputSpecs");
+ null
+ );
+ } catch (RestException re){
+ assertEquals(re.getResponse().getStatusInfo(),
Response.Status.BAD_REQUEST);
+ throw re;
+ }
}
- @Test
- public void testRegisterSinkNegativeParallelism() throws IOException {
- testRegisterSinkMissingArguments(
+ @Test(expectedExceptions = RestException.class,
expectedExceptionsMessageRegExp = "Sink parallelism should positive number")
Review comment:
keep all assertions in one place.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services