aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/FeedBlockUtil.java
blob: 5c9c63616b9343525fa560eef062e8815b2d3d4b (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.core;

import com.yahoo.vdslib.state.Node;
import com.yahoo.vdslib.state.NodeType;
import com.yahoo.vespa.clustercontroller.core.hostinfo.HostInfo;
import com.yahoo.vespa.clustercontroller.core.hostinfo.ResourceUsage;

import java.util.Arrays;
import java.util.LinkedHashSet;
import java.util.Locale;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.stream.Collectors;

import static com.yahoo.vespa.clustercontroller.core.ClusterFixture.storageNode;

public class FeedBlockUtil {

    static class NodeAndUsages {
        public final int index;
        public final Set<UsageDetails> usages;

        public NodeAndUsages(int index, Set<UsageDetails> usages) {
            this.index = index;
            this.usages = usages;
        }
    }

    static class UsageDetails {
        public final String type;
        public final String name;
        public final double usage;

        public UsageDetails(String type, String name, double usage) {
            this.type = type;
            this.name = name;
            this.usage = usage;
        }

        @Override
        public boolean equals(Object o) {
            if (this == o) return true;
            if (o == null || getClass() != o.getClass()) return false;
            UsageDetails that = (UsageDetails) o;
            return Double.compare(that.usage, usage) == 0 &&
                    Objects.equals(type, that.type) &&
                    Objects.equals(name, that.name);
        }

        @Override
        public int hashCode() {
            return Objects.hash(type, name, usage);
        }
    }

    static UsageDetails usage(String type, double usage) {
        return new UsageDetails(type, null, usage);
    }

    static UsageDetails usage(String type, String name, double usage) {
        return new UsageDetails(type, name, usage);
    }

    static Map<String, Double> mapOf(UsageDetails... usages) {
        return Arrays.stream(usages).collect(Collectors.toMap(u -> u.type, u -> u.usage));
    }

    static Set<UsageDetails> setOf(UsageDetails... usages) {
        // Preserve input order to make stringification tests deterministic
        return Arrays.stream(usages).collect(Collectors.toCollection(LinkedHashSet::new));
    }

    static NodeAndUsages forNode(int index, UsageDetails... usages) {
        return new NodeAndUsages(index, setOf(usages));
    }

    static String createResourceUsageJson(Set<UsageDetails> usages) {
        // We deal only in the finest of manual JSON string building technologies(tm).
        String usageInnerJson = usages.stream()
                .map(u -> String.format(Locale.US, "\"%s\":{\"usage\": %.3g%s}",
                        u.type, u.usage,
                        (u.name != null ? String.format(Locale.US, ",\"name\":\"%s\"", u.name) : "")))
                .collect(Collectors.joining(","));
        return String.format(Locale.US, "{\"content-node\":{\"resource-usage\":{%s}}}", usageInnerJson);
    }

    static NodeResourceExhaustion exhaustion(int index, String type) {
        return new NodeResourceExhaustion(new Node(NodeType.STORAGE, index), type, new ResourceUsage(0.8, null), 0.7, "foo");
    }

    static NodeResourceExhaustion exhaustion(int index, String type, double usage) {
        return new NodeResourceExhaustion(new Node(NodeType.STORAGE, index), type, new ResourceUsage(usage, null), 0.7, "foo");
    }

    static Set<NodeResourceExhaustion> setOf(NodeResourceExhaustion... exhaustions) {
        return Arrays.stream(exhaustions).collect(Collectors.toCollection(LinkedHashSet::new));
    }

    static ClusterFixture createFixtureWithReportedUsages(NodeAndUsages... nodeAndUsages) {
        var highestIndex = Arrays.stream(nodeAndUsages).mapToInt(u -> u.index).max();
        if (highestIndex.isEmpty()) {
            throw new IllegalArgumentException("Can't have an empty cluster");
        }
        var cf = ClusterFixture
                .forFlatCluster(highestIndex.getAsInt() + 1)
                .assignDummyRpcAddresses()
                .bringEntireClusterUp();
        for (var nu : nodeAndUsages) {
            cf.cluster().getNodeInfo(storageNode(nu.index))
                    .setHostInfo(HostInfo.createHostInfo(createResourceUsageJson(nu.usages)));
        }
        return cf;
    }



}