How to use lastTestedVersionFromTags method of io.cucumber.core.plugin.ManualScenarioChecker class

Best Serenity Cucumber code snippet using io.cucumber.core.plugin.ManualScenarioChecker.lastTestedVersionFromTags

Source:UpdateManualScenario.java Github

copy

Full Screen

...19 public static UpdateManualScenarioBuilder forScenario(String description) {20 return new UpdateManualScenarioBuilder(description);21 }22 public void updateManualScenario(TestResult result, List<Tag> scenarioTags) {23 Optional<String> lastTestedVersion = manualScenarioChecker.lastTestedVersionFromTags(scenarioTags);24 Optional<String> testEvidence = manualScenarioChecker.testEvidenceFromTags(scenarioTags);25 Boolean manualTestIsUpToDate = manualScenarioChecker.scenarioResultIsUpToDate(scenarioTags);26 if (!manualTestIsUpToDate) {27 updateCurrentScenarioResultTo(TestResult.PENDING, lastTestedVersion, manualTestIsUpToDate, testEvidence);28 } else if (isUnsuccessful(result)) {29 recordManualFailureForCurrentScenarioWithResult(result, lastTestedVersion, manualTestIsUpToDate, testEvidence);30 } else {31 updateCurrentScenarioResultTo(result, lastTestedVersion, manualTestIsUpToDate, testEvidence);32 }33 }34 private void recordManualFailureForCurrentScenarioWithResult(TestResult result,35 Optional<String> lastTestedVersion,36 Boolean manualTestIsUpToDate,37 Optional<String> testEvidence) {...

Full Screen

Full Screen

Source:ManualScenarioChecker.java Github

copy

Full Screen

...24 public ManualScenarioChecker(EnvironmentVariables environmentVariables) {25 this.environmentVariables = environmentVariables;26 }27 public boolean scenarioResultIsUpToDate(List<Tag> scenarioTags) {28 Optional<String> lastTestedVersion = lastTestedVersionFromTags(scenarioTags);29 Optional<String> currentTargetVersion = CURRENT_TARGET_VERSION.optionalFrom(environmentVariables);30 // If no @manual-last-tested-version is defined, a manual scenario result is always up to date31 if (!lastTestedVersion.isPresent()) {32 return true;33 }34 // If @manual-last-tested-version is defined but no current.target.version is defined, we might have a problem.35 if (!currentTargetVersion.isPresent() || StringUtil.isBlank(currentTargetVersion.get())) {36 LOGGER.warn(UNDEFINED_MANUAL_VERSION_TARGET_MESSAGE);37 return true;38 }39 return lastTestedVersion.get().equalsIgnoreCase(currentTargetVersion.get());40 }41 @NotNull42 public Optional<String> lastTestedVersionFromTags(List<Tag> scenarioTags) {43 return scenarioTags.stream()44 .filter(tag -> tag.getName().startsWith("@manual-last-tested:"))45 .map(tag -> versionFrom(tag.getName()))46 .findFirst();47 }48 private String versionFrom(String lastTestedVersionTag) {49 return lastTestedVersionTag.trim().substring("@manual-last-tested:".length()).trim();50 }51 @NotNull52 public Optional<String> testEvidenceFromTags(List<Tag> scenarioTags) {53 return scenarioTags.stream()54 .filter(tag -> tag.getName().startsWith("@manual-test-evidence:"))55 .map(tag -> evidenceFrom(tag.getName()))56 .findFirst();...

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 Serenity Cucumber 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