mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-23 06:09:59 +00:00
- The 'pageserver' fixture now sets up the repository and starts up
the Page Server automatically. In other words, the 'pageserver'
fixture provides a Page Server that's up and running and ready to
use in tests.
- The 'pageserver' fixture now also creates a branch called 'empty',
right after initializing the repository. By convention, all the
tests start by createing a new branch off 'empty' for the test. This
allows running all the tests against the same Page Server
concurrently. (I haven't tested that though. pytest doensn't
provide an option to run tests in parallel but there are extensions
for that.)
- Remove the 'zen_simple' fixture. Now that 'pageserver' provides
server that's up and running, it's pretty simple to use the
'pageserver' and 'postgres' fixtures directly.
- Don't assume host name or ports in the tests. They now use the
fields in the fixtures for that. That allows assigning the ports
dynamically, making it possible to run multiple page servers in
parallel, or running the tests in parallel with another page
server. This commit still hard codes the Page Server's port in the
fixture, though, so more work is needed to actually make it
possible.
- I made some changes to the 'postgres' fixture in commit 532918e13d,
which broke the other tests. Fix them.
- Divide the tests into two "batches" of roughly equal runtime, which
can be run in parallel
- Merge the 'test_file' and 'test_filter' options in CircleCI config
into one 'test_selection' option, for simplicity.
34 lines
826 B
Python
34 lines
826 B
Python
import pytest
|
|
import os
|
|
|
|
pytest_plugins = ("fixtures.zenith_fixtures")
|
|
|
|
"""
|
|
|
|
Use this test to see what happens when tests fail.
|
|
|
|
We should be able to clean up after ourselves, including stopping any
|
|
postgres or pageserver processes.
|
|
|
|
Set the environment variable RUN_BROKEN to see this test run (and fail,
|
|
and hopefully not leave any server processes behind).
|
|
|
|
"""
|
|
|
|
|
|
run_broken = pytest.mark.skipif(
|
|
os.environ.get('RUN_BROKEN') == None,
|
|
reason="only used for testing the fixtures"
|
|
)
|
|
|
|
@run_broken
|
|
def test_broken(zenith_cli, pageserver, postgres, pg_bin):
|
|
# Create a branch for us
|
|
zenith_cli.run(["branch", "test_broken", "empty"]);
|
|
|
|
pg = postgres.create_start("test_broken")
|
|
print('postgres is running')
|
|
|
|
print('THIS NEXT COMMAND WILL FAIL:')
|
|
pg_bin.run('pgbench -i_am_a_broken_test'.split())
|