How to use LazyCleanupRegistration method of org.testingisdocumenting.webtau.cli.CliBackgroundCommandManager class

Best Webtau code snippet using org.testingisdocumenting.webtau.cli.CliBackgroundCommandManager.LazyCleanupRegistration

Source:CliBackgroundCommandManager.java Github

copy

Full Screen

...32 // and will remain for a test run33 private static final ThreadLocal<Map<Integer, CliBackgroundCommand>> localRunningCommands =34 ThreadLocal.withInitial(LinkedHashMap::new);35 static void register(CliBackgroundCommand backgroundCommand) {36 LazyCleanupRegistration.INSTANCE.noOp();37 validateProcessActive(backgroundCommand);38 int pid = backgroundCommand.getBackgroundProcess().getPid();39 runningCommands.put(pid, backgroundCommand);40 localRunningCommands.get().put(pid, backgroundCommand);41 }42 static void remove(CliBackgroundCommand backgroundCommand) {43 validateProcessActive(backgroundCommand);44 runningCommands.remove(backgroundCommand.getBackgroundProcess().getPid());45 }46 @Override47 public void beforeTestRun(WebTauTest test) {48 localRunningCommands.get().clear();49 localRunningCommands.get().putAll(runningCommands);50 runningCommands.values().forEach(CliBackgroundCommand::clearThreadLocal);51 }52 @Override53 public void afterTestRun(WebTauTest test) {54 Map<Integer, CliBackgroundCommand> combinedCommands = new LinkedHashMap<>(runningCommands);55 combinedCommands.putAll(localRunningCommands.get());56 List<Map<String, ?>> backgroundCommands = combinedCommands.values()57 .stream()58 .map(CliBackgroundCommand::toMap)59 .collect(Collectors.toList());60 test.addTestResultPayload(new TestResultPayload("cliBackground", backgroundCommands));61 }62 static synchronized void destroyActiveProcesses() {63 runningCommands.values().stream()64 .filter(CliBackgroundCommand::isActive)65 .forEach(CliBackgroundCommand::stop);66 runningCommands.clear();67 }68 private static void validateProcessActive(CliBackgroundCommand backgroundCommand) {69 if (backgroundCommand.getBackgroundProcess() == null) {70 throw new IllegalStateException("process should not be null");71 }72 }73 private static class LazyCleanupRegistration {74 private static final LazyCleanupRegistration INSTANCE = new LazyCleanupRegistration();75 private LazyCleanupRegistration() {76 CleanupRegistration.registerForCleanup("shutting down", "shut down", "cli background processes",77 () -> runningCommands.values().stream().anyMatch(CliBackgroundCommand::isActive),78 CliBackgroundCommandManager::destroyActiveProcesses);79 }80 // to trigger class loading and shutdown hook registration81 private void noOp() {82 }83 }84}...

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 Webtau automation tests on LambdaTest cloud grid

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

Most used method in CliBackgroundCommandManager

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful