summaryrefslogtreecommitdiff
path: root/testenv
diff options
context:
space:
mode:
authorklemens <ka7@github.com>2017-04-01 17:14:29 +0200
committerTim Rühsen <tim.ruehsen@gmx.de>2017-04-01 19:38:09 +0200
commitf381831d889a0a2f3f28f5bec2dbe66f555e3a33 (patch)
tree0db36975607f3a3be86ec5806c4bd6014ac325a3 /testenv
parent02d40a4676459fe452e57f9a2dae1c6ab67a9917 (diff)
downloadwget-f381831d889a0a2f3f28f5bec2dbe66f555e3a33.tar.gz
Fix typos in comments
Diffstat (limited to 'testenv')
-rw-r--r--testenv/README6
-rwxr-xr-xtestenv/Test-auth-basic.py2
-rwxr-xr-xtestenv/Test-auth-both.py2
-rw-r--r--testenv/server/http/http_server.py6
4 files changed, 8 insertions, 8 deletions
diff --git a/testenv/README b/testenv/README
index 8ca80f23..6580bc99 100644
--- a/testenv/README
+++ b/testenv/README
@@ -4,7 +4,7 @@ Install Instructions:
================================================================================
This Test Suite exploits the Parallel Test Harness available in GNU Autotools.
-Since it uses features from a relatively recent verion of Autotools, the minimum
+Since it uses features from a relatively recent version of Autotools, the minimum
required version as been bumped up to 1.11.
Run the './configure' command to generate the Makefile and then run 'make check'
to execute the Test Suite. Use the '-j n' option with 'make check' to execute
@@ -122,7 +122,7 @@ This would be very helpful to future contributors.
Each File in the Test must be represented as a WgetFile object. The WgetFile
Class has the following prototype:
WgetFile (str name, str contents, str timestamp, dict rules)
-None except name is a mandatory paramter, one may pass only those parameters
+None except name is a mandatory parameter, one may pass only those parameters
that are required by the File object.
The timestamp string should be in a format: "YYYY-MM-DD HH:MM:SS" in UTC zone.
@@ -288,7 +288,7 @@ Some amount of work still remains to be done.
* Support parallel-wget branch
* Support to spawn multiple servers is already in place. Need to handle
multiple requests to a server simultaneously. Use THreading MixIn.
- * SSL Tests. Use xyne's HTTPS server implemention
+ * SSL Tests. Use xyne's HTTPS server implementation
* Complete support for FTP Tests
* IRI Support. This shouldn't require much effort
diff --git a/testenv/Test-auth-basic.py b/testenv/Test-auth-basic.py
index b94faaa6..eaead884 100755
--- a/testenv/Test-auth-basic.py
+++ b/testenv/Test-auth-basic.py
@@ -5,7 +5,7 @@ from misc.wget_file import WgetFile
"""
This test ensures Wget's Basic Authorization Negotiation.
- Also, we ensure that Wget saves the host after a successfull auth and
+ Also, we ensure that Wget saves the host after a successful auth and
doesn't wait for a challenge the second time.
"""
############# File Definitions ###############################################
diff --git a/testenv/Test-auth-both.py b/testenv/Test-auth-both.py
index 5913a1ab..6e5d7123 100755
--- a/testenv/Test-auth-both.py
+++ b/testenv/Test-auth-both.py
@@ -5,7 +5,7 @@ from misc.wget_file import WgetFile
"""
This test ensures Wget's Basic Authorization Negotiation.
- Also, we ensure that Wget saves the host after a successfull auth and
+ Also, we ensure that Wget saves the host after a successful auth and
doesn't wait for a challenge the second time.
"""
############# File Definitions ###############################################
diff --git a/testenv/server/http/http_server.py b/testenv/server/http/http_server.py
index b222df07..ffc80ed3 100644
--- a/testenv/server/http/http_server.py
+++ b/testenv/server/http/http_server.py
@@ -63,7 +63,7 @@ class _Handler(BaseHTTPRequestHandler):
request. For each HTTP Request Command that the server should be capable of
responding to, there must exist a do_REQUESTNAME() method which details the
steps in which such requests should be processed. The rest of the methods
- in this class are auxilliary methods created to help in processing certain
+ in this class are auxiliary methods created to help in processing certain
requests. """
def get_rule_list(self, name):
@@ -98,7 +98,7 @@ class _Handler(BaseHTTPRequestHandler):
resource. Hence, we call the handle for processing PUT requests if the
resource requested does not already exist.
- Currently, when the server recieves a POST request for a resource, we
+ Currently, when the server receives a POST request for a resource, we
simply append the body data to the existing file and return the new
file to the client. If the file does not exist, a new file is created
using the contents of the request body. """
@@ -377,7 +377,7 @@ class _Handler(BaseHTTPRequestHandler):
def send_head(self, method):
""" Common code for GET and HEAD Commands.
- This method is overriden to use the fileSys dict.
+ This method is overridden to use the fileSys dict.
The method variable contains whether this was a HEAD or a GET Request.
According to RFC 2616, the server should not differentiate between