Esempio n. 1
0
        public static void Example_InvalidResourcePath()
        {
            // Set a non-existant domain.  postman-echo.com exists but not the path /not/here
            string url = "postman-echo.com/not/here";;

            // To prevent Log from output messages to Console we catch them and tell Log to not output to console.
            Log.LogOutputDelegate = LogDelegate;
            Log.LogToConsole      = false;

            // Ensure Repository has been cleared - incase any examples have changed anything...
            Repository.ClearRepositoryAll();

            // Instantiate HTTPBased and set the domain and resoure path of the URL.
            HTTPBased httpRequest = new HTTPBased();

            httpRequest.Domain       = url.Split('/')[0];
            httpRequest.ResourcePath = "/" + url.Split('/')[1];

            // Setup the HTTP Header items.  Header should be well-formed so we use the HTTPBased.ItemList to set the items as that will be well-formed.
            // NOTE.  We have NOT set the Connection: close" and so
            HTTPBased.ItemList headerItems = new HTTPBased.ItemList();
            headerItems.Add("accept", "*/*");
            headerItems.Add("host", httpRequest.Domain);
            headerItems.Add("accept-encoding", "identity");
            headerItems.Add("connection", "close");
            httpRequest.SetHeaderStringFromItemList(headerItems);

            // Perform HTTP Post.  Use TryHttpPOST as we are expecting an error.  In a Test script, using the Try... would be preferential anyway incase a defect is touched and
            // the POST fails badly.  If an HTTP POST endpoint ouside the test domain is being used (IE. A Mock) then standard HttpPOST could be used.
            HTTPBased.ItemList response;
            bool result = httpRequest.TryHttpPOST(out response);

            OutputDetails("Example of an invalid resource path", result, httpRequest, response,
                          "We try to access a non-existant resource and so the HTTP server responds with a 404 error");
        }
Esempio n. 2
0
        public static void Example_BadlyFormedHTTPHeaderString()
        {
            // We use the Postman example website for this as the server is well setup for examples.
            string url = "postman-echo.com/post";

            // To prevent Log from output messages to Console we catch them and tell Log to not output to console.
            Log.LogOutputDelegate = LogDelegate;
            Log.LogToConsole      = false;

            // Ensure Repository has been cleared - incase any examples have changed anything...
            Repository.ClearRepositoryAll();

            // Instantiate HTTPBased and set the domain and resoure path of the URL.
            HTTPBased httpRequest = new HTTPBased();

            httpRequest.Domain       = url.Split('/')[0];
            httpRequest.ResourcePath = "/" + url.Split('/')[1];

            // Setup the HTTP Header items.  We use a string so that we can deliberatly make it badley formed.  Note the missing colon (:) between 'accept-encoding' and 'identity'.
            string httpHeader = $"accept: */*\r\nhost: {httpRequest.Domain}\r\naccept-encoding identity\r\nconnection: close\r\n";

            httpRequest.HeaderString = httpHeader;

            // Perform HTTP Post.  Use TryHttpPOST as we are expecting an error.  In a Test script, using the Try... would be preferential anyway incase a defect is touched and
            // the POST fails badly.  If an HTTP POST endpoint ouside the test domain is being used (IE. A Mock) then standard HttpPOST could be used.
            HTTPBased.ItemList response;
            bool result = httpRequest.TryHttpPOST(out response);

            OutputDetails("Example of a badly formed HTTP Header in an HTTP POST", result, httpRequest, response,
                          "There is a colon missing between the accept-encoding key and value",
                          "And so we see the request succeeds but the HTTP Response is a 400 (Bad Request)");
        }
Esempio n. 3
0
        public static void Example_RejectSSLCertificate()
        {
            // We use the Postman example website for this as the server is well setup for examples.
            string url = "postman-echo.com/post";

            // To prevent Log from output messages to Console we catch them and tell Log to not output to console.
            Log.LogOutputDelegate = LogDelegate;
            Log.LogToConsole      = false;

            // Ensure Repository has been cleared - incase any examples have changed anything...
            Repository.ClearRepositoryAll();

            // Tell NonGUI test library to reject the Server Certificate in an SSL (HTTPS) call
            Repository.ItemLocal["TeamControlium.NonGUI", "SSL_AcceptServerCertificate"] = false;  // Set to true to prove that the example would work if true.

            // Instantiate HTTPBased and set the domain and resoure path of the URL.
            HTTPBased httpRequest = new HTTPBased();

            httpRequest.Domain       = url.Split('/')[0];
            httpRequest.ResourcePath = "/" + url.Split('/')[1];

            // Setup the HTTP Header items.  Header should be well-formed so we use the HTTPBased.ItemList to set the items as that will be well-formed.
            // NOTE.  We have NOT set the Connection: close" and so
            HTTPBased.ItemList headerItems = new HTTPBased.ItemList();
            headerItems.Add("accept", "*/*");
            headerItems.Add("host", httpRequest.Domain);
            headerItems.Add("accept-encoding", "identity");
            headerItems.Add("connection", "close");
            httpRequest.SetHeaderStringFromItemList(headerItems);

            httpRequest.UseSSL = true;

            // Perform HTTP Post.  Use TryHttpPOST as we are expecting an error.  In a Test script, using the Try... would be preferential anyway incase a defect is touched and
            // the POST fails badly.  If an HTTP POST endpoint ouside the test domain is being used (IE. A Mock) then standard HttpPOST could be used.
            HTTPBased.ItemList response;
            bool result = httpRequest.TryHttpPOST(out response);

            OutputDetails("Example of forcing an HTTPS request to fail due to rejected certificate", result, httpRequest, response,
                          "We have set UseSSL to true (which tells NonGUI to use HTTPS rather tha HTTP.  But we have also set the",
                          "repository item SSL_AcceptServerCertificate (Is category TeamControlium.NonGUI settings) to false. This",
                          "forces NonGUI to reject the server certificate and so causes the exception.");
        }
Esempio n. 4
0
        public static void Example_RejectSSLCertificateUsingCustomDelegate()
        {
            // We use the Postman example website for this as the server is well setup for examples.
            string url = "postman-echo.com/post";

            // To prevent Log from output messages to Console we catch them and tell Log to not output to console.
            Log.LogOutputDelegate = LogDelegate;
            Log.LogToConsole      = false;

            // Ensure Repository has been cleared - incase any examples have changed anything...
            Repository.ClearRepositoryAll();

            // Instantiate HTTPBased and set the domain and resoure path of the URL.
            HTTPBased httpRequest = new HTTPBased();

            httpRequest.Domain       = url.Split('/')[0];
            httpRequest.ResourcePath = "/" + url.Split('/')[1];

            // Setup the HTTP Header items.  Header should be well-formed so we use the HTTPBased.ItemList to set the items as that will be well-formed.
            // NOTE.  We have NOT set the Connection: close" and so
            HTTPBased.ItemList headerItems = new HTTPBased.ItemList();
            headerItems.Add("accept", "*/*");
            headerItems.Add("host", httpRequest.Domain);
            headerItems.Add("accept-encoding", "identity");
            headerItems.Add("connection", "close");
            httpRequest.SetHeaderStringFromItemList(headerItems);

            httpRequest.UseSSL = true;
            httpRequest.CertificateValidationCallback = RejectHTTPSCertificate; // Comment out this line to see that the Server certificate gets accepted.

            // Perform HTTP Post.  Use TryHttpPOST as we are expecting an error.  In a Test script, using the Try... would be preferential anyway incase a defect is touched and
            // the POST fails badly.  If an HTTP POST endpoint ouside the test domain is being used (IE. A Mock) then standard HttpPOST could be used.
            HTTPBased.ItemList response;
            bool result = httpRequest.TryHttpPOST(out response);

            OutputDetails("Example of using the SSL Certificate validation override to reject an SSL certificate", result, httpRequest, response,
                          "We have set UseSSL to true (which tells NonGUI to use HTTPS rather tha HTTP) and we have set",
                          "CertificateValidationCallback to our own certificate validation method (RejectHTTPSCertificate) which",
                          "forces the certificate to be rejected; hence the exception.  In testing, we could use the callback",
                          "to actually inspect and verify the certificate as part of testing if we so wished.");
        }
Esempio n. 5
0
        public static void Example_BadlyFormedHTTPHeaderBySetting()
        {
            // We use the Postman example website for this as the server is well setup for examples.
            string url = "postman-echo.com/post";

            // To prevent Log from output messages to Console we catch them and tell Log to not output to console.
            Log.LogOutputDelegate = LogDelegate;
            Log.LogToConsole      = false;

            // Ensure Repository has been cleared - incase any examples have changed anything...
            Repository.ClearRepositoryAll();

            // Tell NonGUI test library to use a ';' between HTTP Header item keys and values
            Repository.ItemLocal["TeamControlium.NonGUI", "HTTPHeader_ItemDelimiter"] = ";";

            // Instantiate HTTPBased and set the domain and resoure path of the URL.
            HTTPBased httpRequest = new HTTPBased();

            httpRequest.Domain       = url.Split('/')[0];
            httpRequest.ResourcePath = "/" + url.Split('/')[1];

            // Setup the HTTP Header items.  Header should be well-formed so we use the HTTPBased.ItemList to set the items as that will be well-formed.
            // NOTE.  We have left out the Host item.  This is mandatory in HTTP and so we will get a fail.
            HTTPBased.ItemList headerItems = new HTTPBased.ItemList();
            headerItems.Add("accept", "*/*");
            headerItems.Add("host", httpRequest.Domain);
            headerItems.Add("accept-encoding", "identity");
            headerItems.Add("connection", "close");
            httpRequest.SetHeaderStringFromItemList(headerItems);

            // Perform HTTP Post.  Use TryHttpPOST as we are expecting an error.  In a Test script, using the Try... would be preferential anyway incase a defect is touched and
            // the POST fails badly.  If an HTTP POST endpoint ouside the test domain is being used (IE. A Mock) then standard HttpPOST could be used.
            HTTPBased.ItemList response;
            bool result = httpRequest.TryHttpPOST(out response);

            OutputDetails("Example of a badly formed HTTP Header in an HTTP POST", result, httpRequest, response,
                          "We set local Repository item HTTPHeader_ItemDelimiter (In the TeamControlium.NonGUI",
                          "settings category) to a semi-colon (;). And so as the header is now malformed we see",
                          "the request succeeds but the HTTP Response is a 400 (Bad Request)");
        }
Esempio n. 6
0
        public static void Example_ConnectionTimeout()
        {
            // We use the Postman example website for this as the server is well setup for examples.
            string url = "postman-echo.com/post";

            // To prevent Log from output messages to Console we catch them and tell Log to not output to console.
            Log.LogOutputDelegate = LogDelegate;
            Log.LogToConsole      = false;

            // Ensure Repository has been cleared - incase any examples have changed anything...
            Repository.ClearRepositoryAll();

            // Instantiate HTTPBased and set the domain and resoure path of the URL.
            HTTPBased httpRequest = new HTTPBased();

            httpRequest.Domain       = url.Split('/')[0];
            httpRequest.ResourcePath = "/" + url.Split('/')[1];

            // Setup the HTTP Header items.  Header should be well-formed so we use the HTTPBased.ItemList to set the items as that will be well-formed.
            // NOTE.  We have NOT set the Connection: close" and so
            HTTPBased.ItemList headerItems = new HTTPBased.ItemList();
            headerItems.Add("accept", "*/*");
            headerItems.Add("host", httpRequest.Domain);
            headerItems.Add("accept-encoding", "identity");
            //headerItems.Add("connection", "close");              // Unconnect this line to see the POST succeed
            httpRequest.SetHeaderStringFromItemList(headerItems);

            // Perform HTTP Post.  Use TryHttpPOST as we are expecting an error.  In a Test script, using the Try... would be preferential anyway incase a defect is touched and
            // the POST fails badly.  If an HTTP POST endpoint ouside the test domain is being used (IE. A Mock) then standard HttpPOST could be used.
            HTTPBased.ItemList response;
            bool result = httpRequest.TryHttpPOST(out response);

            OutputDetails("Example of a Connection Timeout occuring on an HTTP Post", result, httpRequest, response,
                          "We have not added a 'Connection: close' header item and so HTTP default is 'keep-alive.",
                          "As HTTPBased does not handle Async connections a timeout occures");
        }