- From: Mark Nottingham <mnot@mnot.net>
- Date: Tue, 9 Apr 2019 10:13:15 +1000
- To: Sawood Alam <ibnesayeed@gmail.com>
- Cc: "ietf-http-wg@w3.org Group" <ietf-http-wg@w3.org>
Hi Sawood, That sounds interesting; have you published them yet? If so, I don't see any harm in adding them. For what it's worth, the approach you outline reminds me of how cache-tests.fyi works; it defines test cases in JavaScript data structures, and you can run them using a NodeJS CLI or in a browser. Also, part of the problem of server testing is that many behaviours are dependent upon a particular resource, because of how it interfaces with the server (filesystem vs. CGI, for example) and also because of resource-specific handling. REDbot tries to address that by running checks against individual URLs, but I think there's also space for a tool that can be used to check how "back-ends" such as filesystems, CGI, FastCGI, as well as Web frameworks (e.g., Drupal, Wordpress) handle various aspects of the protocol. Cheers, > On 9 Apr 2019, at 10:03 am, Sawood Alam <ibnesayeed@gmail.com> wrote: > > Hi, > > Last year I wrote a web server tester library along with a handful of custom test suites to automate testing/grading of students' assignments of the Web Server Design course. While I think it is relevant here, I would wait for some feedback before I decide to add it to the wiki. Here is how it works: > > First, write a template file (say, "malformed-header.http") for the request data (which can be a single HTTP message or multiple messages put together for pipeline requests) as following: > > GET /foo HTTP/1.1 > Host: <HOSTPORT> > Header with missing colon > > Then write a test method in a test suite class, inherited from the base tester class, as following: > > @make_request("malformed-header.http") > def test_bad_request_header(self, report): > """Test whether the server recognizes malformed headers""" > self.check_status_is(report, 400) > > From there, the test can be run against any HTTP server using the included CLI or Web UI. > > I am planning to improve it further when I will offer this course in the Fall 2019. > > Best, > > -- > Sawood Alam > Department of Computer Science > Old Dominion University > Norfolk VA 23529 > > > > On Mon, Apr 8, 2019 at 7:43 PM Mark Nottingham <mnot@mnot.net> wrote: > Hi everyone, > > We've started collecting resources that might be helpful to test HTTP implementations here: > https://github.com/httpwg/wiki/wiki/HTTP-Testing-Resources > > Thoughts / additions? > > Cheers, > > -- > Mark Nottingham https://www.mnot.net/ > > -- Mark Nottingham https://www.mnot.net/
Received on Tuesday, 9 April 2019 00:13:43 UTC