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

import com.yahoo.config.model.application.provider.MockFileRegistry;
import com.yahoo.config.model.deploy.TestProperties;
import com.yahoo.io.IOUtils;
import com.yahoo.schema.ApplicationBuilder;
import com.yahoo.schema.parser.ParseException;
import org.junit.jupiter.api.Test;

import java.io.File;
import java.io.IOException;

/**
 * @author bratseth
 */
public class SchemaInheritanceTestCase extends AbstractExportingTestCase {

    @Test
    void testIt() throws IOException, ParseException {
        try {
            ApplicationBuilder builder = ApplicationBuilder.createFromDirectory("src/test/derived/schemainheritance/",
                    new MockFileRegistry(),
                    new TestableDeployLogger(),
                    new TestProperties());
            derive("schemainheritance", builder, builder.getSchema("child"));
            assertCorrectConfigFiles("schemainheritance");
        }
        finally {
            IOUtils.recursiveDeleteDir(new File("src/test/derived/schemainheritance/models.generated/"));
        }
    }

}