Package com.dianping.cat.consumer.cross

Source Code of com.dianping.cat.consumer.cross.CrossInfoTest

package com.dianping.cat.consumer.cross;

import junit.framework.Assert;

import org.junit.Test;
import org.unidal.lookup.ComponentTestCase;

import com.dianping.cat.ServerConfigManager;
import com.dianping.cat.consumer.cross.CrossAnalyzer;
import com.dianping.cat.consumer.cross.CrossAnalyzer.CrossInfo;
import com.dianping.cat.message.Message;
import com.dianping.cat.message.internal.DefaultEvent;
import com.dianping.cat.message.internal.DefaultTransaction;
import com.dianping.cat.message.spi.MessageTree;
import com.dianping.cat.message.spi.internal.DefaultMessageTree;

public class CrossInfoTest extends ComponentTestCase {
  public MessageTree buildMockMessageTree() {
    MessageTree tree = new DefaultMessageTree();
    tree.setMessageId("Cat-c0a80746-373452-6");// 192.168.7.70 machine logview
    tree.setIpAddress("192.168.0.1");
    return tree;
  }

  @Test
  public void testParseOtherTransaction() throws Exception {
    CrossAnalyzer analyzer = new CrossAnalyzer();

    analyzer.setServerConfigManager(lookup(ServerConfigManager.class));
    analyzer.setIpConvertManager(new IpConvertManager());
    analyzer.setCrossAppSwitch(new CrossAppSwitch().setTurnOn(true));

    DefaultTransaction t = new DefaultTransaction("Other", "method1", null);
    MessageTree tree = buildMockMessageTree();
    CrossInfo info = analyzer.parseCorssTransaction(t, tree);

    Assert.assertEquals(true, info == null);
  }

  @Test
  public void testParsePigeonClientTransaction() throws Exception {
    CrossAnalyzer analyzer = new CrossAnalyzer();

    analyzer.setServerConfigManager(lookup(ServerConfigManager.class));
    analyzer.setIpConvertManager(new IpConvertManager());
    analyzer.setCrossAppSwitch(new CrossAppSwitch().setTurnOn(true));

    DefaultTransaction t = new DefaultTransaction("Call", "method1", null);
    MessageTree tree = buildMockMessageTree();
    CrossInfo info = analyzer.parseCorssTransaction(t, tree);

    Assert.assertEquals(info.getLocalAddress(), "192.168.0.1");
    Assert.assertEquals(info.getRemoteAddress(), "Unknown");

    Message message = new DefaultEvent("PigeonCall.server", "10.1.1.1", null);
    Message messageApp = new DefaultEvent("PigeonCall.app", "myDomain", null);
    t.addChild(message);
    t.addChild(messageApp);

    info = analyzer.parseCorssTransaction(t, tree);

    Assert.assertEquals(info.getLocalAddress(), "192.168.0.1");
    Assert.assertEquals(info.getRemoteAddress(), "10.1.1.1");
    Assert.assertEquals(info.getDetailType(), "PigeonCall");
    Assert.assertEquals(info.getRemoteRole(), "Pigeon.Server");
    Assert.assertEquals(info.getApp(), "myDomain");
  }

  @Test
  public void testParsePigeonServerTransaction() throws Exception {
    CrossAnalyzer analyzer = new CrossAnalyzer();

    analyzer.setServerConfigManager(lookup(ServerConfigManager.class));
    analyzer.setIpConvertManager(new IpConvertManager());
    analyzer.setCrossAppSwitch(new CrossAppSwitch().setTurnOn(true));

    DefaultTransaction t = new DefaultTransaction("Service", "method1", null);
    MessageTree tree = buildMockMessageTree();
    CrossInfo info = analyzer.parseCorssTransaction(t, tree);

    Assert.assertEquals(info.getLocalAddress(), "192.168.0.1");
    Assert.assertEquals(info.getRemoteAddress(), "192.168.7.70");

    Message message = new DefaultEvent("PigeonService.client", "192.168.7.71", null);
    Message messageApp = new DefaultEvent("PigeonService.app", "myDomain", null);
    t.addChild(message);
    t.addChild(messageApp);

    info = analyzer.parseCorssTransaction(t, tree);

    Assert.assertEquals(info.getLocalAddress(), "192.168.0.1");
    Assert.assertEquals(info.getRemoteAddress(), "192.168.7.71");
    Assert.assertEquals(info.getDetailType(), "PigeonService");
    Assert.assertEquals(info.getRemoteRole(), "Pigeon.Client");
    Assert.assertEquals(info.getApp(), "myDomain");
  }

  @Test
  public void testParsePigeonServerTransactionWithPort() throws Exception {
    CrossAnalyzer analyzer = new CrossAnalyzer();

    analyzer.setServerConfigManager(lookup(ServerConfigManager.class));
    analyzer.setIpConvertManager(new IpConvertManager());
    analyzer.setCrossAppSwitch(new CrossAppSwitch().setTurnOn(true));

    DefaultTransaction t = new DefaultTransaction("Service", "method1", null);
    MessageTree tree = buildMockMessageTree();
    CrossInfo info = analyzer.parseCorssTransaction(t, tree);

    Message message = new DefaultEvent("PigeonService.client", "192.168.7.71:29987", null);
    Message messageApp = new DefaultEvent("PigeonService.app", "myDomain", null);
    t.addChild(message);
    t.addChild(messageApp);

    info = analyzer.parseCorssTransaction(t, tree);

    Assert.assertEquals(info.getLocalAddress(), "192.168.0.1");
    Assert.assertEquals(info.getRemoteAddress(), "192.168.7.71");
    Assert.assertEquals(info.getDetailType(), "PigeonService");
    Assert.assertEquals(info.getRemoteRole(), "Pigeon.Client");
    Assert.assertEquals(info.getApp(), "myDomain");
  }
}
TOP

Related Classes of com.dianping.cat.consumer.cross.CrossInfoTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.