aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/test/java/com/yahoo/vespa/hosted/node/admin/task/util/network/IPAddressesMock.java
blob: 299d3e4b4419c6b68747a013eabb8414425137b4 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.task.util.network;

import com.google.common.net.InetAddresses;

import java.net.InetAddress;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * @author smorgrav
 */
public class IPAddressesMock implements IPAddresses {

    private final Map<String, List<InetAddress>> otherAddresses = new HashMap<>();

    public IPAddressesMock addAddress(String hostname, String ip) {
        List<InetAddress> addresses = otherAddresses.getOrDefault(hostname, new ArrayList<>());
        addresses.add(InetAddresses.forString(ip));
        otherAddresses.put(hostname, addresses);
        return this;
    }

    @Override
    public InetAddress[] getAddresses(String hostname) {
        List<InetAddress> addresses = otherAddresses.get(hostname);
        if (addresses == null) return new InetAddress[0];
        return addresses.toArray(new InetAddress[addresses.size()]);
    }
}