
com.yahoo.application.container.DocumentAccesses Maven / Gradle / Ivy
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.application.container;
import com.yahoo.document.config.DocumentmanagerConfig;
import com.yahoo.documentapi.DocumentAccess;
import com.yahoo.documentapi.DocumentAccessParams;
import com.yahoo.documentapi.local.LocalDocumentAccess;
import com.yahoo.schema.derived.Deriver;
import java.io.File;
import java.util.stream.Stream;
/**
* Utility for working with a {@link LocalDocumentAccess} for unit testing components which require a {@link DocumentAccess}.
*
* @author jonmv
*/
public class DocumentAccesses {
private DocumentAccesses() { }
/**
* Reads the {@code .sd} files in the given directory, and returns a {@link LocalDocumentAccess} with these document types.
*
* Example usage:
*
* LocalDocumentAccess access = DocumentAccesses.ofSchemas("src/main/application/schemas");
*
*/
public static LocalDocumentAccess createFromSchemas(String schemaDirectory) {
File[] schemasFiles = new File(schemaDirectory).listFiles(name -> name.toString().endsWith(".sd"));
if (schemasFiles == null)
throw new IllegalArgumentException(schemaDirectory + " is not a directory");
if (schemasFiles.length == 0)
throw new IllegalArgumentException("No schema files found under " + schemaDirectory);
DocumentmanagerConfig config = Deriver.getDocumentManagerConfig(Stream.of(schemasFiles)
.map(File::toString)
.toList()).build();
return new LocalDocumentAccess(new DocumentAccessParams().setDocumentmanagerConfig(config));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy