summaryrefslogtreecommitdiffstats
path: root/mirrors/tests
AgeCommit message (Collapse)AuthorFilesLines
2019-02-21mirrors: tests: add exception handling testsJelle van der Waa1-0/+55
Include more tests for exception handling cases, refactor this later using pytest fixture's so there is no need for massive code duplication.
2019-02-18mirrors: replace self-written floatvalue with floatformatJelle van der Waa1-8/+1
In 2013 floatformat was very slow in the mirror status page, these days floatformat is not that much slower.
2019-01-28switch to python3's buildin mockJelle van der Waa2-2/+2
Instead of using a python module use the build-in mock and remove the module from requirements.txt
2019-01-21mirrors: tests: add exception test casesJelle van der Waa1-0/+28
Add test cases for 404 and 404 variant url exceptions.
2019-01-21mirrors: tests: rename duplicate functionJelle van der Waa1-1/+1
Two functions where called test_valid, rename one.
2019-01-21mirrors: Update mirrorcheck to Python 3Jelle van der Waa1-6/+6
urllib2 has been renamed to urllib and the module layout is changed, update the code to reflect these changes in Python 3
2019-01-21mirrors.tests: convert response.content to strJelle van der Waa2-2/+2
2019-01-21mirrors.tests: convert response.content to strJelle van der Waa1-4/+4
2018-11-30mirrors: add CheckLocation checkJelle van der Waa1-1/+15
2018-09-08Fix caching issue in testJelle van der Waa1-12/+7
2018-08-12mirrors: Add a test for generating mirrorlist with statusJelle van der Waa1-0/+4
2018-07-22mirrors: add test for mirrorresolv codeJelle van der Waa1-0/+44
2018-07-22Implement cleaning up older log entries in mirrorcheckJelle van der Waa2-1/+59
MirrorLog entries are not cleaned up by default and will clog the database. The django settings now defines a retention period in days for how long to keep mirror logs, on every mirrorcheck run older logs will be removed from the database.
2018-06-17test: use response.json()Jelle van der Waa3-13/+7
Instead of importing json and loading the response.content using json.loads use Django's response.json() method.
2018-05-07Merge pull request #105 from kyrias/mirror-list-tierjelle van der Waa1-0/+10
mirrors: Allow listing mirrors in only a specific tier
2018-05-05mirrors: Add basic status code test for /mirrorlist/tierJohannes Löthberg1-0/+10
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
2018-04-22mirrorlist: Complete /all/https success test caseGenki Sky1-6/+10
Also, remove test_generate(), as it was testing no more than test_mirrorlist_filter() already was. Signed-off-by: Genki Sky <sky@genki.is>
2018-04-22mirrorlist: Accept GET parameters as filtersGenki Sky2-7/+20
This fixes a regression. Originally request.REQUEST was used, but django 1.9 removed this. In its stead, request.POST was used unconditionally. However, this results in any GET request returning *all* mirrors, rather than filtering as requested in the parameters. This patch uses POST or GET based on the request method. This fixes the behavior of the [mirror-filter-form], and any scripts depending on the generated URL format. Accordingly, make test_mirrorlist_filter() test both the success and failure cases, rather than just success. [mirror-filter-form]: https://www.archlinux.org/mirrorlist/ Signed-off-by: Genki Sky <sky@genki.is>
2018-03-26mirrors: Add tests for mirror detail urlsJelle van der Waa1-0/+39
Add tests for mirror detail pages, the json url of the mirror detail page and the mirror's url detail page.
2018-03-26mirrors: remove duplicate testJelle van der Waa1-4/+0
2018-03-26mirrors: Test mirror status with tier specifiedJelle van der Waa1-0/+20
2018-01-29More code refactoring / tests (#79)jelle van der Waa1-1/+6
* main: move tests to main/tests Move the templatetags tests to main/tests/test_templatetags. * main: Add test for templatetags country Create a test for the templatetag country_flag. * main: remove duplicate floatvalue floatvalue is only used in the mirrors templates and the same exact function exists in the mirror_status templatetags. * main: Remove duplicate hours filter The hours filter is also defined in the mirror_status and only used in mirrors. * main: move percentage filter to mirrors Move the percentage filter to the only user of it and add a test for basic use cases. * main: remove duplicate duration implementation The duration templatetag filter is also defined in mirror_status.py * templates: remove unrequired import flags * main: Add missing testcase for country_flag Add the None test case, so that the function is fully covered. * todolists: create tests for Todolist model Add basic tests for the Todolist model
2018-01-22Mirror tests (#78)release_2018-01-22jelle van der Waa7-0/+242
* mirrors: Move tests to mirrors/tests Move the tests to separate files in mirrors/tests and expand the model tests with tests for the Mirror class. * Add CheckLocation test * mirrors: Add tests for template filters Include tests for the filters used in the mirrors views. * devel: Add tests for template filter in_group Include a test for a simple case of the in_group filter.