aboutsummaryrefslogtreecommitdiffstats
path: root/standalone-container/src/test/java/com/yahoo/container/standalone/StandaloneContainer.java
blob: 7253dc4be9dd04e6526de055f8d44bcd39518b6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.standalone;

import com.yahoo.collections.Pair;
import com.yahoo.config.model.ConfigModelRepo;
import com.yahoo.io.IOUtils;
import com.yahoo.vespa.model.VespaModel;
import com.yahoo.vespa.model.container.xml.ContainerModelBuilder.Networking;

import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.Arrays;
import java.util.List;

/**
 * Creates a local application from vespa-services fragments.
 *
 * @author Tony Vaagenes
 * @author ollivir
 */
public class StandaloneContainer {

    interface ThrowingFunction<T, U> {
        U apply(T input) throws Exception;
    }

    static <T> T withContainerModel(String servicesXml, ThrowingFunction<VespaModel, T> f) throws Exception {
        return withTempDirectory(applicationPath -> {
            writeServicesXml(applicationPath, servicesXml);

            LocalFileDb distributedFiles = new LocalFileDb(applicationPath);
            VespaModel root;
            Pair<VespaModel, com.yahoo.vespa.model.container.Container> rc = StandaloneContainerApplication.createContainerModel(
                    applicationPath, distributedFiles, applicationPath.resolve("preprocesedApp").toFile(), Networking.enable,
                    new ConfigModelRepo());
            root = rc.getFirst();
            return f.apply(root);
        });
    }

    private static <T> T withTempDirectory(ThrowingFunction<Path, T> f) throws Exception {
        Path directory = Files.createTempDirectory("application");
        try {
            return f.apply(directory);
        } finally {
            IOUtils.recursiveDeleteDir(directory.toFile());
        }
    }

    private static void writeServicesXml(Path applicationPath, String servicesXml) throws IOException {
        Path path = applicationPath.resolve("services.xml");
        List<String> output = Arrays.asList("<?xml version=\"1.0\" encoding=\"utf-8\"?>", servicesXml);
        Files.write(path, output, StandardCharsets.UTF_8);
    }
}