nodece commented on code in PR #23002:
URL: https://github.com/apache/pulsar/pull/23002#discussion_r1666965046


##########
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:
   Misses `pollDelay(2, TimeUnit.SECONDS)`?
   
   Would you like to check if the schema exists?



-- 
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: commits-unsubscr...@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to