Skip to main content

Convenience plugin on top of the testbed the Google Appengine (GAE) SDK already provides.

Install

pip install pytest-beds

After that the plugin is enabled by default. You can use specific fixtures (see below) to activate the Testbed and stub specific services.

Options

--no-gae

Disable the plugin, esp. do not change the python paths and try to import dev_appserver.

--sdk-path PATH

The plugin assumes it can just import dev_apserver. If that fails it looks up the SDK path in the environment variable GAE. Otherwise, you can specify the path to the SDK by using the --sdk-path PATH option.

--project-root PATH

Secondly, the plugin assume that your current path is the projects root folder, t.i. the dirctory which holds the app.yaml. You can specify a different path using --project-root PATH.

--noisy-tasklets

By default the plugin shortens the tracebacks when using ndb tasklets, so they don’t include the eventloop’s internal noise. Use this switch to make ndb noisy again.

Fixtures

The plugin provides fixtures to stub the different services. Usage is therefore simple and straightforward:

# Say, if you create a Foo you hit the database and put some work on queue
def test_foo(ndb, taskqueue):
    foo = Foo.create()

    assert Foo.query().fetch() == [foo]

List of builtin fixtures:

bed
mailer
channel
urlfetch
memcache
taskqueue
blobstore
ndb
users

Users

There are two fixtures anonymous and login to handle the users-stub.

anonymous

Prepares the user stub so that users.get_current_user() will return None

login

Prepares the user stub and returns a function to login actual users:

def test_login(login):
    # at this point users.get_current_user() will return None

    login(id=1, email='foo@gmail.com')
    # now users.get_current_user() will return a user

    login.logout()
    # now users.get_current_user() will return None again

Deferreds

The deferreds fixture inits the taskqueue stub, but returns a useful object, so you can actually run the deferred functions:

def test_work(deferreds):
    deferred.defer(work, 'to be done')

    deferreds.consume()

    assert 'work has been done'

Release files for pytest-beds 0.0.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pytest-beds 0.0.1
File Size Uploaded
pytest-beds-0.0.1.zip 10.9 kB Details

Release files / pytest-beds-0.0.1.zip

Download URL pytest-beds-0.0.1.zip
Size 10.9 kB
Tags Source
SHA-256 checksum
How to use checksums
4bc789695c6259c64bb0d93e5e2bfd154bcbd9c54edb6a564c7d32d78a577fb1
BLAKE2b-256 checksum
How to use checksums
69479eb7652c5889bb2e6ddb5fb63da7b09f786b312229d6a8dcc88dec01383a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

0.3.0

1 release file

0.0.2

1 release file

This release

0.0.1 This release

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page