Exemple #1
0
        protected virtual void OnRequestBegin(RequestEventArgs e)
        {
            EventHandler <RequestEventArgs> handler = RequestBegin;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemple #2
0
        protected virtual void OnRequestComplete(RequestEventArgs e)
        {
            EventHandler <RequestEventArgs> complete = RequestComplete;

            if (complete != null)
            {
                complete(this, e);
            }
        }
Exemple #3
0
 public BrowserTestResults(RequestEventArgs eventArgs)
 {
     Id = eventArgs.Id;
     if (eventArgs.RequestLog.Body.Length > 0)
     {
         Log = Encoding.UTF8.GetString(eventArgs.RequestLog.Body);
     }
     Error      = eventArgs.RequestLog.Exception;
     StatusCode = eventArgs.RequestLog.StatusCode;
     Url        = eventArgs.RequestLog.Url;
     Success    = Url.IndexOf("success", StringComparison.InvariantCultureIgnoreCase) > -1;
 }
 public BrowserTestResults(RequestEventArgs eventArgs)
 {
     Id = eventArgs.Id;
     if (eventArgs.RequestLog.Body.Length > 0)
     {
         Log = Encoding.UTF8.GetString(eventArgs.RequestLog.Body);
     }
     Error = eventArgs.RequestLog.Exception;
     StatusCode = eventArgs.RequestLog.StatusCode;
     Url = eventArgs.RequestLog.Url;
     Success = Url.IndexOf("success", StringComparison.InvariantCultureIgnoreCase) > -1;
 }
Exemple #5
0
        ///<summary>
        ///</summary>
        ///<param name="url"></param>
        ///<param name="browser"></param>
        ///<param name="timeout"></param>
        ///<returns></returns>
        ///<exception cref="ArgumentNullException"></exception>
        ///<exception cref="InvalidOperationException"></exception>
        public RequestEventArgs RunTest(string url, WebBrowser browser, TimeSpan timeout)
        {
            if (browser == null)
            {
                throw new ArgumentNullException("browser");
            }
            if (string.IsNullOrEmpty(browser.ExecutablePath))
            {
                throw new InvalidOperationException("The specified browser could not be located.");
            }
            if (timeout.TotalMilliseconds == 0.0)
            {
                timeout = TimeSpan.FromMinutes(1.0);
            }
            var waitHandle          = new AutoResetEvent(false);
            RequestEventArgs result = null;
            Process          process;
            EventHandler <RequestEventArgs> logEventHandler = null;
            EventHandler <RequestEventArgs> handler         = logEventHandler;

            logEventHandler = delegate(object sender, RequestEventArgs e)
            {
                if (e.RequestLog.Url.ToLower().Contains(_postKey))
                {
                    Server.RequestComplete -= handler;
                    result = e;
                    waitHandle.Set();
                }
            };
            try
            {
                var startInfo = new ProcessStartInfo(browser.ExecutablePath, url)
                {
                    UseShellExecute = true,
                    WindowStyle     = ProcessWindowStyle.Minimized
                };
                Server.RequestComplete += logEventHandler;
                process = Process.Start(startInfo);
            }
            catch (Exception ex)
            {
                Server.RequestComplete -= logEventHandler;
                return(new RequestEventArgs(Guid.Empty, new LogInfo {
                    StatusCode = -1, Exception = ex.ToString()
                },
                                            new LogInfo()));
            }
            bool flag = waitHandle.WaitOne(timeout);

            try
            {
                if (!process.CloseMainWindow())
                {
                    process.Kill();
                }
            }
            catch
            {
            }
            return(flag ? result : new RequestEventArgs(Guid.Empty, new LogInfo {
                StatusCode = -2
            }, new LogInfo()));
        }
 internal virtual void OnRequestComplete(RequestEventArgs e)
 {
     EventHandler<RequestEventArgs> complete = RequestComplete;
     if (complete != null)
     {
         complete(null, e);
     }
 }
 internal virtual void OnRequestBegin(RequestEventArgs e)
 {
     EventHandler<RequestEventArgs> handler = RequestBegin;
     if (handler != null)
     {
         handler(null, e);
     }
 }
Exemple #8
0
 private void _server_RequestComplete(object sender, RequestEventArgs e)
 {
     var dummyForDebugging = 1;
 }
Exemple #9
0
 private void OnRequestBegin(object sender, RequestEventArgs e)
 {
     OnRequestBegin(e);
 }
Exemple #10
0
 private void OnRequestComplete(object sender, RequestEventArgs e)
 {
     OnRequestComplete(e);
 }
 private void OnRequestComplete(object sender, RequestEventArgs e)
 {
     OnRequestComplete(e);
 }
 private void OnRequestBegin(object sender, RequestEventArgs e)
 {
     OnRequestBegin(e);
 }
 protected virtual void OnRequestComplete(RequestEventArgs e)
 {
     EventHandler<RequestEventArgs> complete = RequestComplete;
     if (complete != null) complete(this, e);
 }
 protected virtual void OnRequestBegin(RequestEventArgs e)
 {
     EventHandler<RequestEventArgs> handler = RequestBegin;
     if (handler != null) handler(this, e);
 }