From 968aea39550dd65a0d2ed122463d98ad4a95a1ba Mon Sep 17 00:00:00 2001 From: Keith Wall Date: Fri, 15 Jun 2012 13:57:53 +0000 Subject: QPID-3977: ChartingUtil now generates chart-summary.html file to facilitate chart png browsing from CI server. Applied patch from Philip Harvey git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1350625 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/qpid/test/utils/TestFileUtils.java | 63 ++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 java/common/src/test/java/org/apache/qpid/test/utils/TestFileUtils.java (limited to 'java/common') diff --git a/java/common/src/test/java/org/apache/qpid/test/utils/TestFileUtils.java b/java/common/src/test/java/org/apache/qpid/test/utils/TestFileUtils.java new file mode 100644 index 0000000000..056d11faaa --- /dev/null +++ b/java/common/src/test/java/org/apache/qpid/test/utils/TestFileUtils.java @@ -0,0 +1,63 @@ +/* + * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + * + */ +package org.apache.qpid.test.utils; + +import java.io.File; + +import org.apache.qpid.util.FileUtils; + +/** + * Utility methods intended to be used in unit tests that manipulate files + */ +public class TestFileUtils +{ + private static final String SYSTEM_TMP_DIR = System.getProperty("java.io.tmpdir"); + + /** + * Create and return a temporary directory that will be deleted on exit. + */ + public static File createTestDirectory() + { + String dirNameStem = TestFileUtils.class.getSimpleName() + "-testDir"; + return createTestDirectory(dirNameStem, true); + } + + /** + * Creates an empty directory with a name like /tmp/dirNameStem-12345678 + */ + public static File createTestDirectory(String dirNameStem, boolean deleteOnExit) + { + File testDir = new File(SYSTEM_TMP_DIR, dirNameStem + "-" + System.currentTimeMillis()); + if (testDir.exists()) + { + FileUtils.delete(testDir, true); + } + + testDir.mkdirs(); + + if (deleteOnExit) + { + testDir.deleteOnExit(); + } + + return testDir; + } +} -- cgit v1.2.1