poorbarcode commented on code in PR #23002:
URL: https://github.com/apache/pulsar/pull/23002#discussion_r1669611734
##########
pulsar-broker/src/test/java/org/apache/pulsar/broker/admin/AdminTopicApiTest.java:
##########
@@ -71,6 +75,62 @@ protected void cleanup() throws Exception {
super.internalCleanup();
}
+ @Test
+ public void testDeleteNonExistTopic() throws Exception {
+ // Case 1: call delete for a partitioned topic.
+ final String topic1 =
BrokerTestUtil.newUniqueName("persistent://public/default/tp");
+ admin.topics().createPartitionedTopic(topic1, 2);
+ admin.schemas().createSchemaAsync(topic1,
Schema.STRING.getSchemaInfo());
+ Awaitility.await().untilAsserted(() -> {
+ assertEquals(admin.schemas().getAllSchemas(topic1).size(), 1);
+ });
+ try {
+ admin.topics().delete(topic1);
+ fail("expected a 409 error");
+ } catch (Exception ex) {
+ assertTrue(ex.getMessage().contains("please call
delete-partitioned-topic instead"));
+ }
+ Awaitility.await().untilAsserted(() -> {
Review Comment:
Fixed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]