tmpdirtestcase.java
来自「一个搜索引擎,希望对大家有用」· Java 代码 · 共 129 行
JAVA
129 行
/* TmpDirTestCase * * $Id: TmpDirTestCase.java,v 1.11 2005/03/16 03:24:17 stack-sf Exp $ * * Created on Dec 31, 2003. * * Copyright (C) 2003 Internet Archive. * * This file is part of the Heritrix web crawler (crawler.archive.org). * * Heritrix is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * any later version. * * Heritrix is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser Public License for more details. * * You should have received a copy of the GNU Lesser Public License * along with Heritrix; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */package org.archive.util;import java.io.File;import java.io.IOException;import junit.framework.TestCase;/** * Base class for TestCases that want access to a tmp dir for the writing * of files. * * @author stack */public class TmpDirTestCase extends TestCase{ /** * Name of the system property that holds pointer to tmp directory into * which we can safely write files. */ private static final String TEST_TMP_SYSTEM_PROPERTY_NAME = "testtmpdir"; /** * Default test tmp. */ private static final String DEFAULT_TEST_TMP_DIR = File.separator + "tmp" + File.separator + "heritrix-junit-tests"; /** * Directory to write temporary files to. */ private File tmpDir = null; public TmpDirTestCase() { super(); } public TmpDirTestCase(String testName) { super(testName); } /* * @see TestCase#setUp() */ protected void setUp() throws Exception { super.setUp(); String tmpDirStr = System.getProperty(TEST_TMP_SYSTEM_PROPERTY_NAME); tmpDirStr = (tmpDirStr == null)? DEFAULT_TEST_TMP_DIR: tmpDirStr; this.tmpDir = new File(tmpDirStr); if (!this.tmpDir.exists()) { this.tmpDir.mkdirs(); } if (!this.tmpDir.canWrite()) { throw new IOException(this.tmpDir.getAbsolutePath() + " is unwriteable."); } } /* * @see TestCase#tearDown() */ protected void tearDown() throws Exception { super.tearDown(); } /** * @return Returns the tmpDir. */ public File getTmpDir() { return this.tmpDir; } /** * Delete any files left over from previous run. * * @param basename Base name of files we're to clean up. */ public void cleanUpOldFiles(String basename) { cleanUpOldFiles(getTmpDir(), basename); } /** * Delete any files left over from previous run. * * @param prefix Base name of files we're to clean up. * @param basedir Directory to start cleaning in. */ public void cleanUpOldFiles(File basedir, String prefix) { File [] files = FileUtils.getFilesWithPrefix(basedir, prefix); if (files != null) { for (int i = 0; i < files.length; i++) { FileUtils.deleteDir(files[i]); } } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?