summaryrefslogtreecommitdiff
path: root/test/interactive-helper
AgeCommit message (Collapse)Author
2013-07-26request absolute URIs from proxies again (0.9.9.3 regession)David Kalnischkies
Commit 2b9c9b7f28b18f6ae3e422020e8934872b06c9f3 not only removes keep-alive, but also changes the request URI send to proxies which are required to be absolute URIs rather than the usual absolute paths. Closes: 717891
2013-06-24simple fork and pidfile aptwebserverDavid Kalnischkies
Forking only after being ready to accept clients avoids running races with the tests which sometimes failed on the first 'apt-get update' (or similar) with the previous background-start and hope for the best… The commit fixes also some oversight output-order changes in regards to Description-md5 and (I-M-S) race conditions in various tests. Git-Dch: Ignore
2013-06-20trigger NODATA error for invalid InRelease filesDavid Kalnischkies
With the selfgrown splitting we got the problem of not recovering from networks which just reply with invalid data like those sending us login pages to authenticate with the network (e.g. hotels) back. The good thing about the InRelease file is that we know that it must be clearsigned (a Release file might or might not have a detached sig) so if we get a file but are unable to split it something is seriously wrong, so there is not much point in trying further. The Acquire system already looks out for a NODATA error from gpgv, so this adds a new error message sent to the acquire system in case the splitting we do now ourselves failed including this magic word. Closes: #712486
2013-06-20simple URI rewrite rules config for webserverDavid Kalnischkies
we have a test which required traditionally lighttpd to be executed as it requires a webserver supporting some kind of URI rewriting. Now with some lines of code our own webserver can do this and the testcase can be enabled by default. This test hinted at the bug fixed in the previous commit, so having more tests which can easily be run is a good thing. Git-Dch: Ignore
2013-06-20add directory listing to the webserverDavid Kalnischkies
Git-Dch: Ignore
2013-06-20add a simple webserver for our testcasesDavid Kalnischkies
APT needs to acquire data in a secure fashion over an inherently unsecure way, known as the internet, while communicating with unreliable partners, known as webservers and proxies. For your integration tests we so far relied on 'normal' webservers, but all of them have certain quirks and none is able to provide us with all quirks which can be observed in the wild and we therefore have to test with, so this webserver isn't trying to be fast, secure or feature complete, but to provide all the quirks we need in a consistent way. This webserver also makes the APT project self-contained, as it is now able to generate, serve as well as acquire package indexes. ;) Git-Dch: Ignore
2013-06-09stop building l10n if strings are unchangedDavid Kalnischkies
The buildsystem tried to build l10n for test applications which never produced the output it expected causing it to try building it all the time.
2012-07-12add (partial) partial request support for the webserverDavid Kalnischkies
2012-07-11add option to send Content-Type based on file extensionDavid Kalnischkies
2012-07-11make the server a little more robust against write errors (e.g. broken pipe)David Kalnischkies
2012-07-11rework parsing of the first request-line to be more robustDavid Kalnischkies
2012-07-11add simple url rewriting to the webserverDavid Kalnischkies
2012-07-11ensure that directories are accessed with a slash at the end of the urlDavid Kalnischkies
2012-07-10http get requests need to be dequotedDavid Kalnischkies
2012-07-10include our usual config.h in the webserverDavid Kalnischkies
2012-07-10implement directory listing in your webserverDavid Kalnischkies
2012-07-10reformat the aptwebserver code to look more like the rest of APTDavid Kalnischkies
2012-07-10cleanup, thanks to donkult for his feedbackMichael Vogt
2012-07-10always send content-length via the new addDataHeaders() to ensure w3m/curl ↵Michael Vogt
are happy too for 404 pages and to comply with the http 1.1 spec
2012-07-10add failing regression test for bug #346386Michael Vogt
2012-07-10add commandline, add configurable port, add --simulate-paywall to simulate a ↵Michael Vogt
broken webserver that intercepts connections and returns nonsese
2012-07-09start implementing an extremely simple webserver for testing APTDavid Kalnischkies
2012-03-22* apt-inst/database.{cc,h}, apt-inst/deb/dpkgdb.{cc,h}:David Kalnischkies
- drop instead of fix as it is only needed if you want to reimplement dpkg and comes straight from the beginning of last decade (Closes: #663372) * apt-inst/deb/debfile.cc: - {Extract,Merge}Control() is another instance of "lets reimplement dpkg" so shot of this code before someone ends up using this…
2012-03-20for these helpers we don't need too much checks,David Kalnischkies
but no warnings from gcc helps
2011-09-19use forward declaration in headers if possible instead of includesDavid Kalnischkies
2011-09-19do not pollute namespace in the headers with using (Closes: #500198)David Kalnischkies
2011-08-17fix 'comparison between signed and unsigned integer expressions' warningDavid Kalnischkies
in the udevcdrom testcase
2011-08-17move the networkless test to the interactive helpers as it needsDavid Kalnischkies
root rights for operation (ifup/down, iptables) so it is better run under supervision
2011-08-17move the interactive helper to a subdirectory of testDavid Kalnischkies