forked from apache/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix][broker] partitioned __change_events topic is policy topic (apac…
…he#20392) (cherry picked from commit 9918bce) backported to branch-2.10 by renaming SystemTopicsNames to EventsTopicNames (cherry picked from commit 323d112)
- Loading branch information
1 parent
9dfe4bc
commit ce8008e
Showing
3 changed files
with
49 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
pulsar-common/src/test/java/org/apache/pulsar/common/events/EventsTopicNamesTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.pulsar.common.events; | ||
|
||
import static org.testng.AssertJUnit.assertEquals; | ||
import org.apache.pulsar.common.naming.TopicName; | ||
import org.testng.annotations.DataProvider; | ||
import org.testng.annotations.Test; | ||
|
||
@Test | ||
public class EventsTopicNamesTest { | ||
|
||
@DataProvider(name = "topicPoliciesEventsTopicNames") | ||
public static Object[][] topicPoliciesEventsTopicNames() { | ||
return new Object[][] { | ||
{"persistent://public/default/__change_events", true}, | ||
{"persistent://public/default/__change_events-partition-0", true}, | ||
{"persistent://random-tenant/random-ns/__change_events", true}, | ||
{"persistent://random-tenant/random-ns/__change_events-partition-1", true}, | ||
{"persistent://public/default/not_really__change_events", false}, | ||
{"persistent://public/default/__change_events-diff-suffix", false}, | ||
{"persistent://a/b/not_really__change_events", false}, | ||
}; | ||
} | ||
|
||
@Test(dataProvider = "topicPoliciesEventsTopicNames") | ||
public void testIsTopicPoliciesSystemTopic(String topicName, boolean expectedResult) { | ||
assertEquals(expectedResult, EventsTopicNames.isTopicPoliciesSystemTopic(topicName)); | ||
assertEquals(expectedResult, EventsTopicNames.checkTopicIsEventsNames(TopicName.get(topicName))); | ||
} | ||
} |