⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dbtestutil.java

📁 berkeley db 4.6.21的源码。berkeley db是一个简单的数据库管理系统
💻 JAVA
字号:
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2002,2007 Oracle.  All rights reserved. * * $Id: DbTestUtil.java,v 12.6 2007/05/04 00:28:29 mark Exp $ */package com.sleepycat.collections.test;import java.io.BufferedInputStream;import java.io.BufferedOutputStream;import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import junit.framework.TestCase;import com.sleepycat.db.DatabaseConfig;/** * @author Mark Hayes */public class DbTestUtil {    public static final DatabaseConfig DBCONFIG_CREATE = new DatabaseConfig();    static {        DBCONFIG_CREATE.setAllowCreate(true);    }    private static final File TEST_DIR;    static {        String dir = System.getProperty("testdestdir");        if (dir == null || dir.length() == 0) {            dir = ".";        }        TEST_DIR = new File(dir, "tmp");    }    public static void printTestName(String name) {        // don't want verbose printing for now        // System.out.println(name);    }    public static File getExistingDir(String name)        throws IOException {        File dir = new File(TEST_DIR, name);        if (!dir.exists() || !dir.isDirectory()) {            throw new IllegalStateException(                    "Not an existing directory: " + dir);        }        return dir;    }    public static File getNewDir()        throws IOException {        return getNewDir("test-dir");    }    public static File getNewDir(String name)        throws IOException {        File dir = new File(TEST_DIR, name);        if (dir.isDirectory()) {            String[] files = dir.list();            if (files != null) {                for (int i = 0; i < files.length; i += 1) {                    new File(dir, files[i]).delete();                }            }        } else {            dir.delete();            dir.mkdirs();        }        return dir;    }    public static File getNewFile()        throws IOException {        return getNewFile("test-file");    }    public static File getNewFile(String name)        throws IOException {        return getNewFile(TEST_DIR, name);    }    public static File getNewFile(File dir, String name)        throws IOException {        File file = new File(dir, name);        file.delete();        return file;    }    public static boolean copyResource(Class cls, String fileName, File toDir)        throws IOException {        InputStream in = cls.getResourceAsStream("testdata/" + fileName);        if (in == null) {            return false;        }        in = new BufferedInputStream(in);        File file = new File(toDir, fileName);        OutputStream out = new FileOutputStream(file);        out = new BufferedOutputStream(out);        int c;        while ((c = in.read()) >= 0) out.write(c);        in.close();        out.close();        return true;    }    public static String qualifiedTestName(TestCase test) {        String s = test.getClass().getName();        int i = s.lastIndexOf('.');        if (i >= 0) {            s = s.substring(i + 1);        }        return s + '.' + test.getName();    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -