web-dev-qa-db-ja.com

テストファイルをJUnitに取り込む簡単な方法

誰かがjunitテストクラスでString/InputStream/File/etc型オブジェクトとしてファイルへの参照を取得する簡単な方法を提案できますか?明らかに、ファイル(この場合はxml)を巨大な文字列として貼り付けるか、ファイルとして読み込むことができますが、このようなJunit固有のショートカットはありますか?

public class MyTestClass{

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

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

}
75
benstpierre

あなたが試すことができます @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);
    }
}

FileResourceを拡張するExternalResourceクラスを作成するだけです。

完全な例

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();
        }
    }

}
81
Ha.

実際にFileオブジェクトを取得する必要がある場合は、次を実行できます。

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

このブログ投稿 で説明されているように、クロスプラットフォームで動作する利点があります。

76
slashnick

手でファイルを読みたくないと言ったのは知っていますが、これは非常に簡単です

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はテストの実行時にクラスパスにそれを含めます。この種のことを頻繁に行う必要がある場合は、ファイルを開くコードをスーパークラスに配置し、テストにそれを継承させることができます。

14
Joey Gibson

テストリソースファイルを、わずか数行のコードで追加の依存関係なしに文字列としてロードする場合、これはトリックです。

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」は入力の開始と一致し、1つしかありません。したがって、これはファイルの内容全体を解析し、それを文字列として返します。とりわけ、サードパーティのライブラリ(IOUTilsなど)は必要ありません。

1
gMale

あなたはやってみることができます:

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