use of org.bf2.admin.kafka.systemtest.utils.ConsumerUtils in project kafka-admin-api by bf2fc6cc711aee1a0c2a.
the class PartitionsOffsetOauthIT method setup.
@BeforeEach
void setup() {
tokenUtils = new TokenUtils(config);
consumerUtils = new ConsumerUtils(config, tokenUtils.getToken(UserType.OWNER.getUsername()));
}
use of org.bf2.admin.kafka.systemtest.utils.ConsumerUtils in project kafka-admin-api by bf2fc6cc711aee1a0c2a.
the class ConsumerGroupsOAuthTestIT method setup.
@BeforeEach
void setup() {
String token = tokenUtils.getToken(UserType.OWNER.getUsername());
topicUtils = new TopicUtils(config, token);
topicUtils.deleteAllTopics();
groupUtils = new ConsumerUtils(config, token);
batchId = UUID.randomUUID().toString();
}
Aggregations