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

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

import java.io.IOException;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;

/**
 * Tests settings outside the document
 *
 * @author  bratseth
 */
public class OutsideTestCase extends AbstractSchemaTestCase {

    @Test
    void testOutsideIndex() throws IOException, ParseException {
        Schema schema = ApplicationBuilder.buildFromFile("src/test/examples/outsidedoc.sd");

        Index defaultIndex = schema.getIndex("default");
        assertTrue(defaultIndex.isPrefix());
        assertEquals("default.default", defaultIndex.aliasIterator().next());
    }

    @Test
    void testOutsideSummary() throws IOException, ParseException {
        ApplicationBuilder.buildFromFile("src/test/examples/outsidesummary.sd");
    }

}