summaryrefslogtreecommitdiffstats
path: root/sandbox/endpoint-hazelcast/src/test/java/org/apache/tuscany/sca/endpoint/hazelcast/RegistryTestCase.java
blob: baf9873efe24557729f19385684a55318f26764f (plain)
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
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.    
 */

package org.apache.tuscany.sca.endpoint.hazelcast;

import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.List;

import junit.framework.Assert;

import org.junit.Test;

import com.hazelcast.config.Config;
import com.hazelcast.config.TcpIpConfig;
import com.hazelcast.config.XmlConfigBuilder;
import com.hazelcast.core.Hazelcast;
import com.hazelcast.core.HazelcastInstance;
import com.hazelcast.core.IMap;
import com.hazelcast.nio.Address;

public class RegistryTestCase {

    @Test
    public void foo() throws UnknownHostException {

        HazelcastInstance h1 = create(false, 9001, 9002);

        IMap<Object, Object> h1map = h1.getMap("mymap");
        h1map.put("key1", "bla1");
        Assert.assertEquals("bla1", h1map.get("key1"));

        HazelcastInstance h2 = create(false, 9002, 9001, 9003);
        IMap<Object, Object> h2map = h2.getMap("mymap");
        Assert.assertEquals("bla1", h2map.get("key1"));

        HazelcastInstance h3 = create(false, 9003, 9002);
        IMap<Object, Object> h3map = h3.getMap("mymap");
        Assert.assertEquals("bla1", h3map.get("key1"));

        HazelcastInstance h4 = create(true, 9004, 9003);
        HazelcastInstance h5 = create(true, 9005);
        IMap<Object, Object> h5map = h5.getMap("mymap");
        Assert.assertEquals("bla1", h5map.get("key1"));

//        HazelcastInstance h6 = create(false, 9006, 9005);
//        IMap<Object, Object> h6map = h6.getMap("mymap");
//        Assert.assertEquals("bla1", h6map.get("key1"));

    }

    private HazelcastInstance create(boolean multicast, int listenPort, int... connectPorts) throws UnknownHostException {
        Config config1 = new XmlConfigBuilder().build();

        config1.setPort(listenPort);
        config1.setPortAutoIncrement(false);

        // declare the interface Hazelcast should bind to
        config1.getNetworkConfig().getInterfaces().clear();
        config1.getNetworkConfig().getInterfaces().addInterface(InetAddress.getLocalHost().getHostAddress());
        config1.getNetworkConfig().getInterfaces().setEnabled(true);

        if (!multicast) {
            config1.getNetworkConfig().getJoin().getMulticastConfig().setEnabled(false);
        }

        if (connectPorts.length > 0) {
            TcpIpConfig tcpconfig = config1.getNetworkConfig().getJoin().getJoinMembers();
            tcpconfig.setEnabled(true);

            List<Address> lsMembers = tcpconfig.getAddresses();
            lsMembers.clear();
            for (int p : connectPorts) {
                lsMembers.add(new Address(InetAddress.getLocalHost(), p));
            }
        }

        HazelcastInstance h1 = Hazelcast.newHazelcastInstance(config1);
        return h1;
    }

}