aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/vespa/model/search/test/SchemaInfoTester.java
blob: 388c064daf4f4bcbd223d69a5f1b7a07585fc25e (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.model.search.test;

import com.yahoo.config.model.deploy.TestProperties;
import com.yahoo.document.DataType;
import com.yahoo.schema.RankProfileRegistry;
import com.yahoo.schema.Schema;
import com.yahoo.schema.derived.SchemaInfo;
import com.yahoo.schema.derived.Summaries;
import com.yahoo.schema.document.SDDocumentType;
import com.yahoo.schema.document.SDField;
import com.yahoo.search.config.SchemaInfoConfig;
import com.yahoo.vespa.documentmodel.DocumentSummary;
import com.yahoo.vespa.model.test.utils.DeployLoggerStub;

/**
 * @author bratseth
 */
public class SchemaInfoTester {

    public Schema createSchema(String name) {
        var schema = new Schema(name, null);
        var document = new SDDocumentType(name);
        schema.addDocument(document);
        schema.addSummary(new DocumentSummary("default", schema));
        return schema;
    }

    public String schemaInfoConfig(Schema schema) {
        var schemaInfo = new SchemaInfo(schema, new RankProfileRegistry(), new Summaries(schema, new DeployLoggerStub(), new TestProperties()));
        var schemaInfoConfigBuilder = new SchemaInfoConfig.Builder();
        schemaInfo.getConfig(schemaInfoConfigBuilder);
        var schemaInfoConfig = schemaInfoConfigBuilder.build();
        return schemaInfoConfig.toString();
    }

}