从src / test / resources进行单元测试中的NIO加载文件

时间:2013-09-01 10:33:35

标签: java spring maven junit nio

问题

我想用Java7s NIO在java中编写数据导入。用户以String形式输入文件的路径,程序尝试使用Paths打开它。当它想要读取它的DosFileAttributes时会发生java.nio.file.NoSuchFileException:file.txt。

我发现了什么

我发现的唯一答案是使用资源Stream - 但这种接缝不可行,因为要加载的文件是由用户提供的,不应该是jar的一部分。还是我错过了理解? http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html#getResourceAsStream%28java.lang.String%29

我有什么

设置:

  • Maven 3
  • Java7
  • TestNG的
  • 弹簧

项目结构:

  • src / main / java - 类
  • src / test / java - testcases
  • src / test / resources - 也许是file.txt?实际上它就在那里

加载文件的来源:

import java.io.BufferedReader;
import java.io.IOException;
import java.nio.charset.Charset;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.attribute.DosFileAttributes;
import java.util.ArrayList;
import java.util.List;

import org.springframework.stereotype.Component;

@Component( "fileLoader" )
public class BufferdFileLoader
        implements FileLoader {

    @Override
    public List<String> loadFile( String path )
            throws IOException {

        if ( path == null || path.length() == 0 ) {
            throw new IllegalArgumentException( "path should not be null" );
        }

        Path file = Paths.get( path );

        // here the Exception is thrown
        DosFileAttributes attrs = Files.readAttributes( file, DosFileAttributes.class );

        if ( !attrs.isRegularFile() ) {
            throw new IOException( "could not read file, invalid path" );
        }

        List<String> result = new ArrayList<String>();

        try (BufferedReader reader = Files.newBufferedReader( file, Charset.forName( "UTF-8" ) )) {
            String line = null;
            while ( ( line = reader.readLine() ) != null ) {
                result.add( line );
            }
        }

        return result;
    }
}

测试案例很简单:

import java.io.IOException;
import java.util.List;

import javax.inject.Inject;

import lombok.Setter;

import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.testng.AbstractTestNGSpringContextTests;
import org.testng.Assert;
import org.testng.annotations.Test;

/**
 * Class under test {@link BufferdFileLoader}
 * 
 */
@ContextConfiguration
public class BufferdFileLoaderTest
        extends AbstractTestNGSpringContextTests {

    /**
     * Class under test
     */
    @Inject
    @Setter
    private BufferdFileLoader bufferdFileLoader;


    /**
     * Method under test {@link BufferdFileLoader#loadFile(String)}
     * 
     * @throws IOException
     */
    @Test( groups = { "integration" }, enabled = true )
    public void testImportFeedsFromXMLFileWitEmptyXml()
            throws IOException {

        String filename = "empty-example-takeout.xml";

        List<String> list = this.bufferdFileLoader.loadFile( filename );

        Assert.assertEquals( list.size(), 0 );

    }

}

所以我的问题是

如何使用NIO加载文件,以便可以使用maven测试,也可以在生产环境中使用?

2 个答案:

答案 0 :(得分:13)

嗯,这是在测试的类路径中为测试资源获取正确的Path的问题。

编辑:这更简洁:

Paths.get(getClass().getResource("/"+filename).toURI()).toString()

答案 1 :(得分:0)

如果您创建名为testing的文件夹,则可以使用以下内容:

Paths.get(getClass().getResource("/testing").toURI()).resolve(filename)

如果文件不存在,另一种方法将抛出空指针异常