<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/wget.git/testenv/Test-auth-basic.py, branch master</title>
<subtitle>git.savannah.gnu.org: git/wget.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/wget.git/'/>
<entry>
<title>Fix typos found by codespell</title>
<updated>2020-02-20T15:21:33+00:00</updated>
<author>
<name>Tim Rühsen</name>
<email>tim.ruehsen@gmx.de</email>
</author>
<published>2020-02-20T15:21:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/wget.git/commit/?id=b53c52c4c11220760fffb600a0791814d5aed7de'/>
<id>b53c52c4c11220760fffb600a0791814d5aed7de</id>
<content type='text'>
*/*: Fix typos

Thanks to https://fossies.org/features.html#codespell

Reported-by: Jens Schleusener
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
*/*: Fix typos

Thanks to https://fossies.org/features.html#codespell

Reported-by: Jens Schleusener
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typos in comments</title>
<updated>2017-04-01T17:38:09+00:00</updated>
<author>
<name>klemens</name>
<email>ka7@github.com</email>
</author>
<published>2017-04-01T15:14:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/wget.git/commit/?id=f381831d889a0a2f3f28f5bec2dbe66f555e3a33'/>
<id>f381831d889a0a2f3f28f5bec2dbe66f555e3a33</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Set X flags for python tests</title>
<updated>2016-04-15T19:36:51+00:00</updated>
<author>
<name>Tim Rühsen</name>
<email>tim.ruehsen@gmx.de</email>
</author>
<published>2016-04-15T19:36:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/wget.git/commit/?id=528770ca8b604313d31c9ed3d934b2816e74b7ae'/>
<id>528770ca8b604313d31c9ed3d934b2816e74b7ae</id>
<content type='text'>
* testenv/*.py: Set eXecute flags

Regression from commit 926e42d4678689195a0bbed210c6d027db7cc390
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* testenv/*.py: Set eXecute flags

Regression from commit 926e42d4678689195a0bbed210c6d027db7cc390
</pre>
</div>
</content>
</entry>
<entry>
<title>Use test file name for temp working directory name</title>
<updated>2016-04-11T13:35:05+00:00</updated>
<author>
<name>Tim Rühsen</name>
<email>tim.ruehsen@gmx.de</email>
</author>
<published>2016-04-08T14:31:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/wget.git/commit/?id=926e42d4678689195a0bbed210c6d027db7cc390'/>
<id>926e42d4678689195a0bbed210c6d027db7cc390</id>
<content type='text'>
* testenv/test/base_test.py (__init__): Use test file name for name,
  remove 'name' parameter
* testenv/test/http_test.py (__init__): Remove 'name' parameter
* testenv/*.py: Remove TEST_NAME

Using a fixed string (TEST_NAME) to build the working directory
for testing caused random failures (or successes) when tests
share the same TEST_NAME value. Not easy to find without digging
into the python test suite code.
We now use the test file name, which is unique within the test
environment.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* testenv/test/base_test.py (__init__): Use test file name for name,
  remove 'name' parameter
* testenv/test/http_test.py (__init__): Remove 'name' parameter
* testenv/*.py: Remove TEST_NAME

Using a fixed string (TEST_NAME) to build the working directory
for testing caused random failures (or successes) when tests
share the same TEST_NAME value. Not easy to find without digging
into the python test suite code.
We now use the test file name, which is unique within the test
environment.
</pre>
</div>
</content>
</entry>
<entry>
<title>Group common switches in test suite together</title>
<updated>2014-08-04T14:21:35+00:00</updated>
<author>
<name>Darshit Shah</name>
<email>darnir@gmail.com</email>
</author>
<published>2014-07-26T18:15:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/wget.git/commit/?id=03f8babefe4372acb2580873a637d51bc2086a2b'/>
<id>03f8babefe4372acb2580873a637d51bc2086a2b</id>
<content type='text'>
Some command line switches are passed to Wget unconditionally. These
switches should exist in a single place instead of being redundantly
defined in each test file. We add the following two switches by default
here:
1. --debug: This causes wget to be most verbose and output a lot of
   debugging information. Hence, if a test fails, the test log should
   provide valuable information.
2. --no-config: Users may have their own wgetrc files on the system.
   However, for the tests, we want Wget to run with vanilla settings.
   Hence, disbale loading any config files.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Some command line switches are passed to Wget unconditionally. These
switches should exist in a single place instead of being redundantly
defined in each test file. We add the following two switches by default
here:
1. --debug: This causes wget to be most verbose and output a lot of
   debugging information. Hence, if a test fails, the test log should
   provide valuable information.
2. --no-config: Users may have their own wgetrc files on the system.
   However, for the tests, we want Wget to run with vanilla settings.
   Hence, disbale loading any config files.
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor the Python based test suite</title>
<updated>2014-07-24T11:21:58+00:00</updated>
<author>
<name>Zihang Chen</name>
<email>chsc4698@gmail.com</email>
</author>
<published>2014-07-24T11:16:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/wget.git/commit/?id=8b83306d5425a1c1e3b498d03e5a2d3c201c38fe'/>
<id>8b83306d5425a1c1e3b498d03e5a2d3c201c38fe</id>
<content type='text'>
This is a squashed commit of the following from parallel-wget:
ecd6977 Refactor mainly the test cases classes
d26c8eb Create package test for test case classes
507383d Move server classes to package server.protocol
195393b Create package conf where rules and hooks are put
42e482a Create package exc and move TestFailed to exc
82f44f3 Fix a typo in Test-Proto.py
31e5f33 From WgetTest.py move WgetFile to misc
422171d Create package misc, move ColourTerm.py to misc
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a squashed commit of the following from parallel-wget:
ecd6977 Refactor mainly the test cases classes
d26c8eb Create package test for test case classes
507383d Move server classes to package server.protocol
195393b Create package conf where rules and hooks are put
42e482a Create package exc and move TestFailed to exc
82f44f3 Fix a typo in Test-Proto.py
31e5f33 From WgetTest.py move WgetFile to misc
422171d Create package misc, move ColourTerm.py to misc
</pre>
</div>
</content>
</entry>
<entry>
<title>Introducing Python based Test Environment</title>
<updated>2014-07-24T11:21:58+00:00</updated>
<author>
<name>Darshit Shah</name>
<email>darnir@gmail.com</email>
</author>
<published>2014-07-24T10:55:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/wget.git/commit/?id=7cbe8141d1838fd55f5dedab41f126d256d02e02'/>
<id>7cbe8141d1838fd55f5dedab41f126d256d02e02</id>
<content type='text'>
Squashed Commit, of the following commits:

7743384 Update documentation to reflect changes in code
b703633 Add feature that allows to ensure that Wget correctly crawls the website in recursive mode
0758f47 Add new test for recursive spider mode
43bb61b Smartly guess content type header
d4d0e63 Support substring replace in File Contents too
f578500 Compatibility fix with multiple servers
8b1a9b6 Extend Functionality to support spawning multiple servers
e84192a Use the provided calls to shutdown server instead of rewriting it
99659f3 Improve Documentation
cb94e52 Slight code cleanup. Remove unused code
886ac1a Shift to new Threading Model from Multiprocessing model
e74c2ec Add new test for POST Requests
48644f1 Print diff when file contents don't match
b6f9efe Add tests for Cookie support
4c9e6b4 Document pending work
e13bc90 Add new test to ensure Content Disposition and Auth work together
60d1f4d Add new Test for Continue command
738b299 Add test, Test-Head
9b9d16b Edit non-unique TEST_NAME variable
ae958db Minor optimizations to the way Server Rules are executed
50b4f0c The rules need not be a defaultdict.
dccc154 Introducing Python based Test Environment
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Squashed Commit, of the following commits:

7743384 Update documentation to reflect changes in code
b703633 Add feature that allows to ensure that Wget correctly crawls the website in recursive mode
0758f47 Add new test for recursive spider mode
43bb61b Smartly guess content type header
d4d0e63 Support substring replace in File Contents too
f578500 Compatibility fix with multiple servers
8b1a9b6 Extend Functionality to support spawning multiple servers
e84192a Use the provided calls to shutdown server instead of rewriting it
99659f3 Improve Documentation
cb94e52 Slight code cleanup. Remove unused code
886ac1a Shift to new Threading Model from Multiprocessing model
e74c2ec Add new test for POST Requests
48644f1 Print diff when file contents don't match
b6f9efe Add tests for Cookie support
4c9e6b4 Document pending work
e13bc90 Add new test to ensure Content Disposition and Auth work together
60d1f4d Add new Test for Continue command
738b299 Add test, Test-Head
9b9d16b Edit non-unique TEST_NAME variable
ae958db Minor optimizations to the way Server Rules are executed
50b4f0c The rules need not be a defaultdict.
dccc154 Introducing Python based Test Environment
</pre>
</div>
</content>
</entry>
</feed>
