⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 splitstreamregrtest.java

📁 pastry的java实现的2.0b版
💻 JAVA
字号:
/*************************************************************************"FreePastry" Peer-to-Peer Application Development Substrate Copyright 2002, Rice University. All rights reserved.Redistribution and use in source and binary forms, with or withoutmodification, are permitted provided that the following conditions aremet:- Redistributions of source code must retain the above copyrightnotice, this list of conditions and the following disclaimer.- Redistributions in binary form must reproduce the above copyrightnotice, this list of conditions and the following disclaimer in thedocumentation and/or other materials provided with the distribution.- Neither  the name  of Rice  University (RICE) nor  the names  of itscontributors may be  used to endorse or promote  products derived fromthis software without specific prior written permission.This software is provided by RICE and the contributors on an "as is"basis, without any representations or warranties of any kind, expressor implied including, but not limited to, representations orwarranties of non-infringement, merchantability or fitness for aparticular purpose. In no event shall RICE or contributors be liablefor any direct, indirect, incidental, special, exemplary, orconsequential damages (including, but not limited to, procurement ofsubstitute goods or services; loss of use, data, or profits; orbusiness interruption) however caused and on any theory of liability,whether in contract, strict liability, or tort (including negligenceor otherwise) arising in any way out of the use of this software, evenif advised of the possibility of such damage.********************************************************************************/package rice.p2p.splitstream.testing;import java.io.IOException;import rice.environment.Environment;import rice.environment.logging.Logger;import rice.environment.params.Parameters;import rice.environment.params.simple.SimpleParameters;import rice.p2p.commonapi.*;import rice.p2p.commonapi.testing.CommonAPITest;import rice.p2p.splitstream.*;/** * @(#) SplitStreamRegrTest.java Provides regression testing for the Scribe * service using distributed nodes. * * @version $Id: SplitStreamRegrTest.java 2885 2006-01-05 12:20:54Z jeffh $ * @author Ansley Post */public class SplitStreamRegrTest extends CommonAPITest {  // the scribe impls in the ring  /**   * DESCRIBE THE FIELD   */  protected SplitStreamImpl splitstreams[];  /**   * DESCRIBE THE FIELD   */  protected SplitStreamTestClient ssclients[];  // the instance name to use  /**   * DESCRIBE THE FIELD   */  public static String INSTANCE = "SplitStreamRegrTest";  /**   * Constructor which sets up all local variables   *   * @param env DESCRIBE THE PARAMETER   * @exception IOException DESCRIBE THE EXCEPTION   */  public SplitStreamRegrTest(Environment env) throws IOException {    super(env);    splitstreams = new SplitStreamImpl[NUM_NODES];    ssclients = new SplitStreamTestClient[NUM_NODES];  }  /**   * Method which should process the given newly-created node   *   * @param node The newly created node   * @param num The number of this node   */  protected void processNode(int num, Node node) {    splitstreams[num] = new SplitStreamImpl(node, INSTANCE);    ssclients[num] = new SplitStreamTestClient(node, splitstreams[num]);  }  /**   * Method which should run the test - this is called once all of the nodes   * have been created and are ready.   */  protected void runTest() {    if (NUM_NODES < 2) {      System.out.println("The DistScribeRegrTest must be run with at least 2 nodes for proper testing.  Use the '-nodes n' to specify the number of nodes.");      return;    }    // Run each test    testBasic();    testBandwidthUsage();    testIndependence();    testMaintenance(NUM_NODES / 10);  }  /**   * A unit test for JUnit   */  protected void testBandwidthUsage() {    int DEFAULT_MAX_CHILDREN = environment.getParameters().getInt("p2p_splitStream_policy_default_maximum_children");    boolean result = true;    int count = 0;    int total = 0;    Channel channel;    sectionStart("BandwidthUsage Test");    stepStart("Usage");    simulate();    for (int i = 0; i < NUM_NODES; i++) {      channel = ssclients[i].getChannel();      count = ((SplitStreamScribePolicy) splitstreams[i].getPolicy())        .getTotalChildren(channel);      if (count > DEFAULT_MAX_CHILDREN) {        result = false;      }      //System.out.println("count "+count);      total += count;    }    //System.out.println("Total outgoing capacity Used "+total);    if (result      && (total <= (NUM_NODES - 1)      * DEFAULT_MAX_CHILDREN)) {      stepDone(SUCCESS);    } else {      stepDone(FAILURE);    }    sectionDone();  }  /**   * A unit test for JUnit   */  protected void testIndependence() {    boolean result = true;    int count = 0;    int num = 0;    int[] array = new int[20];    Channel channel;    Stripe[] stripes;    sectionStart("Path Independence Test");    stepStart("Usage");    simulate();    for (int i = 0; i < NUM_NODES; i++) {      channel = ssclients[i].getChannel();      stripes = channel.getStripes();      num = 0;      for (int j = 0; j < stripes.length; j++) {        count = stripes[j].getChildren().length;        if (count > 0) {          num++;        }      }      array[num]++;    }    for (int i = 0; i < 20; i++) {      System.out.println(i + "\t" + array[i]);    }    sectionDone();  }  /**   * A unit test for JUnit   *   * @param num DESCRIBE THE PARAMETER   */  protected void testMaintenance(int num) {    sectionStart("Maintenance of multicast trees");    stepStart("Killing Nodes");    for (int i = 0; i < num; i++) {      System.out.println("Killing " + ssclients[i].getId());      ssclients[i].destroy();      kill(i);      simulate();    }    if (checkTree(num, NUM_NODES)) {      stepDone(SUCCESS);    } else {      stepDone(FAILURE, "not all have parent");    }    stepStart("Tree Recovery");    byte[] data = {0, 1, 0, 1, 1};    boolean pass = true;    for (int i = 0; i < 10; i++) {      ssclients[environment.getRandomSource().nextInt(NUM_NODES - num) + num]        .publishAll(data);      simulate();      int totalmsgs = 0;      for (int j = 0; j < NUM_NODES - num; j++) {        totalmsgs = totalmsgs + ssclients[j + num].getNumMesgs();        if (ssclients[j + num].getNumMesgs() != 16) {          System.out.println(ssclients[j + num].getId() + " recived "            + ssclients[j + num].getNumMesgs());        }        ssclients[j + num].reset();      }      //System.out.println("Expected " + ((NUM_NODES - num) * 16) + " messages,      // got " + totalmsgs);      if (totalmsgs != ((NUM_NODES - num) * 16)) {        pass = false;      }    }    if (pass) {      stepDone(SUCCESS);    } else {      stepDone(FAILURE);    }    sectionDone();  }  /*   *  ---------- Test methods and classes ----------   */  /**   * Tests routing a Past request to a particular node.   */  protected void testBasic() {    sectionStart("Basic Test");    stepStart("Creating Channel");    int creator = environment.getRandomSource().nextInt(NUM_NODES);    ChannelId id = new ChannelId(generateId());    ssclients[creator].createChannel(id);    simulate();    stepDone(SUCCESS);    stepStart("Attaching and Joining Stripes");    for (int i = 0; i < NUM_NODES; i++) {      ssclients[i].attachChannel(id);      simulate();    }    for (int i = 0; i < NUM_NODES; i++) {      ssclients[i].getStripes();      simulate();    }    for (int i = 0; i < NUM_NODES; i++) {      ssclients[i].subscribeStripes();      simulate();    }    if (checkTree(0, NUM_NODES)) {      stepDone(SUCCESS);    } else {      stepDone(FAILURE, "not all stripes have a parent");    }    stepStart("Sending Data");    byte[] data = {0, 1, 0, 1, 1};    ssclients[creator].publishAll(data);    simulate();    ssclients[creator].publishAll(new byte[0]);    simulate();    int totalmsgs = 0;    for (int i = 0; i < NUM_NODES; i++) {      totalmsgs = totalmsgs + ssclients[i].getNumMesgs();      ssclients[i].reset();    }    if (totalmsgs == (NUM_NODES * 16 * 2)) {      stepDone(SUCCESS);    } else {      stepDone(FAILURE, "Expected " + (NUM_NODES * 16 * 2) + " messages, got "        + totalmsgs);    }    sectionDone();    testFailure(1);  }  /**   * DESCRIBE THE METHOD   *   * @param startindex DESCRIBE THE PARAMETER   * @param num DESCRIBE THE PARAMETER   * @return DESCRIBE THE RETURN VALUE   */  protected boolean checkTree(int startindex, int num) {    Stripe[] stripes;    boolean result = true;    for (int i = startindex; i < num; i++) {      stripes = ssclients[i].getStripes();      for (int j = 0; j < stripes.length; j++) {        if (stripes[j].getParent() == null && !stripes[j].isRoot()) {          result = false;          System.out.println("Node " + ssclients[i].getId()            + " is parent less for topic "            + stripes[j].getStripeId().getId());        }        //if(stripes[j].getParent() == null && stripes[j].isRoot())        //System.out.println("Node "+ssclients[i].getId()+" is parent less, but        // is the root for topic "+stripes[j].getStripeId().getId());      }    }    return result;  }  /**   * A unit test for JUnit   *   * @param numnodes DESCRIBE THE PARAMETER   */  protected void testFailure(int numnodes) {    sectionStart("Failure Test");    sectionDone();  }  /**   * Private method which generates a random Id   *   * @return A new random Id   */  private Id generateId() {    byte[] data = new byte[20];    environment.getRandomSource().nextBytes(data);    return FACTORY.buildId(data);  }  /**   * Usage: DistScribeRegrTest [-port p] [-bootstrap host[:port]] [-nodes n]   * [-protocol (rmi|wire)] [-help]   *   * @param args DESCRIBE THE PARAMETER   * @exception IOException DESCRIBE THE EXCEPTION   */  public static void main(String args[]) throws IOException {    // by properly setting the params first, the enviornment will use    // the specified seed when creating a default RandomSource    Environment env = parseArgs(args);    SplitStreamRegrTest splitstreamTest = new SplitStreamRegrTest(env);    splitstreamTest.start();    env.destroy();  }  /**   * DESCRIBE THE CLASS   *   * @version $Id: pretty.settings 2305 2005-03-11 20:22:33Z jeffh $   * @author jeffh   */  private class SplitStreamTestClient implements SplitStreamClient {    /**     * The underlying common api node     */    private Node n = null;    /**     * The stripes for a channel     */    private Stripe[] stripes;    /**     * The channel to be used for this test     */    private Channel channel;    /**     * The SplitStream service for this node     */    private SplitStream ss;    private int numMesgsReceived = 0;    private SplitStreamScribePolicy policy = null;    /**     * Constructor for SplitStreamTestClient.     *     * @param n DESCRIBE THE PARAMETER     * @param ss DESCRIBE THE PARAMETER     */    public SplitStreamTestClient(Node n, SplitStream ss) {      this.n = n;      this.ss = ss;      log("Client Created " + n);    }    /**     * Gets the Channel attribute of the SplitStreamTestClient object     *     * @return The Channel value     */    public Channel getChannel() {      return this.channel;    }    /**     * Gets the Stripes attribute of the SplitStreamTestClient object     *     * @return The Stripes value     */    public Stripe[] getStripes() {      log("Retrieving Stripes.");      stripes = channel.getStripes();      return stripes;    }    /**     * Gets the NumMesgs attribute of the SplitStreamTestClient object     *     * @return The NumMesgs value     */    public int getNumMesgs() {      return numMesgsReceived;    }    /**     * Gets the Id attribute of the SplitStreamTestClient object     *     * @return The Id value     */    public Id getId() {      return channel.getLocalId();    }    /**     * DESCRIBE THE METHOD     */    public void destroy() {      ss.destroy();    }    /**     * DESCRIBE THE METHOD     *     * @param s DESCRIBE THE PARAMETER     */    public void joinFailed(Stripe s) {      log("Join Failed on " + s);    }    /**     * DESCRIBE THE METHOD     *     * @param s DESCRIBE THE PARAMETER     * @param data DESCRIBE THE PARAMETER     */    public void deliver(Stripe s, byte[] data) {      log("Data recieved on " + s);      numMesgsReceived++;    }    /**     * DESCRIBE THE METHOD     *     * @param cid DESCRIBE THE PARAMETER     */    public void createChannel(ChannelId cid) {      log("Channel " + cid + " created.");      channel = ss.createChannel(cid);    }    /**     * DESCRIBE THE METHOD     *     * @param cid DESCRIBE THE PARAMETER     */    public void attachChannel(ChannelId cid) {      log("Attaching to Channel " + cid + ".");      if (channel == null) {        channel = ss.attachChannel(cid);      }    }    /**     * DESCRIBE THE METHOD     */    public void subscribeStripes() {      log("Subscribing to all Stripes.");      for (int i = 0; i < stripes.length; i++) {        stripes[i].subscribe(this);      }    }    /**     * DESCRIBE THE METHOD     *     * @param b DESCRIBE THE PARAMETER     */    public void publishAll(byte[] b) {      log("Publishing to all Stripes.");      for (int i = 0; i < stripes.length; i++) {        publish(b, stripes[i]);      }    }    /**     * DESCRIBE THE METHOD     *     * @param b DESCRIBE THE PARAMETER     * @param s DESCRIBE THE PARAMETER     */    public void publish(byte[] b, Stripe s) {      log("Publishing to " + s);      s.publish(b);    }    /**     * DESCRIBE THE METHOD     */    public void reset() {      numMesgsReceived = 0;    }    /**     * DESCRIBE THE METHOD     *     * @param s DESCRIBE THE PARAMETER     */    private void log(String s) {      if (logger.level <= Logger.FINE) {        logger.log("" + n + " " + s);      }      //System.out.println("" + n + " " + s);    }  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -