Add preliminary automated tests #1
No reviewers
Labels
No Label
No Milestone
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: 3wordchant/capsul-flask#1
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "tests"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
As discussed in #services:cyberia.club — automated tests could make it safer to contribute code, easier to review new code, and much easier to refactor, or upgrade Python dependencies.
To run tests:
capsulflask_test
python -m unittest
Architecture
I tried to make the absolute minimal changes to be able to override settings in tests – possible alternative approaches include accepting an argument to create_app() to define which env file to load, or adding conditional logic to create_app() to pre-load specific settings before running load_dotenv() – but allowing env vars to override dotenv vars seemed cleanest. (Thanks @forest for improving on this approach)
Creating test databases
One outstanding question is how to initialise/reinitialise the test database.
Currently, the tests rely on the existence of a capsulflask_test database on localhost, accessible by the postgres user with password dev.
I create this manually using:
docker exec -it d1702306f409 psql -U postgres createdb -O postgres capsulflask_test;
In between test runs, you can either drop and recreate that database, or manually clear data using:
docker exec -it d1702306f409 psql -U postgres capsulflask_test -c "DELETE FROM vms; DELETE FROM login_tokens; DELETE FROM ssh_public_keys; DELETE FROM api_tokens; DELETE FROM accounts;
Test coverage
This tests the "landing" (public) pages, login, capsul index and creation. I didn't add automated coverage reporting yet, unclear if that seems useful.
LGTM! Super nice to get some tests in.
FYI, I will note that Pytest is the de facto standard for testing which is often picked up instead of good 'ol nosetest. It has a plugin in https://pytest-flask.readthedocs.io/en/latest/ and there is a rich ecosystem of plugins in general in https://docs.pytest.org/en/latest/reference/plugin_list.html. For example, there is a plugin to help with setting up + wiping the database between tests: https://pypi.org/project/pytest-postgresql/.
Ha, I kept flip flopping between
unittest
andpytest
and ended up going withunittest
(via flask-testing) copypastad from a previous project.Do you think it's better to go with pytest straight from the start, if we're going to? i.e. is it worth merging this as-is or should we switch first?
You can get Pytest to run your Nosetests so I think you can just merge this as-is. See https://docs.pytest.org/en/6.2.x/nose.html for more.
0268e4c97d
to62c7355b4c
@forest do you think this is good to merge now? Or anything else we should improve about it? CI is on my mind, personally I think it would still be useful to have manual tests for the time being.
I would love to be able to fix the logging properly without resorting to wrapping it like i did. But I dunno when I will do that and IDK if it should be a blocker for merging this. its the only really big problem I see with merging it right now.
f553ab2c98
todb48cd49c1
db48cd49c1
to13b2c05476