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

📄 testpidf.cxx

📁 一个著名的SIP协议栈
💻 CXX
字号:
#include "resip/stack/Pidf.hxx"
#include <iostream>
#include "rutil/Logger.hxx"

using namespace resip;
using namespace std;

#define CRLF "\r\n"

int
main(int argc, char** argv)
{
   //Log::initialize(Log::Cout, Log::Debug, argv[0]);

   {
      cerr << "test truncated contents" << endl;
      const Data txt("<?xml version=\"1.0\" encoding=\"UTF-8\"?>" CRLF
                     "<presence xmlns=\"urn:ietf:params:xml:ns:pidf\"" CRLF
                     "          entity=\"sip:qqqqll99200_AT_163.com@teltel.com\">" CRLF
                     "  <tuple id=\"qqqqll99200@163.com\" callstatus=\"0\" displayName=\"金林\" status=\"1\">" CRLF
                     "     <status><basic>open</basic></status>" CRLF
                     "     <contact priority=\"0\">sip:qqqqll99200_AT_163.com@teltel.com</contact>" CRLF
                     "     <");

      try
      {
         HeaderFieldValue hfv(txt.data(), txt.size());
         Mime type("application", "pidf+xml");
         Pidf pc(&hfv, type);
         assert(pc.getNumTuples() == 1);
         assert(false);
      }
      catch (BaseException& e)
      {
         cerr << "Caught: " << e << endl;
      }
   }

   {
      //resip::Pidf::Tuple tuple;
      //tuple.status = true;
      //tuple.id = account;
      //tuple.contact = Data::from(from);
      //tuple.contactPriority = 0.0;
      //tuple.note = "test";
      //pidf.getTuples().push_back(tuple);

      Data txt ("<?xml version=\"1.0\" encoding=\"UTF-8\"?>" CRLF
                "<presence xmlns=\"urn:ietf:params:xml:ns:pidf\"" CRLF
                "          entity=\"sip:jason_AT_example.com@london.gloo.net\">" CRLF
                "  <tuple id=\"jason@example.com\" >" CRLF // SPACE before > causes error
                "     <status><basic>open</basic></status>" CRLF
                "     <contact priority=\"0\">sip:jason_AT_example.com@london.gloo.net</contact>" CRLF
                "     <note>test</note>" CRLF
                "  </tuple>" CRLF
                "</presence>");

      HeaderFieldValue hfv(txt.data(), txt.size());
      Mime type("application", "pidf+xml");
      Pidf pc(&hfv, type);
      assert(pc.getNumTuples() == 1);
   }

   //Test namespace support
   {

      Data txt ("<?xml version=\"1.0\" encoding=\"UTF-8\"?>" CRLF
                  "<pr:presence xmlns:pr=\"urn:ietf:params:xml:ns:pidf\">" CRLF
                  "    <pr:tuple>" CRLF
                  "       <pr:status>" CRLF
                  "           <pr:basic>open</pr:basic>" CRLF
                  "           <pr:contact priority=\"0\">sip:jason_AT_example.com@london.gloo.net</pr:contact>" CRLF
                  "           <pr:note>test</pr:note>" CRLF
                  "        </pr:status>" CRLF
                  "    </pr:tuple>" CRLF
                  "</pr:presence>");

      HeaderFieldValue hfv(txt.data(), txt.size());
      Mime type("application", "pidf+xml");
      Pidf pc(&hfv, type);
      pc.checkParsed();
      assert(pc.getNumTuples() == 1);
   }
   {
      // http://www.imppwg.org/ml-archive/IMPP-WG/200204/msg00094.html

      const Data txt("<?xml version=\"1.0\" encoding=\"UTF-8\"?>" CRLF
                     "<presence xmlns=\"urn:ietf:params:xml:ns:cpim-pidf:\"" CRLF
                     "xmlns:im=\"urn:ietf:params:xml:ns:cpim-pidf:im\"" CRLF
                     "xmlns:myex=\"http://id.mycompany.com/cpim-presence/\" " CRLF
                     "entity=\"pres:someone@example.com\">" CRLF
                     "    <tuple id=\"mobile-im\" display=\"displayed\">" CRLF
                     "        <status>" CRLF
                     "            <basic>open</basic>" CRLF
                     "            <im:im>busy</im:im>" CRLF
                     "            <myex:location>home</myex:location>" CRLF
                     "        </status>" CRLF
                     "        <contact priority=\"0.2\">im:someone@mobilecarrier.net</contact>" CRLF
                     "        <note xml:lang=\"en\">Don't Disturb Please!</note>" CRLF
                     "        <note xml:lang=\"fr\">Ne dérangez pas, s'il vous plait</note>" CRLF
                     "        <timestamp>2001-10-27T16:49:29Z</timestamp>" CRLF
                     "    </tuple>" CRLF
                     "    <tuple id=\"email\">" CRLF
                     "        <status>" CRLF
                     "            <basic>open</basic>" CRLF
                     "        </status>" CRLF
                     "        <contact priority=\"0.1\">mailto:someone@example.com</contact>" CRLF
                     "    </tuple>" CRLF
                     "    <note xml:lang=\"en\">I'll be in Tokyo next week</note>" CRLF
                     "</presence>");

      HeaderFieldValue hfv(txt.data(), txt.size());
      Mime type("application", "pidf+xml");
      Pidf pc(&hfv, type);

      cerr << "!! " << pc.getEntity() << endl;
      assert(pc.getEntity() == Uri("pres:someone@example.com"));

      assert(pc.getNumTuples() == 2);
      assert(pc.getTuples()[0].id == "mobile-im");
      assert(pc.getTuples()[0].attributes["display"] == "displayed");
      assert(pc.getTuples()[0].status);
      assert(pc.getTuples()[0].contact == "im:someone@mobilecarrier.net");
#ifndef RESIP_FIXED_POINT
      assert(pc.getTuples()[0].contactPriority == 0.2);
#else
      assert(pc.getTuples()[0].contactPriority == 200);
#endif
      assert(pc.getTuples()[0].note == "Ne dérangez pas, s'il vous plait");
      assert(pc.getTuples()[0].timeStamp == "2001-10-27T16:49:29Z");

      pc.encodeParsed(cerr);
   }

   {
      cerr << "Test merge" << endl;
      
      const Data txt1("<?xml version=\"1.0\" encoding=\"UTF-8\"?>" CRLF
                      "<presence xmlns=\"urn:ietf:params:xml:ns:cpim-pidf:\"" CRLF
                      "xmlns:im=\"urn:ietf:params:xml:ns:cpim-pidf:im\"" CRLF
                      "xmlns:myex=\"http://id.mycompany.com/cpim-presence/\" " CRLF
                      "entity=\"pres:someone@example.com\">" CRLF
                      "    <tuple id=\"mobile-im1\" display=\"displayed\">" CRLF
                      "        <status>" CRLF
                      "            <basic>open</basic>" CRLF
                      "            <im:im>busy</im:im>" CRLF
                      "            <myex:location>home</myex:location>" CRLF
                      "        </status>" CRLF
                      "        <contact priority=\"0.2\">im:someone@mobilecarrier.net</contact>" CRLF
                      "        <note xml:lang=\"en\">Don't Disturb Please!</note>" CRLF
                      "        <note xml:lang=\"fr\">Ne dérangez pas, s'il vous plait</note>" CRLF
                      "        <timestamp>2001-10-27T16:49:29Z</timestamp>" CRLF
                      "    </tuple>" CRLF
                      "    <tuple id=\"email1\">" CRLF
                      "        <status>" CRLF
                      "            <basic>open</basic>" CRLF
                      "        </status>" CRLF
                      "        <contact priority=\"0.1\">mailto:someone@exapmle.com</contact>" CRLF
                      "    </tuple>" CRLF
                      "    <note xml:lang=\"en\">I'll be in Tokyo next week</note>" CRLF
                      "</presence>");

      Mime type("application", "pidf+xml");

      HeaderFieldValue hfv1(txt1.data(), txt1.size());
      Pidf pc1(&hfv1, type);

      const Data txt2("<?xml version=\"1.0\" encoding=\"UTF-8\"?>" CRLF
                      "<presence xmlns=\"urn:ietf:params:xml:ns:cpim-pidf:\"" CRLF
                      "xmlns:im=\"urn:ietf:params:xml:ns:cpim-pidf:im\"" CRLF
                      "xmlns:myex=\"http://id.mycompany.com/cpim-presence/\" " CRLF
                      "entity=\"pres:someone@example.com\">" CRLF
                      "    <tuple id=\"mobile-im2\" display=\"displayed\">" CRLF
                      "        <status>" CRLF
                      "            <basic>open</basic>" CRLF
                      "            <im:im>busy</im:im>" CRLF
                      "            <myex:location>home</myex:location>" CRLF
                      "        </status>" CRLF
                      "        <contact priority=\"0.4\">im:someone@mobilecarrier.net</contact>" CRLF
                      "        <note xml:lang=\"en\">Don't Disturb Please!</note>" CRLF
                      "        <note xml:lang=\"fr\">Ne dérangez pas, s'il vous plait</note>" CRLF
                      "        <timestamp>2002-10-27T16:49:29Z</timestamp>" CRLF
                      "    </tuple>" CRLF
                      "    <tuple id=\"email2\">" CRLF
                      "        <status>" CRLF
                      "            <basic>open</basic>" CRLF
                      "        </status>" CRLF
                      "        <contact priority=\"0.1\">mailto:someone@exapmle.com</contact>" CRLF
                      "    </tuple>" CRLF
                      "    <note xml:lang=\"en\">I'll be in Tokyo next week</note>" CRLF
                      "</presence>");

      HeaderFieldValue hfv2(txt2.data(), txt2.size());
      Pidf pc2(&hfv2, type);

      Pidf* n = new Pidf;

      n->merge(pc1);

      cerr << "!! " << n->getEntity() << endl;
      assert(n->getEntity() == Uri("pres:someone@example.com"));

      assert(n->getNumTuples() == 2);
      assert(n->getTuples()[0].id == "mobile-im1");
      assert(n->getTuples()[0].attributes["display"] == "displayed");
      assert(n->getTuples()[0].status);
      assert(n->getTuples()[0].contact == "im:someone@mobilecarrier.net");
#ifndef RESIP_FIXED_POINT
      assert(n->getTuples()[0].contactPriority == 0.2);
#else
      assert(n->getTuples()[0].contactPriority == 200);
#endif
      assert(n->getTuples()[0].note == "Ne dérangez pas, s'il vous plait");
      assert(n->getTuples()[0].timeStamp == "2001-10-27T16:49:29Z");

      n->encodeParsed(cerr);

      n->merge(pc2);

      assert(n->getNumTuples() == 4);
      assert(n->getTuples()[2].id == "mobile-im2");
      assert(n->getTuples()[2].attributes["display"] == "displayed");
      assert(n->getTuples()[2].status);
      assert(n->getTuples()[2].contact == "im:someone@mobilecarrier.net");
#ifndef RESIP_FIXED_POINT
      assert(n->getTuples()[2].contactPriority == 0.4);
#else
      assert(n->getTuples()[2].contactPriority == 400);
#endif
      assert(n->getTuples()[2].note == "Ne dérangez pas, s'il vous plait");
      assert(n->getTuples()[2].timeStamp == "2002-10-27T16:49:29Z");

      n->encodeParsed(cerr);
   }
   {
      resip::Pidf pidf;
      resip::Uri aor("sip:jason@example.com");
      pidf.setEntity(aor);
   
      resip::Pidf::Tuple tuple;
      tuple.status = true;
      tuple.id = "test id";
      tuple.contact = Data::from(aor);
      tuple.contactPriority = (int)0;
      tuple.note = "Away";
      tuple.attributes["displayname"] = "displayName";
      tuple.attributes["status"] = "1";
      
      pidf.getTuples().push_back(tuple);
      std::cerr  << Data::from(pidf) << std::endl;
   }
   

   cerr << "All OK" << endl;
   return 0;
}

/* ====================================================================
 * The Vovida Software License, Version 1.0 
 * 
 * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 * 
 * 3. The names "VOCAL", "Vovida Open Communication Application Library",
 *    and "Vovida Open Communication Application Library (VOCAL)" must
 *    not be used to endorse or promote products derived from this
 *    software without prior written permission. For written
 *    permission, please contact vocal@vovida.org.
 *
 * 4. Products derived from this software may not be called "VOCAL", nor
 *    may "VOCAL" appear in their name, without prior written
 *    permission of Vovida Networks, Inc.
 * 
 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
 * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
 * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
 * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
 * DAMAGE.
 * 
 * ====================================================================
 * 
 * This software consists of voluntary contributions made by Vovida
 * Networks, Inc. and many individuals on behalf of Vovida Networks,
 * Inc.  For more information on Vovida Networks, Inc., please see
 * <http://www.vovida.org/>.
 *
 */

⌨️ 快捷键说明

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