aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/test/java/com/yahoo/document/serialization/TensorFieldValueSerializationTestCase.java
blob: 62f9ea9f4d34de70af2af1201e6326c1014cd9ae (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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document.serialization;

import com.yahoo.document.DataType;
import com.yahoo.document.Document;
import com.yahoo.document.DocumentType;
import com.yahoo.document.datatypes.TensorFieldValue;
import com.yahoo.tensor.MapTensor;
import org.junit.Test;

import java.io.IOException;

import static com.yahoo.document.serialization.SerializationTestUtils.deserializeDocument;
import static com.yahoo.document.serialization.SerializationTestUtils.serializeDocument;
import static org.junit.Assert.assertEquals;

/**
 * @author <a href="mailto:geirst@yahoo-inc.com">Geir Storli</a>
 */
public class TensorFieldValueSerializationTestCase {

    private final static String TENSOR_FIELD = "my_tensor";
    private final static String TENSOR_FILES = "src/test/resources/tensor/";
    private final static TestDocumentFactory docFactory =
            new TestDocumentFactory(createDocType(), "id:test:my_type::foo");

    private static DocumentType createDocType() {
        DocumentType type = new DocumentType("my_type");
        type.addField(TENSOR_FIELD, DataType.TENSOR);
        return type;
    }

    @Test
    public void requireThatTensorFieldValueIsSerializedAndDeserialized() {
        assertSerialization(new TensorFieldValue());
        assertSerialization(createTensor("{}"));
        assertSerialization(createTensor("{{dimX:a,dimY:bb}:2.0,{dimX:ccc,dimY:dddd}:3.0,{dimX:e}:5.0}"));
    }

    @Test
    public void requireThatSerializationMatchesCpp() throws IOException {
        assertSerializationMatchesCpp("non_existing_tensor", new TensorFieldValue());
        assertSerializationMatchesCpp("empty_tensor", createTensor("{}"));
        assertSerializationMatchesCpp("multi_cell_tensor",
                createTensor("{{dimX:a,dimY:bb}:2.0,{dimX:ccc,dimY:dddd}:3.0,{dimX:e}:5.0}"));
    }

    private static void assertSerialization(TensorFieldValue tensor) {
        Document document = docFactory.createDocument();
        document.setFieldValue(TENSOR_FIELD, tensor);
        byte[] buf = serializeDocument(document);
        Document deserializedDocument = deserializeDocument(buf, docFactory);
        assertEquals(document, deserializedDocument);
        assertEquals(tensor, deserializedDocument.getFieldValue(TENSOR_FIELD));
    }

    private static void assertSerializationMatchesCpp(String fileName, TensorFieldValue tensor) throws IOException {
        Document document = docFactory.createDocument();
        document.setFieldValue(TENSOR_FIELD, tensor);
        SerializationTestUtils.assertSerializationMatchesCpp(TENSOR_FILES, fileName, document, docFactory);
    }

    private static TensorFieldValue createTensor(String tensor) {
        return new TensorFieldValue(MapTensor.from(tensor));
    }

}