aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/test/java/com/yahoo/document/annotation/Bug4259784TestCase.java
blob: 20f7c38cb5f5aed339ecff2b0b91753b5fab8d4f (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document.annotation;

import com.yahoo.document.ArrayDataType;
import com.yahoo.document.Document;
import com.yahoo.document.DocumentType;
import com.yahoo.document.DocumentTypeManager;
import com.yahoo.document.DocumentTypeManagerConfigurer;
import com.yahoo.document.Field;
import com.yahoo.document.StructDataType;
import com.yahoo.document.datatypes.Array;
import com.yahoo.document.datatypes.FieldValue;
import com.yahoo.document.datatypes.StringFieldValue;
import com.yahoo.document.datatypes.Struct;
import com.yahoo.io.GrowableByteBuffer;
import org.junit.Test;

import java.util.ArrayList;
import java.util.List;

public class Bug4259784TestCase {

    @Test
    public void testSerialize() {
        DocumentTypeManager manager = new DocumentTypeManager();
        var sub = DocumentTypeManagerConfigurer.configure
            (manager, "file:src/test/java/com/yahoo/document/annotation/documentmanager.bug4259784.cfg");
        sub.close();

        DocumentType type = manager.getDocumentType("blog");
        Document doc = new Document(type, "id:this:blog::is:a:test");
        doc.setFieldValue("body", new StringFieldValue("bla bla bla bla bla bla bla" +
                                                       "bla bla bla bla bla bla bla"));
        annotate(doc, manager);

        GrowableByteBuffer buf = new GrowableByteBuffer();
        doc.serialize(buf);
    }


    private void annotate(Document document, DocumentTypeManager manager) {
        DocumentType docType = manager.getDocumentType("blog");
        AnnotationTypeRegistry registry = manager.getAnnotationTypeRegistry();

        AnnotationType company = registry.getType("company");
        AnnotationType industry = registry.getType("industry");
        AnnotationType person  = registry.getType("person");
        AnnotationType location = registry.getType("location");

        SpanTree tree = new SpanTree("testannotations");
        SpanList root = (SpanList) tree.getRoot();

        SpanNode span1 = new Span(0,5);
        SpanNode span2 = new Span(5,10);
        SpanNode span3 = new Span(10,15);
        SpanNode span4 = new Span(15,20);
        SpanNode span5 = new Span(6,10);
        SpanNode span6 = new Span(8,4);
        SpanNode span7 = new Span(4, 2);

        root.add(span1);
        root.add(span2);
        root.add(span4);
        root.add(span5);
        root.add(span6);

        AlternateSpanList aspl = new AlternateSpanList();
        aspl.add(span7);
        List<SpanNode> subtree1 = new ArrayList<SpanNode>();
        subtree1.add(span3);
        aspl.addChildren(1, subtree1, 33.0d);

        root.add(aspl);

        Struct personValue = (Struct) person.getDataType().createFieldValue();
        personValue.setFieldValue("name", "Richard Bair");
        Annotation personAn = new Annotation(person, personValue);
        tree.annotate(span1, personAn);

        Struct companyValue = (Struct) company.getDataType().createFieldValue();
        companyValue.setFieldValue("name", "Sun");
        Annotation compAn = new Annotation(company, companyValue);
        tree.annotate(span2, compAn);

        Struct locationVal = new Struct(location.getDataType());
        locationVal.setFieldValue("lat", 37.774929);
        locationVal.setFieldValue("lon", -122.419415);
        Annotation locAnnotation = new Annotation(location, locationVal);
        tree.annotate(span3, locAnnotation);


        Struct dirValue1 = new Struct(person.getDataType());
        dirValue1.setFieldValue("name", "Jonathan Schwartz");
        Annotation dirAnnotation1 = new Annotation(person, dirValue1);
        tree.annotate(span5, dirAnnotation1);

        Struct dirValue2 = new Struct(person.getDataType());
        dirValue2.setFieldValue("name", "Scott Mcnealy");
        Annotation dirAnnotation2 = new Annotation(person, dirValue2);
        tree.annotate(span6, dirAnnotation2);


        Struct indValue = new Struct(industry.getDataType());
        indValue.setFieldValue("vertical", "Manufacturing");
        Annotation indAn = new Annotation(industry, indValue);
        tree.annotate(span4, indAn);


        Field compLocField = ((StructDataType) company.getDataType()).getField("place");
        AnnotationReferenceDataType annType = (AnnotationReferenceDataType) compLocField.getDataType();
        FieldValue compLocFieldVal = new AnnotationReference(annType, locAnnotation);
        companyValue.setFieldValue(compLocField, compLocFieldVal);
        companyValue.setFieldValue("vertical", "software");



        Field dirField = ((StructDataType) company.getDataType()).getField("directors");
        Array<FieldValue> dirFieldVal = new Array<FieldValue>(dirField.getDataType());
        AnnotationReferenceDataType annRefType = (AnnotationReferenceDataType) ((ArrayDataType) dirField.getDataType()).getNestedType();
        dirFieldVal.add(new AnnotationReference(annRefType, dirAnnotation1));
        dirFieldVal.add(new AnnotationReference(annRefType, dirAnnotation2));
        companyValue.setFieldValue(dirField, dirFieldVal);

        tree.clearAnnotations(span3);

        StringFieldValue body = (StringFieldValue) document.getFieldValue(document.getDataType().getField("body"));
        body.setSpanTree(tree);
        document.setFieldValue(document.getDataType().getField("body"), body);
    }

}