How to use isRecordMatch method of org.cerberus.service.kafka.impl.KafkaService class

Best Cerberus-source code snippet using org.cerberus.service.kafka.impl.KafkaService.isRecordMatch

Source:KafkaService.java Github

copy

Full Screen

...364 messageJSON.put("offset", record.offset());365 messageJSON.put("partition", record.partition());366 messageJSON.put("header", headerJSON);367 nbEvents++;368 boolean match = isRecordMatch(record.value(), filterPath, filterValue, messageJSON.toString(), filterHeaderPath, filterHeaderValue);369 if (match) {370 resultJSON.put(messageJSON);371 nbFound++;372 if (nbFound >= targetNbEventsInt) {373 consume = false; //exit the consume loop374 consumer.wakeup(); //takes effect on the next poll loop so need to break.375 break; //if we've found a match, stop looping through the current record batch376 }377 }378 } catch (Exception ex) {379 //Catch any exceptions thrown from message processing/testing as they should have already been reported/dealt with380 //but we don't want to trigger the catch block for Kafka consumption381 LOG.error(ex, ex);382 }383 }384 } else {385 // AVRO VERSION386 @SuppressWarnings("unchecked")387 ConsumerRecords<String, GenericRecord> recordsAvro = consumer.poll(Duration.ofSeconds(pollDurationSec));388 LOG.debug("End Poll.");389 if (Instant.now().toEpochMilli() > timeoutTime) {390 LOG.debug("Timed out searching for record");391 consumer.wakeup(); //exit392 }393 //Now for each record in the batch of records we got from Kafka394 for (ConsumerRecord<String, GenericRecord> record : recordsAvro) {395 try {396 LOG.debug("New record " + record.topic() + " " + record.partition() + " " + record.offset());397 LOG.debug(" " + record.key() + " | " + record.value());398 // Parsing header.399 JSONObject headerJSON = new JSONObject();400 for (Header header : record.headers()) {401 String headerKey = header.key();402 String headerValue = new String(header.value());403 headerJSON.put(headerKey, headerValue);404 }405 boolean recordError = false;406 // Parsing message.407 JSONObject recordJSON = new JSONObject();408 try {409 recordJSON = new JSONObject(record.value().toString());410 } catch (JSONException ex) {411 LOG.error(ex, ex);412 recordError = true;413 }414 // Complete event with headers.415 JSONObject messageJSON = new JSONObject();416 messageJSON.put("key", record.key());417 messageJSON.put("value", recordJSON);418 messageJSON.put("offset", record.offset());419 messageJSON.put("partition", record.partition());420 messageJSON.put("header", headerJSON);421 nbEvents++;422 boolean match = isRecordMatch(record.value().toString(), filterPath, filterValue, messageJSON.toString(), filterHeaderPath, filterHeaderValue);423 if (match) {424 resultJSON.put(messageJSON);425 nbFound++;426 if (nbFound >= targetNbEventsInt) {427 consume = false; //exit the consume loop428 consumer.wakeup(); //takes effect on the next poll loop so need to break.429 break; //if we've found a match, stop looping through the current record batch430 }431 }432 } catch (Exception ex) {433 //Catch any exceptions thrown from message processing/testing as they should have already been reported/dealt with434 //but we don't want to trigger the catch block for Kafka consumption435 LOG.error(ex, ex);436 }437 }438 }439 }440 result.setItem(resultJSON.toString());441 Instant date2 = Instant.now();442 Duration duration = Duration.between(date1, date2);443 message = new MessageEvent(MessageEventEnum.ACTION_SUCCESS_CALLSERVICE_SEARCHKAFKA)444 .resolveDescription("NBEVENT", String.valueOf(nbFound))445 .resolveDescription("NBTOT", String.valueOf(nbEvents))446 .resolveDescription("NBSEC", String.valueOf(duration.getSeconds()));447 }448 } catch (WakeupException e) {449 result.setItem(resultJSON.toString());450 Instant date2 = Instant.now();451 Duration duration = Duration.between(date1, date2);452 message = new MessageEvent(MessageEventEnum.ACTION_SUCCESS_CALLSERVICE_SEARCHKAFKAPARTIALRESULT)453 .resolveDescription("NBEVENT", String.valueOf(nbFound))454 .resolveDescription("NBTOT", String.valueOf(nbEvents))455 .resolveDescription("NBSEC", String.valueOf(duration.getSeconds()));456 //Ignore457 } catch (NullPointerException ex) {458 message = new MessageEvent(MessageEventEnum.ACTION_FAILED_CALLSERVICE_SEARCHKAFKA);459 message.setDescription(message.getDescription().replace("%EX%", ex.toString()).replace("%TOPIC%", topic).replace("%HOSTS%", bootstrapServers));460 LOG.error(ex, ex);461 } catch (Exception ex) {462 message = new MessageEvent(MessageEventEnum.ACTION_FAILED_CALLSERVICE_SEARCHKAFKA);463 message.setDescription(message.getDescription().replace("%EX%", ex.toString() + " " + StringUtil.getExceptionCauseFromString(ex)).replace("%TOPIC%", topic).replace("%HOSTS%", bootstrapServers));464 LOG.debug(ex, ex);465 } finally {466 if (consumer != null) {467 LOG.info("Closed Consumer : " + getKafkaConsumerKey(topic, bootstrapServers));468 consumer.close();469 } else {470 LOG.info("Consumer not opened : " + getKafkaConsumerKey(topic, bootstrapServers));471 }472 }473 result.setItem(resultJSON.toString());474 message.setDescription(message.getDescription().replace("%SERVICEMETHOD%", AppService.METHOD_KAFKASEARCH).replace("%TOPIC%", topic));475 result.setResultMessage(message);476 return result;477 }478 // Method to determine if the record match the filter criterias.479 private boolean isRecordMatch(String jsomEventMessage, String filterPath, String filterValue, String jsomMessage, String filterHeaderPath, String filterHeaderValue) {480 boolean match = true;481 if (!StringUtil.isNullOrEmpty(filterPath)) {482 String recordJSONfiltered = "";483 try {484 recordJSONfiltered = jsonService.getStringFromJson(jsomEventMessage, filterPath);485 } catch (PathNotFoundException ex) {486 //Catch any exceptions thrown from message processing/testing as they should have already been reported/dealt with487 //but we don't want to trigger the catch block for Kafka consumption488 match = false;489 LOG.debug("Record discarded - Event Path not found.");490 } catch (Exception ex) {491 LOG.error(ex, ex);492 }493 LOG.debug("Filtered Event value : " + recordJSONfiltered);...

Full Screen

Full Screen

isRecordMatch

Using AI Code Generation

copy

Full Screen

1def kafkaService = new org.cerberus.service.kafka.impl.KafkaService()2def kafkaTopic = new org.cerberus.service.kafka.entity.KafkaTopic()3kafkaTopic.setTopicName("myTopic")4def kafkaBroker = new org.cerberus.service.kafka.entity.KafkaBroker()5kafkaBroker.setBrokerUrl("localhost:9092")6kafkaBroker.setBrokerVersion("

Full Screen

Full Screen

isRecordMatch

Using AI Code Generation

copy

Full Screen

1def cerberusService = appContext.getBean("cerberusService")2def kafkaService = appContext.getBean("kafkaService")3def topic = kafkaService.getTopic("topicname")4def message = kafkaService.getMessage("message")5def record = kafkaService.getRecord(topic, message)6def recordValue = kafkaService.getRecordValue(record)7def recordKey = kafkaService.getRecordKey(record)8def recordPartition = kafkaService.getRecordPartition(record)9def recordTimestamp = kafkaService.getRecordTimestamp(record)10def recordOffset = kafkaService.getRecordOffset(record)11def recordHeaders = kafkaService.getRecordHeaders(record)12def recordHeader = kafkaService.getRecordHeader(record, "headername")13def recordHeaderValue = kafkaService.getRecordHeaderValue(recordHeader)14def recordHeaderValueAsString = kafkaService.getRecordHeaderValueAsString(recordHeader)15def recordHeaderValueAsInt = kafkaService.getRecordHeaderValueAsInt(recordHeader)16def recordHeaderValueAsLong = kafkaService.getRecordHeaderValueAsLong(recordHeader)17def recordHeaderValueAsFloat = kafkaService.getRecordHeaderValueAsFloat(recordHeader)18def recordHeaderValueAsDouble = kafkaService.getRecordHeaderValueAsDouble(recordHeader)19def recordHeaderValueAsBoolean = kafkaService.getRecordHeaderValueAsBoolean(recordHeader)20def recordHeaderValueAsDate = kafkaService.getRecordHeaderValueAsDate(recordHeader)21def recordHeaderValueAsTime = kafkaService.getRecordHeaderValueAsTime(recordHeader)22def recordHeaderValueAsDateTime = kafkaService.getRecordHeaderValueAsDateTime(recordHeader)23def recordHeaderValueAsTimestamp = kafkaService.getRecordHeaderValueAsTimestamp(recordHeader)

Full Screen

Full Screen

isRecordMatch

Using AI Code Generation

copy

Full Screen

1 private boolean isRecordMatch(JsonObject record) {2 String recordKey = record.get("key").getAsString();3 String recordValue = record.get("value").getAsString();4 return recordKey.equals("key") && recordValue.equals("value");5 }6 private void waitForRecord() {7 try {8 Thread.sleep(10000);9 } catch (InterruptedException e) {10 LOG.error("Error while waiting for record", e);11 }12 }13 @When("^I send a message to the topic \"([^\"]*)\" with key \"([^\"]*)\" and value \"([^\"]*)\"$")14 public void iSendAMessageToTheTopicWithKeyAndValue(String topic, String key, String value) {15 kafkaService.sendRecord(topic, key, value);16 }17 @Then("^I should see the message \"([^\"]*)\" with key \"([^\"]*)\" and value \"([^\"]*)\" in the topic \"([^\"]*)\"$")18 public void iShouldSeeTheMessageWithKeyAndValueInTheTopic(String topic, String key, String value) {19 JsonObject record = kafkaService.getRecord(topic, this::isRecordMatch);20 if (record == null) {21 waitForRecord();22 record = kafkaService.getRecord(topic, this::isRecordMatch);23 }24 Assert.assertNotNull(record);25 Assert.assertEquals(key, record.get("key").getAsString());26 Assert.assertEquals(value, record.get("value").getAsString());27 }28}

Full Screen

Full Screen

isRecordMatch

Using AI Code Generation

copy

Full Screen

1import org.cerberus.service.kafka.impl.KafkaService;2import org.cerberus.service.kafka.impl.KafkaServiceFactory;3import org.cerberus.service.kafka.impl.KafkaServiceFactoryImpl;4KafkaServiceFactory kafkaServiceFactory = new KafkaServiceFactoryImpl();5KafkaService kafkaService = kafkaServiceFactory.createKafkaService();6if (kafkaService.isRecordMatch(record)) {7 kafkaService.sendRecord(record);8}9import org.cerberus.service.kafka.impl.KafkaService;10import org.cerberus.service.kafka.impl.KafkaServiceFactory;11import org.cerberus.service.kafka.impl.KafkaServiceFactoryImpl;12KafkaServiceFactory kafkaServiceFactory = new KafkaServiceFactoryImpl();13KafkaService kafkaService = kafkaServiceFactory.createKafkaService();14if (kafkaService.isRecordMatch(record)) {15 kafkaService.sendRecord(record);16}17import org.cerberus.service.kafka.impl.KafkaService;18import org.cerberus.service.kafka.impl.KafkaServiceFactory;19import org.cerberus.service.kafka

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Cerberus-source automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful