MySQL process and client fixtures for pytest
Project description
pytest-mysql
Package status
What is this?
This is a pytest plugin, that enables you to test your code that relies on a running MySQL Database. It allows you to specify fixtures for MySQL process and client.
How to use
Plugin contains two fixtures
mysql - it’s a client fixture that has functional scope. After each test drops test database from MySQL ensuring repeatability.
mysql_proc - session scoped fixture, that starts MySQL instance at it’s first use and stops at the end of the tests.
Simply include one of these fixtures into your tests fixture list.
You can also create additional mysql client and process fixtures if you’d need to:
from pytest_mysql import factories
mysql_my_proc = factories.mysql_proc(
port=None, logsdir='/tmp')
mysql_my = factories.mysql('mysql_my_proc')
Configuration
You can define your settings in three ways, it’s fixture factory argument, command line option and pytest.ini configuration option. You can pick which you prefer, but remember that these settings are handled in the following order:
Fixture factory argument
Command line option
Configuration option in your pytest.ini file
MySQL option |
Fixture factory argument |
Command line option |
pytest.ini option |
Default |
---|---|---|---|---|
Path to executable |
mysqld_exec |
–mysql-mysqld |
mysql_mysqld |
mysqld |
Path to safe executable |
mysqld_safe |
–mysql-mysqld-safe |
mysql_mysqld_safe |
mysqld_safe |
Path to mysql_install_db for legacy installations |
install_db |
–mysql-install-db |
mysql_install_db |
mysql_install_db |
Path to Admin executable |
admin_executable |
–mysql-admin |
mysql_admin |
mysqladmin |
host |
host |
–mysql-host |
mysql_host |
localhost |
port |
port |
–mysql-port |
mysql_port |
random |
MySQL user to work with |
user |
–mysql-user |
mysql_user |
root |
User’s password |
passwd |
–mysql-passwd |
mysql_passwd |
|
Test database name |
dbname |
–mysql-dbname |
mysqldbname |
test |
Starting parameters |
params |
–mysql-params |
mysql_params |
|
Log directory location |
logsdir |
–mysql-logsdir |
mysql_logsdir |
$TMPDIR |
Example usage:
pass it as an argument in your own fixture
mysql_proc = factories.mysql_proc( port=8888)
use --mysql-port command line option when you run your tests
py.test tests --mysql-port=8888
specify your port as mysql_port in your pytest.ini file.
To do so, put a line like the following under the [pytest] section of your pytest.ini:
[pytest] mysql_port = 8888
Running on Docker/as root
Unfortunately, running MySQL as root (thus by default on docker) is not possible. MySQL (and MariaDB as well) will not allow it.
USER nobody
This line should switch your docker process to run on user nobody. See this comment for example
Package resources
Bug tracker: https://github.com/ClearcodeHQ/pytest-mysql/issues
CHANGELOG
2.0.3
[enhancement] Do not assume that mysql executables are in /usr/bin
2.0.2
[enhancement] Preemptively read data after each test in mysql client fixture. This will make test run if the test itself forgot to fetch queried data.
[enhnacement] Require at least mirakuru 2.3.0 - forced by changed stop method parameters change
2.0.1
[fix] Improved mysql version detection on osx
[build] extracted xdist into separate stage on travis
[build] have deployemt as separate stage on travis
2.0.0
[Enhancements] Add support for MySQL 5.7.6 and up with new configuration options. Legacy configuration supports older MySQL and MariaDB databases.
[breaking] mysql_exec ini option replaced with mysql_mysqld_safe
[breaking] –mysql-exec cmd option replaced with –mysql-mysqld-safe
[breaking] replaced mysql_init ini option with mysql_install_db
[breaking] replaced –mysql-init cmd option with –mysql-install-db
[breaking] added mysql_mysqld option and –mysql-mysqld cmd option
1.1.1
[enhancements] removed path.py dependency
1.1.0
[enhancement] change deprecated getfuncargvalaue to getfixturevalues, require at least pytest 3.0.0
1.0.0
[enhancements] create command line and pytest.ini configuration options for mysql’s log directory location
[enhancements] create command line and pytest.ini configuration options for mysql’s starting parametetrs
[enhancements] create command line and pytest.ini configuration options for mysql test database name
[enhancements] create command line and pytest.ini configuration options for mysql’s user password
[enhancements] create command line and pytest.ini configuration options for mysql user
[enhancements] create command line and pytest.ini configuration options for mysql host
[enhancements] create command line and pytest.ini configuration options for mysql port
[enhancements] create command line and pytest.ini configuration options for mysql’s init executable
[enhancements] create command line and pytest.ini configuration options for mysql’s admin executable
[enhancements] create command line and pytest.ini configuration options for mysql executable
[enhancements] create command line and pytest.ini configuration options for mysql logsdir
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pytest-mysql-2.0.3.tar.gz
.
File metadata
- Download URL: pytest-mysql-2.0.3.tar.gz
- Upload date:
- Size: 14.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8c51742aca72d52a1552a028c548fd60b63aaa88ede0d3223bf9e0ac043cb81 |
|
MD5 | 13bea85a96d844118aa8d9b250cb0657 |
|
BLAKE2b-256 | b1409bbce7e93603b73cda6296e3b33316c8429245cbebd1ba689ed78c8cfec2 |
File details
Details for the file pytest_mysql-2.0.3-py3-none-any.whl
.
File metadata
- Download URL: pytest_mysql-2.0.3-py3-none-any.whl
- Upload date:
- Size: 28.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 438a6697b3318372d113ea7cccc8118551478564d8248649154c32b1a4fdd292 |
|
MD5 | b0867a1ac6874f7647750a76e2051c09 |
|
BLAKE2b-256 | 01af3a607953856774c551a958807a70522381a8f83ab880f96b973c2cb7c685 |