public void ParseFromXMLStringMultiDialogsUnitTest()
        {
            Console.WriteLine("--> " + System.Reflection.MethodBase.GetCurrentMethod().Name);

            string eventDialogInfoStr = "<?xml version='1.0' encoding='utf-16'?>" +
                                        "<dialog-info version='1' state='full' entity='sip:[email protected]' xmlns='urn:ietf:params:xml:ns:dialog-info'>" +
                                        " <dialog id='as7d900as8' call-id='a84b4c76e66710' local-tag='1928301774' direction='initiator'>" +
                                        "  <state event='remote-bye' code='486'>terminated</state>" +
                                        "  <duration>13</duration>" +
                                        " </dialog>" +
                                        " <dialog id='4353458'>" +
                                        "  <state>progressing</state>" +
                                        " </dialog>" +
                                        "</dialog-info>";

            SIPEventDialogInfo dialogInfo = SIPEventDialogInfo.Parse(eventDialogInfoStr);

            Assert.True(dialogInfo.DialogItems.Count == 2, "The parsed event dialog items count was incorrect.");
            Assert.True(dialogInfo.DialogItems[0].ID == "as7d900as8", "The parsed event dialog event id for the first dialog was incorrect.");
            Assert.True(dialogInfo.DialogItems[0].State == "terminated", "The parsed event dialog event state for the first dialog was incorrect.");
            Assert.True(dialogInfo.DialogItems[1].ID == "4353458", "The parsed event dialog event id for the second dialog was incorrect.");
            Assert.True(dialogInfo.DialogItems[1].State == "progressing", "The parsed event dialog event state for the second dialog was incorrect.");

            Console.WriteLine(dialogInfo.ToXMLText());

            Console.WriteLine("-----------------------------------------");
        }
        public void ParseFromXMLStringUnitTest()
        {
            Console.WriteLine("--> " + System.Reflection.MethodBase.GetCurrentMethod().Name);

            string eventDialogInfoStr = "<?xml version='1.0' encoding='utf-16'?>" +
                                        "<dialog-info version='1' state='full' entity='sip:[email protected]' xmlns='urn:ietf:params:xml:ns:dialog-info'>" +
                                        " <dialog id='as7d900as8' call-id='a84b4c76e66710' local-tag='1928301774' direction='initiator'>" +
                                        "  <state event='remote-bye' code='486'>terminated</state>" +
                                        "  <duration>13</duration>" +
                                        " </dialog>" +
                                        "</dialog-info>";

            SIPEventDialogInfo dialogInfo = SIPEventDialogInfo.Parse(eventDialogInfoStr);

            Assert.True(dialogInfo.Version == 1, "The parsed event dialog version was incorrect.");
            Assert.True(dialogInfo.State == SIPEventDialogInfoStateEnum.full, "The parsed event dialog state was incorrect.");
            Assert.True(dialogInfo.Entity == SIPURI.ParseSIPURI("sip:[email protected]"), "The parsed event dialog entity was incorrect.");
            Assert.True(dialogInfo.DialogItems.Count == 1, "The parsed event dialog items count was incorrect.");
            Assert.True(dialogInfo.DialogItems[0].ID == "as7d900as8", "The parsed event dialog event id was incorrect.");
            Assert.True(dialogInfo.DialogItems[0].CallID == "a84b4c76e66710", "The parsed event dialog event call-id was incorrect.");
            Assert.True(dialogInfo.DialogItems[0].LocalTag == "1928301774", "The parsed event dialog event local-tag was incorrect.");
            Assert.True(dialogInfo.DialogItems[0].Direction == SIPEventDialogDirectionEnum.initiator, "The parsed event dialog event direction was incorrect.");
            Assert.True(dialogInfo.DialogItems[0].State == "terminated", "The parsed event dialog event state was incorrect.");
            Assert.True(dialogInfo.DialogItems[0].StateEvent == SIPEventDialogStateEvent.RemoteBye, "The parsed event dialog event state event was incorrect.");
            Assert.True(dialogInfo.DialogItems[0].StateCode == 486, "The parsed event dialog event state code was incorrect.");
            Assert.True(dialogInfo.DialogItems[0].Duration == 13, "The parsed event dialog event duration was incorrect.");

            Console.WriteLine("-----------------------------------------");
        }
        public void GetAsXMLStringUnitTest()
        {
            Console.WriteLine("--> " + System.Reflection.MethodBase.GetCurrentMethod().Name);

            SIPEventDialogInfo dialogInfo = new SIPEventDialogInfo(0, SIPEventDialogInfoStateEnum.full, SIPURI.ParseSIPURI("sip:[email protected]"));

            dialogInfo.DialogItems.Add(new SIPEventDialog("abcde", "terminated", 487, SIPEventDialogStateEvent.Cancelled, 2));

            Console.WriteLine(dialogInfo.ToXMLText());

            Console.WriteLine("-----------------------------------------");
        }
Exemplo n.º 4
0
 public SIPDialogEventSubscription(
     string sessionID,
     SIPURI resourceURI,
     SIPURI canonincalResourceURI,
     string filter,
     SIPDialogue subscriptionDialogue,
     int expiry,
     SIPAssetGetListDelegate <SIPDialogueAsset> getDialogues,
     SIPAssetGetByIdDelegate <SIPDialogueAsset> getDialogue
     )
     : base(sessionID, resourceURI, canonincalResourceURI, filter, subscriptionDialogue, expiry)
 {
     GetDialogues_External = getDialogues;
     GetDialogue_External  = getDialogue;
     DialogInfo            = new SIPEventDialogInfo(0, SIPEventDialogInfoStateEnum.full, resourceURI);
 }
 public SIPDialogEventSubscription(
     SIPMonitorLogDelegate log,
     string sessionID,
     SIPURI resourceURI,
     SIPURI canonincalResourceURI,
     string filter,
     SIPDialogue subscriptionDialogue,
     int expiry,
     SIPAssetGetListDelegate<SIPDialogueAsset> getDialogues,
     SIPAssetGetByIdDelegate<SIPDialogueAsset> getDialogue
     )
     : base(log, sessionID, resourceURI, canonincalResourceURI, filter, subscriptionDialogue, expiry)
 {
     GetDialogues_External = getDialogues;
     GetDialogue_External = getDialogue;
     DialogInfo = new SIPEventDialogInfo(0, SIPEventDialogInfoStateEnum.full, resourceURI);
 }
Exemplo n.º 6
0
 public SIPDialogEventSubscription(
     SIPMonitorLogDelegate log,
     string sessionID,
     SIPURI resourceURI,
     SIPURI canonincalResourceURI,
     string filter,
     SIPDialogue subscriptionDialogue,
     int expiry,
     GetDialoguesForOwnerDelegate getDialoguesForOwner,
     GetRemoteDialogueForBridgeDelegate getRemoteDialogueForBridge,
     GetSIPDialogueDelegate getDialogue
     )
     : base(log, sessionID, resourceURI, canonincalResourceURI, filter, subscriptionDialogue, expiry)
 {
     GetDialoguesForOwner_External       = getDialoguesForOwner;
     GetRemoteDialogueForBridge_External = getRemoteDialogueForBridge;
     GetDialogue_External = getDialogue;
     DialogInfo           = new SIPEventDialogInfo(0, SIPEventDialogInfoStateEnum.full, resourceURI);
 }
        public void ParseFromXMLStringDialogWithParticipantsUnitTest()
        {
            logger.LogDebug("--> " + System.Reflection.MethodBase.GetCurrentMethod().Name);
            logger.BeginScope(System.Reflection.MethodBase.GetCurrentMethod().Name);

            string eventDialogInfoStr = "<?xml version='1.0' encoding='utf-16'?>" +
                                        "<dialog-info version='1' state='full' entity='sip:[email protected]' xmlns='urn:ietf:params:xml:ns:dialog-info'>" +
                                        " <dialog id='as7d900as8' call-id='a84b4c76e66710' local-tag='1928301774' direction='initiator'>" +
                                        "  <state event='remote-bye' code='486'>terminated</state>" +
                                        "  <duration>13</duration>" +
                                        "  <local>" +
                                        "   <identity>sip:[email protected];user=phone</identity>" +
                                        "   <cseq>2</cseq>" +
                                        "  </local>" +
                                        "  <remote>" +
                                        "   <identity display-name='Joe Bloggs'>sip:[email protected]</identity>" +
                                        "   <target uri='sip:[email protected]:5070' />" +
                                        "   <cseq>1</cseq>" +
                                        "  </remote>" +
                                        " </dialog>" +
                                        "</dialog-info>";

            SIPEventDialogInfo dialogInfo = SIPEventDialogInfo.Parse(eventDialogInfoStr);

            Assert.True(dialogInfo.DialogItems[0].LocalParticipant != null, "The parsed event dialog local participant was not correct.");
            Assert.True(dialogInfo.DialogItems[0].RemoteParticipant != null, "The parsed event dialog remote participant was not correct.");
            Assert.True(dialogInfo.DialogItems[0].LocalParticipant.URI == SIPURI.ParseSIPURI("sip:[email protected];user=phone"), "The local participant URI was incorrect.");
            Assert.True(dialogInfo.DialogItems[0].LocalParticipant.CSeq == 2, "The local participant CSeq was incorrect.");
            Assert.True(dialogInfo.DialogItems[0].RemoteParticipant.URI == SIPURI.ParseSIPURI("sip:[email protected]"), "The remote participant URI was incorrect.");
            Assert.True(dialogInfo.DialogItems[0].RemoteParticipant.DisplayName == "Joe Bloggs", "The remote participant display name was incorrect.");
            Assert.True(dialogInfo.DialogItems[0].RemoteParticipant.TargetURI == SIPURI.ParseSIPURI("sip:[email protected]:5070"), "The remote participant target URI was incorrect.");
            Assert.True(dialogInfo.DialogItems[0].RemoteParticipant.CSeq == 1, "The remote participant CSeq was incorrect.");

            logger.LogDebug(dialogInfo.ToXMLText());

            logger.LogDebug("-----------------------------------------");
        }