当前位置: 首页>>代码示例>>Java>>正文


Java TestableZooKeeper.testableConnloss方法代码示例

本文整理汇总了Java中org.apache.zookeeper.TestableZooKeeper.testableConnloss方法的典型用法代码示例。如果您正苦于以下问题:Java TestableZooKeeper.testableConnloss方法的具体用法?Java TestableZooKeeper.testableConnloss怎么用?Java TestableZooKeeper.testableConnloss使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.zookeeper.TestableZooKeeper的用法示例。


在下文中一共展示了TestableZooKeeper.testableConnloss方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testFollowerWatcherResync

import org.apache.zookeeper.TestableZooKeeper; //导入方法依赖的package包/类
/**
 * Verify that the server is sending the proper zxid, and as a result
 * the watch doesn't fire. See ZOOKEEPER-1412.
 */
@Test
public void testFollowerWatcherResync() throws Exception {
    QuorumUtil qu = new QuorumUtil(1);
    qu.startAll();

    int index = 1;
    while(qu.getPeer(index).peer.follower == null) {
        index++;
    }
    LOG.info("Connecting to follower:" + index);

    TestableZooKeeper zk1 = createTestableClient(
            "localhost:" + qu.getPeer(index).peer.getClientPort());
    zk1.create("/foo", "foo".getBytes(), Ids.OPEN_ACL_UNSAFE,
                CreateMode.PERSISTENT);

    MyWatcher watcher = new MyWatcher();
    TestableZooKeeper zk2 = createTestableClient(watcher,
            "localhost:" + qu.getPeer(index).peer.getClientPort());

    zk2.exists("/foo", true);

    watcher.reset();
    zk2.testableConnloss();
    if (!watcher.clientConnected.await(CONNECTION_TIMEOUT, TimeUnit.MILLISECONDS))
    {
        fail("Unable to connect to server");
    }
    assertArrayEquals("foo".getBytes(), zk2.getData("/foo", false, null));

    assertNull(watcher.events.poll(5, TimeUnit.SECONDS));

    zk1.close();
    zk2.close();
}
 
开发者ID:maoling,项目名称:fuck_zookeeper,代码行数:40,代码来源:FollowerResyncConcurrencyTest.java

示例2: testFollowerWatcherResync

import org.apache.zookeeper.TestableZooKeeper; //导入方法依赖的package包/类
/**
 * Verify that the server is sending the proper zxid, and as a result
 * the watch doesn't fire. See ZOOKEEPER-1412.
 */
@Test
public void testFollowerWatcherResync() throws Exception {
    QuorumUtil qu = new QuorumUtil(1);
    qu.startAll();

    int index = 1;
    while(qu.getPeer(index).peer.follower == null) {
        index++;
    }
    LOG.info("Connecting to follower: {}", index);

    TestableZooKeeper zk1 = createTestableClient(
            "localhost:" + qu.getPeer(index).peer.getClientPort());
    zk1.create("/foo", "foo".getBytes(), Ids.OPEN_ACL_UNSAFE,
                CreateMode.PERSISTENT);

    MyWatcher watcher = new MyWatcher();
    TestableZooKeeper zk2 = createTestableClient(watcher,
            "localhost:" + qu.getPeer(index).peer.getClientPort());

    zk2.exists("/foo", true);

    watcher.reset();
    zk2.testableConnloss();
    if (!watcher.clientConnected.await(CONNECTION_TIMEOUT, TimeUnit.MILLISECONDS))
    {
        fail("Unable to connect to server");
    }
    assertArrayEquals("foo".getBytes(), zk2.getData("/foo", false, null));

    assertNull(watcher.events.poll(5, TimeUnit.SECONDS));

    zk1.close();
    zk2.close();
    qu.shutdownAll();
}
 
开发者ID:didichuxing2,项目名称:https-github.com-apache-zookeeper,代码行数:41,代码来源:FollowerResyncConcurrencyTest.java

示例3: testFollowerWatcherResync

import org.apache.zookeeper.TestableZooKeeper; //导入方法依赖的package包/类
/**
 * Verify that the server is sending the proper zxid, and as a result
 * the watch doesn't fire. See ZOOKEEPER-1412.
 */
@Test
public void testFollowerWatcherResync() throws Exception {
    QuorumUtil qu = new QuorumUtil(1);
    qu.startAll();

    int index = 1;
    while(qu.getPeer(index).peer.follower == null) {
        index++;
    }
    LOG.info("Connecting to follower:" + index);

    TestableZooKeeper zk1 = createTestableClient(
            "localhost:" + qu.getPeer(index).peer.getClientPort());
    zk1.create("/foo", "foo".getBytes(), Ids.OPEN_ACL_UNSAFE,
                CreateMode.PERSISTENT);

    MyWatcher watcher = new MyWatcher();
    TestableZooKeeper zk2 = createTestableClient(watcher,
            "localhost:" + qu.getPeer(index).peer.getClientPort());

    zk2.exists("/foo", true);

    watcher.reset();
    zk2.testableConnloss();
    if (!watcher.clientConnected.await(CONNECTION_TIMEOUT, TimeUnit.MILLISECONDS))
    {
        fail("Unable to connect to server");
    }
    assertArrayEquals("foo".getBytes(), zk2.getData("/foo", false, null));

    assertNull(watcher.events.poll(5, TimeUnit.SECONDS));

    zk1.close();
    zk2.close();
    qu.shutdownAll();
}
 
开发者ID:sereca,项目名称:SecureKeeper,代码行数:41,代码来源:FollowerResyncConcurrencyTest.java


注:本文中的org.apache.zookeeper.TestableZooKeeper.testableConnloss方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。