将测试文件导入JUnit的简单方法

82

有人能推荐一种简单的方法,在junit测试类中以String/InputStream/File等类型的对象获取对文件的引用吗?显然我可以将文件(在这种情况下是xml)作为一个巨大的字符串粘贴进去或者将其读取为文件,但是否有一种针对Junit的特殊快捷方式呢?

public class MyTestClass{

@Resource(path="something.xml")
File myTestFile;

@Test
public void toSomeTest(){
...
}

}
5个回答

88
你可以尝试使用 @Rule 注释。以下是官方文档中的示例:
public static class UsesExternalResource {
    Server myServer = new Server();

    @Rule public ExternalResource resource = new ExternalResource() {
        @Override
        protected void before() throws Throwable {
            myServer.connect();
        };

        @Override
        protected void after() {
            myServer.disconnect();
        };
    };

    @Test public void testFoo() {
        new Client().run(myServer);
    }
}

你只需要创建一个继承自ExternalResourceFileResource类即可。

完整示例

import static org.junit.Assert.*;

import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExternalResource;

public class TestSomething
{
    @Rule
    public ResourceFile res = new ResourceFile("/res.txt");

    @Test
    public void test() throws Exception
    {
        assertTrue(res.getContent().length() > 0);
        assertTrue(res.getFile().exists());
    }
}

import java.io.BufferedReader;
import java.io.File;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.nio.charset.Charset;

import org.junit.rules.ExternalResource;

public class ResourceFile extends ExternalResource
{
    String res;
    File file = null;
    InputStream stream;

    public ResourceFile(String res)
    {
        this.res = res;
    }

    public File getFile() throws IOException
    {
        if (file == null)
        {
            createFile();
        }
        return file;
    }

    public InputStream getInputStream()
    {
        return stream;
    }

    public InputStream createInputStream()
    {
        return getClass().getResourceAsStream(res);
    }

    public String getContent() throws IOException
    {
        return getContent("utf-8");
    }

    public String getContent(String charSet) throws IOException
    {
        InputStreamReader reader = new InputStreamReader(createInputStream(),
            Charset.forName(charSet));
        char[] tmp = new char[4096];
        StringBuilder b = new StringBuilder();
        try
        {
            while (true)
            {
                int len = reader.read(tmp);
                if (len < 0)
                {
                    break;
                }
                b.append(tmp, 0, len);
            }
            reader.close();
        }
        finally
        {
            reader.close();
        }
        return b.toString();
    }

    @Override
    protected void before() throws Throwable
    {
        super.before();
        stream = getClass().getResourceAsStream(res);
    }

    @Override
    protected void after()
    {
        try
        {
            stream.close();
        }
        catch (IOException e)
        {
            // ignore
        }
        if (file != null)
        {
            file.delete();
        }
        super.after();
    }

    private void createFile() throws IOException
    {
        file = new File(".",res);
        InputStream stream = getClass().getResourceAsStream(res);
        try
        {
            file.createNewFile();
            FileOutputStream ostream = null;
            try
            {
                ostream = new FileOutputStream(file);
                byte[] buffer = new byte[4096];
                while (true)
                {
                    int len = stream.read(buffer);
                    if (len < 0)
                    {
                        break;
                    }
                    ostream.write(buffer, 0, len);
                }
            }
            finally
            {
                if (ostream != null)
                {
                    ostream.close();
                }
            }
        }
        finally
        {
            stream.close();
        }
    }

}


9
哇,看起来这是我迄今为止最好的答案。我真的很不擅长预测未来。 - Ha.

78

如果您需要实际获取一个File对象,可以执行以下操作:

URL url = this.getClass().getResource("/test.wsdl");
File testWsdl = new File(url.getFile());

正如这篇博客文章所述,它具有跨平台工作的优点。


14

我知道你说你不想手动读取文件,但这很容易

public class FooTest
{
    private BufferedReader in = null;

    @Before
    public void setup()
        throws IOException
    {
        in = new BufferedReader(
            new InputStreamReader(getClass().getResourceAsStream("/data.txt")));
    }

    @After
    public void teardown()
        throws IOException
    {
        if (in != null)
        {
            in.close();
        }

        in = null;
    }

    @Test
    public void testFoo()
        throws IOException
    {
        String line = in.readLine();

        assertThat(line, notNullValue());
    }
}

你只需要确保相关的文件在类路径中。如果你使用Maven,只需将文件放在src/test/resources目录下,Maven会在运行测试时将其包含在类路径中。如果你需要经常执行此操作,可以将打开该文件的代码放在一个超类中,并让测试继承该超类。


谢谢您实际说出文件应该放在哪里,而不仅仅是如何打开它! - Vince

3

如果你想用几行代码而不需要额外的依赖项,将测试资源文件加载为字符串,可以使用以下代码:

public String loadResourceAsString(String fileName) throws IOException {
    Scanner scanner = new Scanner(getClass().getClassLoader().getResourceAsStream(fileName));
    String contents = scanner.useDelimiter("\\A").next();
    scanner.close();
    return contents;
}

"

\\A" 匹配输入的开头,且只有一个。因此,它会解析整个文件内容并将其作为字符串返回。最重要的是,它不需要任何第三方库(如IOUTils)。

"

1
你可以尝试做以下操作:

String myResource = IOUtils.toString(this.getClass().getResourceAsStream("yourfile.xml")).replace("\n","");

1
请注意,此解决方案需要您引入Apache Commons IO库。这是一个很好的库,可以提供很多便利。 - zudduz

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接