Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-15156] Add regression test
  • Loading branch information
tsartarzan committed Feb 3, 2013
1 parent 41fc8a1 commit dbd6b53
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions test/src/test/java/hudson/model/AbstractProjectTest.java
Expand Up @@ -47,6 +47,9 @@
import java.io.File;
import java.util.concurrent.Future;
import org.apache.commons.io.FileUtils;
import java.lang.ref.Reference;
import java.lang.ref.WeakReference;
import java.util.ArrayList;

/**
* @author Kohsuke Kawaguchi
Expand Down Expand Up @@ -280,4 +283,47 @@ public void testSymlinkForPostBuildFailure() throws Exception {
assertSymlinkForBuild(lastSuccessful, 1);
assertSymlinkForBuild(lastStable, 1);
}

// Force garbage collection of ref's referent. Taken from NetBeans code.
public static void forceGc(final Reference<?> ref) {
ArrayList<byte[]> alloc = new ArrayList<byte[]>();
int size = 100000;
System.out.print("forcing garbage collection...");
for (int i = 0; i < 50; i++) {
if (ref.get() == null) {
System.out.println("succeeded");
return;
}
try {
System.gc();
System.runFinalization();
} catch (OutOfMemoryError error) {
// OK
}
try {
alloc.add(new byte[size]);
size = (int)(((double)size) * 1.3);
} catch (OutOfMemoryError error) {
size = size / 2;
}
try {
if (i % 3 == 0) {
Thread.sleep(321);
}
} catch (InterruptedException t) {
// ignore
}
}
System.out.println("failed");
}

@Bug(15156)
public void testGetBuildAfterGc() throws Exception {
FreeStyleProject job = createFreeStyleProject();
job.scheduleBuild2(0, new Cause.UserCause()).get();
// If this fails to garbage-collect, the test run will not have any value, but it will
// at least not fail.
forceGc(new WeakReference(job.getLastBuild()));
assertTrue(job.getLastBuild() != null);
}
}

0 comments on commit dbd6b53

Please sign in to comment.