aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/searchdefinition/UrlFieldValidationTestCase.java
blob: 98409a014325308d9e4d25ff24b8881160971ed9 (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 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchdefinition;

import com.yahoo.searchdefinition.parser.ParseException;
import com.yahoo.yolean.Exceptions;
import org.junit.Test;

import static junit.framework.TestCase.fail;
import static org.junit.Assert.assertEquals;

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

    @Test
    public void requireThatInheritedRiseFieldsStillCanBeInConflictButDontThrowException() throws ParseException {
        SearchBuilder builder = new SearchBuilder();
        builder.importString("search test {" +
                "    document test { " +
                "        field a type uri { indexing: attribute | summary }" +
                "    }" +
                "}");
        try {
            builder.build();
            fail("Should have caused an exception");
            // success
        } catch (IllegalArgumentException e) {
            assertEquals("Error in field 'a' in search definition 'test': uri type fields cannot be attributes",
                         Exceptions.toMessageString(e));
        }
    }

}