aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/schema/document/HnswIndexParamsTestCase.java
blob: 51affaa0cc4016ef1ce962c5d4905269b2243e13 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

package com.yahoo.schema.document;

import java.util.Optional;
import org.junit.jupiter.api.Test;

import static org.hamcrest.core.Is.is;
import static org.hamcrest.MatcherAssert.assertThat;

public class HnswIndexParamsTestCase {

    @Test
    void override_from() throws Exception {
        var empty = new HnswIndexParams();
        var builder = new HnswIndexParams.Builder();
        builder.setMaxLinksPerNode(7);
        builder.setMultiThreadedIndexing(false);
        var one = builder.build();
        builder.setNeighborsToExploreAtInsert(42);
        var three = builder.build();
        builder.setMaxLinksPerNode(17);
        builder.setNeighborsToExploreAtInsert(500);
        builder.setMultiThreadedIndexing(true);
        var four = builder.build();

        assertThat(empty.maxLinksPerNode(), is(16));
        assertThat(empty.neighborsToExploreAtInsert(), is(200));
        assertThat(empty.multiThreadedIndexing(), is(true));

        assertThat(one.maxLinksPerNode(), is(7));
        assertThat(one.multiThreadedIndexing(), is(false));
        assertThat(three.neighborsToExploreAtInsert(), is(42));

        assertThat(four.maxLinksPerNode(), is(17));
        assertThat(four.neighborsToExploreAtInsert(), is(500));
        assertThat(four.multiThreadedIndexing(), is(true));

        var five = four.overrideFrom(Optional.of(empty));
        assertThat(five.maxLinksPerNode(), is(17));
        assertThat(five.neighborsToExploreAtInsert(), is(500));
        assertThat(five.multiThreadedIndexing(), is(true));

        var six = four.overrideFrom(Optional.of(one));
        assertThat(six.maxLinksPerNode(), is(7));
        assertThat(six.neighborsToExploreAtInsert(), is(500));
        // This is explicitly set to false in 'one'
        assertThat(six.multiThreadedIndexing(), is(false));
    }

}