博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SVN钩子(hooks)的使用集-(保持SVN用例的同步)
阅读量:6239 次
发布时间:2019-06-22

本文共 1669 字,大约阅读时间需要 5 分钟。

///         /// 用例消息处理        ///         public void TaskCaseAsk(TestActionRequestMessage request)        {            try            {                taskCaseList.Clear();                IList
lstcase = ScriptCacheManager.GetTestCaseFromSvn(request.SvnProjectInfo); ); } catch (Exception ex) { TaskCaseResponse(request.DBName, taskCaseList, false, ex.Message); } }

SolutionMessage.TaskCase

///         /// 从SVN服务器下载脚本项目数据。        ///         ///         ///         public static IList
GetTestCaseFromSvn(SvnProjectInfo project) { using (SvnClient client = new SvnClient()) { Uri testCaseUrl; if (!Uri.TryCreate(new Uri(project.SvnUrl), "./Properties/TestCases.tcx", out testCaseUrl)) return null; client.Authentication.DefaultCredentials = new NetworkCredential(project.SvnUsername, project.SvnPassword); client.Authentication.SslServerTrustHandlers += new EventHandler
(Authentication_SslServerTrustHandlers); SvnRevision revision = (project.SvnRevision < 0) ? SvnRevision.Head : new SvnRevision(project.SvnRevision); SvnUriTarget repos = new SvnUriTarget(testCaseUrl.AbsoluteUri, revision); MemoryStream stream = new MemoryStream(); client.Write(repos, stream); stream.Seek(0, SeekOrigin.Begin); return TestCaseDocument.FromXml(null, stream); } }

 

转载于:https://www.cnblogs.com/lqsilly/archive/2013/01/08/2850636.html

你可能感兴趣的文章
bash腳本編程之三 条件判断及算数运算
查看>>
php cookie
查看>>
linux下redis安装
查看>>
量子通信和大数据最有市场突破前景
查看>>
如何申请开通微信多客服功能
查看>>
Sr_C++_Engineer_(LBS_Engine@Global Map Dept.)
查看>>
非监督学习算法:异常检测
查看>>
jquery的checkbox,radio,select等方法总结
查看>>
Linux coredump
查看>>
Ubuntu 10.04安装水晶(Mercury)无线网卡驱动
查看>>
我的友情链接
查看>>
ElasticSearch 2 (32) - 信息聚合系列之范围限定
查看>>
VS2010远程调试C#程序
查看>>
[MicroPython]TurniBit开发板DIY自动窗帘模拟系统
查看>>
从Handler.post(Runnable r)再一次梳理Android的消息机制(以及handler的内存泄露)
查看>>
windows查看端口占用
查看>>
Yii用ajax实现无刷新检索更新CListView数据
查看>>
JDBC的事务
查看>>
App 卸载记录
查看>>
JavaScript变量和作用域
查看>>