#region Apache License Version 2.0 /*---------------------------------------------------------------- Copyright 2023 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md ----------------------------------------------------------------*/ #endregion Apache License Version 2.0 using System; using System.Xml.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; using Senparc.CO2NET.Helpers; using Senparc.Weixin.Work.AdvancedAPIs.External; using Senparc.Weixin.Work.Entities.Request.KF; using Senparc.Weixin.Work.Helpers; namespace Senparc.Weixin.Work.Test { [TestClass] public class EntityHelperTest { [TestMethod] public void TestFillEntityWithXml() { //客服回调 var doc = XDocument.Parse(@" kf_internal CORPID 3 3156175696255 1348831860 1234567890123456 userid lisi 1348831860 1234567890123456 userid lisi 1348831860 "); var reqPack = new RequestPack(); reqPack.FillEntityWithXml(doc); Assert.AreEqual(AgentType.kf_internal, reqPack.AgentType); Assert.AreEqual("CORPID", reqPack.ToUserName); Assert.AreEqual(3, reqPack.ItemCount); Assert.AreEqual(3156175696255, reqPack.PackageId); Assert.IsNotNull(reqPack.Items); Assert.AreEqual(3, reqPack.Items.Count); } //https://work.weixin.qq.com/api/doc/90000/90135/92122 [TestMethod] public void GroupChatGetResultJsonTest() { var json = "{ \"errcode\": 0, \"errmsg\": \"ok\", \"group_chat\": { \"chat_id\": \"wrOgQhDgAAMYQiS5ol9G7gK9JVAAAA\", \"name\": \"销售客服群\", \"owner\": \"ZhuShengBen\", \"create_time\": 1572505490, \"notice\": \"文明沟通,拒绝脏话\", \"member_list\": [{ \"userid\": \"abel\", \"type\": 1, \"join_time\": 1572505491, \"join_scene\": 1, \"invitor\": { \"userid\": \"jack\" } }, { \"userid\": \"sam\", \"type\": 1, \"join_time\": 1572505491, \"join_scene\": 1 }, { \"userid\": \"wmOgQhDgAAuXFJGwbve4g4iXknfOAAAA\", \"type\": 2, \"unionid\": \"ozynqsulJFCZ2z1aYeS8h-nuasdAAA\", \"join_time\": 1572505491, \"join_scene\": 1 }], \"admin_list\": [{ \"userid\": \"sam\" }, { \"userid\": \"pony\" }] } }"; var result=SerializerHelper.GetObject(json); Assert.IsTrue(result.group_chat.member_list.Length == 3); Assert.IsTrue(result.group_chat.admin_list .Length== 2); Assert.IsTrue(result.group_chat.member_list[0] .invitor.userid=="jack"); Assert.IsTrue(result.group_chat.member_list[2] .unionid=="ozynqsulJFCZ2z1aYeS8h-nuasdAAA"); Assert.IsTrue(result.group_chat.admin_list[1].userid=="pony"); } //https://work.weixin.qq.com/api/doc/90000/90135/92114 [TestMethod] public void GetExternalContactResultJsonTest() { var json = "{ \"errcode\": 0, \"errmsg\": \"ok\", \"external_contact\": { \"external_userid\":\"woAJ2GCAAAXtWyujaWJHDDGi0mACHAAA\", \"name\":\"李四\", \"position\":\"Manager\", \"avatar\":\"http://p.qlogo.cn/bizmail/IcsdgagqefergqerhewSdage/0\", \"corp_name\":\"腾讯\", \"corp_full_name\":\"腾讯科技有限公司\", \"type\":2, \"gender\":1, \"unionid\":\"ozynqsulJFCZ2z1aYeS8h-nuasdAAA\", \"external_profile\": { \"external_attr\": [ { \"type\":0, \"name\":\"文本名称\", \"text\": { \"value\":\"文本\" } }, { \"type\":1, \"name\":\"网页名称\", \"web\": { \"url\":\"http://www.test.com\", \"title\":\"标题\" } }, { \"type\":2, \"name\":\"测试app\", \"miniprogram\": { \"appid\": \"wx8bd80126147df384\", \"pagepath\": \"/index\", \"title\": \"my miniprogram\" } } ] } }, \"follow_user\": [ { \"userid\":\"rocky\", \"remark\":\"李部长\", \"description\":\"对接采购事务\", \"createtime\":1525779812, \"tags\": [ { \"group_name\":\"标签分组名称\", \"tag_name\":\"标签名称\", \"tag_id\":\"etAJ2GCAAAXtWyujaWJHDDGi0mACHAAA\", \"type\":1 } ], \"remark_corp_name\":\"腾讯科技\", \"remark_mobiles\": [ \"13800000001\", \"13000000002\" ], \"oper_userid\":\"rocky\", \"add_way\":1 }, { \"userid\":\"tommy\", \"remark\":\"李总\", \"description\":\"采购问题咨询\", \"createtime\":1525881637, \"state\":\"外联二维码1\", \"oper_userid\":\"woAJ2GCAAAXtWyujaWJHDDGi0mACHAAA\", \"add_way\":3 } ], \"next_cursor\":\"NEXT_CUROSR\" }"; var result=SerializerHelper.GetObject(json); Assert.IsTrue(result.external_contact.external_profile.external_attr.Length == 3); Assert.IsTrue(result.external_contact.external_profile.external_attr[2].miniprogram.appid=="wx8bd80126147df384"); Assert.IsTrue(result.follow_user.Length == 2); Assert.IsTrue(result.follow_user[1] .oper_userid=="woAJ2GCAAAXtWyujaWJHDDGi0mACHAAA"); Assert.IsTrue(result.follow_user[0].remark_mobiles[1]=="13000000002"); Assert.IsTrue(result.follow_user[0].tags[0].group_name=="标签分组名称"); } } }