StructTest.java 2.75 KB
Newer Older
Harish Butani committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

Harish Butani committed
19 20
package org.apache.metadata;

21
import org.apache.metadata.storage.StructInstance;
Harish Butani committed
22
import org.apache.metadata.types.*;
23
import org.junit.Assert;
Harish Butani committed
24 25 26 27 28 29 30 31 32 33 34
import org.junit.Before;
import org.junit.Test;

public class StructTest extends BaseTest {

    StructType structType;
    StructType recursiveStructType;

    @Before
    public void setup() throws MetadataException {
        super.setup();
Harish Butani committed
35 36
        structType = (StructType) ms.getTypeSystem().getDataType(StructType.class, STRUCT_TYPE_1);
        recursiveStructType = (StructType) ms.getTypeSystem().getDataType(StructType.class, STRUCT_TYPE_2);
Harish Butani committed
37 38 39 40 41
    }

    @Test
    public void test1() throws MetadataException {
        Struct s = createStruct(ms);
42
        ITypedStruct ts = structType.convert(s, Multiplicity.REQUIRED);
43
        Assert.assertEquals(ts.toString(), "{\n" +
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
                "\ta : \t1\n" +
                "\tb : \ttrue\n" +
                "\tc : \t1\n" +
                "\td : \t2\n" +
                "\te : \t1\n" +
                "\tf : \t1\n" +
                "\tg : \t1\n" +
                "\th : \t1.0\n" +
                "\ti : \t1.0\n" +
                "\tj : \t1\n" +
                "\tk : \t1\n" +
                "\tl : \tWed Dec 10 18:35:58 PST 2014\n" +
                "\tm : \t[1, 1]\n" +
                "\tn : \t[1.1, 1.1]\n" +
                "\to : \t{b=2.0, a=1.0}\n" +
                "}");
Harish Butani committed
60 61 62 63 64 65 66 67 68
    }

    @Test
    public void testRecursive() throws MetadataException {
        Struct s1 = new Struct(recursiveStructType.getName());
        s1.set("a", 1);
        Struct s2 = new Struct(recursiveStructType.getName());
        s2.set("a", 1);
        s2.set("s", s1);
69
        ITypedStruct ts = recursiveStructType.convert(s2, Multiplicity.REQUIRED);
70
        Assert.assertEquals(ts.toString(), "{\n" +
71 72 73 74
                "\ta : \t1\n" +
                "\ts : \t{\n" +
                "\t\ta : \t\t1\n" +
                "\t\ts : <null>\n" +
75
                "\n" +
76 77
                "\t}\n" +
                "}");
Harish Butani committed
78 79 80
    }

}