@Test
public void canExportFromFilesystem() throws IOException {
// Given
ResourceIndexer indexer = mock(ResourceIndexer.class);
ResourceUploader uploader = mock(ResourceUploader.class);
String rootURI = "http://wiki";
String text1 = "story1";
String text2 = "story2";
String sourcePath = "target/stories";
String sourceExt = ".story";
String sourceSyntax = "jbehave/3.0";
File file1 = new File(sourcePath + "/A_story" + sourceExt);
write(text1, file1);
File file2 = new File(sourcePath + "/Another_story" + sourceExt);
write(text2, file2);
Map<String, Resource> index = new HashMap<String, Resource>();
Resource aResource = new Resource(rootURI + "/A_story");
index.put("A_story", aResource);
Resource anotherResource = new Resource(rootURI + "/Another_story");
index.put("Another_story", anotherResource);
String includes = "**";
when(indexer.indexResources(rootURI, sourcePath, sourceSyntax, includes)).thenReturn(index);
// When
ResourceExporter exporter = new ExportFromFilesystem(indexer, uploader, sourcePath, sourceExt, sourceSyntax, includes);
exporter.exportResources(rootURI);