aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/schema/derived/TwoStreamingStructsTestCase.java
blob: 5db9a00ce69c1117526081ae704055eb54632b6e (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 Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.schema.derived;

import com.yahoo.schema.ApplicationBuilder;
import com.yahoo.schema.parser.ParseException;
import org.junit.jupiter.api.Test;

import java.io.IOException;

/**
 * Test structs for streaming with another unrelated .sd present
 *
 * @author arnej27959
 */
public class TwoStreamingStructsTestCase extends AbstractExportingTestCase {

    @Test
    void testTwoStreamingStructsExporting() throws ParseException, IOException {

        String root = "src/test/derived/twostreamingstructs";
        ApplicationBuilder builder = new ApplicationBuilder();
        builder.addSchemaFile(root + "/streamingstruct.sd");
        builder.addSchemaFile(root + "/whatever.sd");
        builder.build(true);
        assertCorrectDeriving(builder, builder.getSchema("streamingstruct"), root);

        builder = new ApplicationBuilder();
        builder.addSchemaFile(root + "/streamingstruct.sd");
        builder.addSchemaFile(root + "/whatever.sd");
        builder.build(true);
        assertCorrectDeriving(builder, builder.getSchema("streamingstruct"), root);
    }

}