来自 Siteminder 的 Visual Studio 负载测试重定向 URL

Posted

技术标签:

【中文标题】来自 Siteminder 的 Visual Studio 负载测试重定向 URL【英文标题】:Visual Studio Load Test redirect URL from Siteminder 【发布时间】:2016-10-28 17:58:08 【问题描述】:

我有一个名为 Siteminder 的安全应用程序。它为每个身份验证创建唯一的 URL。 HTTPS://SITE/idp/**RANDOMURLSTRING**/resumeSAML20/idp/startSSO.ping

如何捕获唯一 URL 并让测试继续登录。

网络测试假定过程中的下一个 URL。它不支持[或者我不知道如何] 对随机 URL 的唯一重定向。有谁知道处理这种情况的方法吗?

编辑: 我的解决方案 -- 将所有 URL 中的 SessionID 替换为 SessionID 并使用此提取规则

 public class ExtractSiteMinderCustomUrl : ExtractionRule

    
        public string SiteMinderSessionID  get; private set; 

        // The Extract method.  The parameter e contains the web performance test context.
        //---------------------------------------------------------------------
        public override void Extract(object sender, ExtractionEventArgs e)
        
            //look for anchor tags with URLS
                Regex regex = new Regex("<a\\s+(?:[^>]*?\\s+)?href=\"([^\"]+\\?[^\"]+)\"");
            MatchCollection match = regex.Matches(e.Response.BodyString);
            if (match.Count > 0)
            
                foreach (Match ItemMatch in match)
                
                    if (ItemMatch.ToString().Contains("/idp/"))
                    
                        //start and ends string from the sitemindersession is in the link on the page
                        e.WebTest.Context.Add(this.ContextParameterName, GetStringBetween(ItemMatch.ToString(), "/idp/", "/resume"));
                        e.Success = true;
                        return;
                    
                
                e.Success = false;
                e.Message = String.Format(CultureInfo.CurrentCulture, "Not Found in Link : /idp/");
            
            else
            
                e.Success = false;
                e.Message = String.Format(CultureInfo.CurrentCulture, "No href tags found");
            
        

        public static string GetStringBetween(string token, string first, string second)
        
            if (!token.Contains(first)) return "";

            var afterFirst = token.Split(new[]  first , StringSplitOptions.None)[1];

            if (!afterFirst.Contains(second)) return "";

            var result = afterFirst.Split(new[]  second , StringSplitOptions.None)[0];

            return result;
        

    

【问题讨论】:

【参考方案1】:

简单的答案是使用获取**RANDOMURLSTRING** 的提取规则,然后将请求中的URL 更改为例如HTTPS://SITE/idp/TheRandomString/resumeSAML20/idp/startSSO.ping,其中TheRandomString 是保存提取值的上下文参数。请注意上下文参数周围的双花括号()。

假设需要捕获第一次重定向返回的值,但正常的 Web 测试会再次重定向,因此提取规则看不到响应。在这种情况下需要显式处理重定向。将初始请求的 Follow redirects 属性设置为 false,然后添加提取规则以收集所需值。在初始请求之后添加一个新请求,并根据需要使用其中提取的值。可以提取整个重定向的url并将Url字段设置为提取的值。

【讨论】:

以上是关于来自 Siteminder 的 Visual Studio 负载测试重定向 URL的主要内容,如果未能解决你的问题,请参考以下文章

Apache Shiro(授权)+ SiteMinder(认证)

Grails、Spring Security 和 Siteminder - 资源或用户详情问题

json elastic:获取SiteMinder配额更新

如何为 Pivotal Cloud Foundry 托管的 JSP/Servlet 应用程序从 SiteMinder 会话注销?

如何在 SiteMinder 受保护的环境中处理 CORS 预检请求?

从 C# 桌面应用程序到受 Siteminder 保护的服务器的 HTTP 请求