summaryrefslogtreecommitdiffstats
path: root/document/src/test/java/com/yahoo/document/update/TensorModifyUpdateTest.java
blob: 4c8d2e69855c2c4cc5b61cde90ff3768404ed141 (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
// Copyright 2019 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document.update;

import com.yahoo.document.datatypes.TensorFieldValue;
import com.yahoo.document.update.TensorModifyUpdate.Operation;
import com.yahoo.tensor.Tensor;
import com.yahoo.tensor.TensorType;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;

import static org.junit.Assert.assertEquals;

public class TensorModifyUpdateTest {

    @Rule
    public ExpectedException exception = ExpectedException.none();

    @Test
    public void convert_to_compatible_type_with_only_mapped_dimensions() {
        assertConvertToCompatible("tensor(x{})", "tensor(x[])");
        assertConvertToCompatible("tensor(x{})", "tensor(x[10])");
        assertConvertToCompatible("tensor(x{})", "tensor(x{})");
        assertConvertToCompatible("tensor(x{},y{},z{})", "tensor(x[],y[10],z{})");
        assertConvertToCompatible("tensor(x{},y{})", "tensor(x{},y[3])");
    }

    private static void assertConvertToCompatible(String expectedType, String inputType) {
        assertEquals(expectedType, TensorModifyUpdate.convertDimensionsToMapped(TensorType.fromSpec(inputType)).toString());
    }

    @Test
    public void use_of_incompatible_tensor_type_throws() {
        exception.expect(IllegalArgumentException.class);
        exception.expectMessage("Tensor type 'tensor(x[3])' is not compatible as it has no mapped dimensions");
        new TensorModifyUpdate(TensorModifyUpdate.Operation.REPLACE,
                new TensorFieldValue(Tensor.from("tensor(x[3])", "{{x:1}:3}")));
    }

    @Test
    public void apply_modify_update_operations() {
        assertApplyTo("tensor(x{},y{})", Operation.REPLACE,
                "{{x:0,y:0}:1, {x:0,y:1}:2}", "{{x:0,y:1}:0}", "{{x:0,y:0}:1,{x:0,y:1}:0}");
        assertApplyTo("tensor(x[1],y[2])", Operation.ADD,
                "{{x:0,y:0}:1, {x:0,y:1}:2}", "{{x:0,y:1}:3}", "{{x:0,y:0}:1,{x:0,y:1}:5}");
        assertApplyTo("tensor(x{},y[2])", Operation.MULTIPLY,
                "{{x:0,y:0}:3, {x:0,y:1}:2}", "{{x:0,y:1}:3}", "{{x:0,y:0}:3,{x:0,y:1}:6}");
    }

    private void assertApplyTo(String spec, Operation op, String init, String update, String expected) {
        TensorFieldValue initialFieldValue = new TensorFieldValue(Tensor.from(spec, init));
        TensorModifyUpdate modifyUpdate = new TensorModifyUpdate(op, new TensorFieldValue(Tensor.from("tensor(x{},y{})", update)));
        TensorFieldValue updatedFieldValue = (TensorFieldValue) modifyUpdate.applyTo(initialFieldValue);
        assertEquals(Tensor.from(spec, expected), updatedFieldValue.getTensor().get());
    }

}