Skip to content

Commit

Permalink
Merge pull request #643 from jglick/RemainingActivityListener
Browse files Browse the repository at this point in the history
Adding `RemainingActivityListener` for diagnosis
  • Loading branch information
jglick authored Aug 24, 2023
2 parents a0211f3 + 04bf078 commit 3efc797
Showing 1 changed file with 84 additions and 0 deletions.
84 changes: 84 additions & 0 deletions src/main/java/org/jvnet/hudson/test/RemainingActivityListener.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
/*
* The MIT License
*
* Copyright 2023 CloudBees, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/

package org.jvnet.hudson.test;

import hudson.Extension;
import hudson.model.Computer;
import hudson.model.Executor;
import hudson.model.Queue;
import java.util.logging.Logger;
import jenkins.model.Jenkins;

/**
* Checks for any ongoing activity (queue, builds) that might interfere with {@link TemporaryDirectoryAllocator#dispose}.
*/
@Extension
public final class RemainingActivityListener implements EndOfTestListener {

/**
* Set to true if you wish for warnings to be treated as fatal test errors.
*/
private static final boolean fatal = Boolean.getBoolean(RemainingActivityListener.class.getName() + ".fatal");

/**
* Set to true if you wish for test shutdown to just wait for activity to cease (not always appropriate).
*/
private static final boolean wait = Boolean.getBoolean(RemainingActivityListener.class.getName() + ".wait");

@Override
public void onTearDown() throws Exception {
if (wait) {
String problem;
while ((problem = problem()) != null) {
Logger.getLogger(RemainingActivityListener.class.getName()).warning(problem);
Thread.sleep(5_000);
}
} else {
String problem = problem();
if (problem != null) {
if (fatal) {
throw new AssertionError(problem);
} else {
Logger.getLogger(RemainingActivityListener.class.getName()).warning(problem);
}
}
}
}

private static String problem() {
for (Computer c : Jenkins.get().getComputers()) {
for (Executor x : c.getAllExecutors()) {
if (!x.isIdle()) {
return x.getCurrentExecutable() + " still seems to be running, which could break deletion of log files or metadata";
}
}
}
for (Queue.Item q : Queue.getInstance().getItems()) {
return q + " is still scheduled, which if it ever runs, could break deletion of log files or metadata";
}
return null;
}

}

0 comments on commit 3efc797

Please sign in to comment.