Skip to content

klrmn/pytest-mozwebqa

 
 

Repository files navigation

pytest_mozwebqa

pytest_mozwebqa is a plugin for py.test that provides additional features needed for Mozilla's WebQA projects.

Requires:

  • py.test
  • selenium
  • pyyaml
  • requests

Continuous Integration

Build Status

Installation

$ python setup.py install

Running tests with pytest_mozwebqa

For full usage details run the following command:

$ py.test --help

reporting:
   --webqareport=path  create mozilla webqa custom report file at given path. (default: results/index.html)

selenium:
  --baseurl=url        base url for the application under test.
  --api=api            version of selenium api to use. 'rc' uses selenium rc.
                       'webdriver' uses selenium webdriver. (default: webdriver)
  --host=str           host that selenium server is listening on. (default: localhost)
  --port=num           port that selenium server is listening on. (default: 4444)
  --driver=str         webdriver implementation. (default: Remote)
  --capabilities=str   json string of additional capabilties to set (webdriver).
  --chromepath=path    path to the google chrome driver executable.
  --chromeopts=str     json string of google chrome options to set (webdriver).
  --firefoxpath=path   path to the target firefox binary.
  --firefoxpref=str    json string of firefox preferences to set (webdriver).
  --browser=str        target browser (standalone rc server).
  --environment=str    target environment (grid rc).
  --browsername=str    target browser name (webdriver).
  --browserver=str     target browser version (webdriver).
  --platform=str       target platform (webdriver).
  --timeout=num        timeout (in seconds) for page loads, etc. (default: 60)
  --capturenetwork     capture network traffic to test_method_name.json (selenium rc). (default: False)
  --untrusted          assume that all certificate issuers are untrusted. (default: False)

safety:
  --sensitiveurl=str   regular expression for identifying sensitive urls. (default: mozilla\.(com|org))
  --destructive        include destructive tests (tests not explicitly marked as 'nondestructive'). (default: False)

credentials:
  --credentials=path  location of yaml file containing user credentials.
  --saucelabs=path    credendials file containing sauce labs username and api key.

Configuration

You can also create a mozwebqa.cfg file that will be used to set defaults. This is so that projects can keep this alongside the tests to simplify running them via the command line. The options are currently limited to those that could be project specific.

[DEFAULT]
baseurl: 'http://www.example.com'
api: 'rc'
tags: 'tag1, tag2'

The tags entry is an optional comma separated list of tags that are set when using Sauce Labs. This is useful for filtering the list of jobs based on the application under test or similar.

Examples

Run tests against a standalone RC server using Firefox in the default location:

$ py.test --baseurl=http://example.com --api=rc --browser="*firefox"

Run tests against a grid server with an RC node environment named 'Firefox 5 on Mac OS X':

$ py.test --baseurl=http://example.com --api=rc --environment="Firefox 5 on Mac OS X"

Run tests against a local webdriver using Firefox:

$ py.test --baseurl=http://example.com --driver=firefox --firefoxpath=/Applications/Firefox.app/Contents/MacOS/firefox-bin

Run tests against a local webdriver using Google Chrome:

$ py.test --baseurl=http://example.com --driver=chrome --chromepath=/Applications/chromedriver

Run tests against a remote webdriver server either directly or via grid:

$ py.test --baseurl=http://example.com --browsername=firefox --browserver=5 --platform=mac

Run tests against Sauce Labs using RC API using Firefox 5 on Windows 2003:

$ py.test --baseurl=http://example.com --api=rc --browsername=firefox --browserver=5.0 --platform="Windows 2003" --saucelabs=sauce_labs.yaml

Run tests against Sauce Labs using webdriver API using Firefox 5 on Windows:

$ py.test --baseurl=http://example.com --browsername=firefox --browserver=5.0 --platform=WINDOWS --saucelabs=sauce_labs.yaml

Writing tests for pytest_mozwebqa

You will need to include the mozwebqa in the method signature for your tests, and pass it when constructing page objects.

Example

def test_new_user_can_register(self, mozwebqa):
    home_pg = home_page.HomePage(mozwebqa)
    home_pg.go_to_home_page()
    home_pg.login_region.click_sign_up()

    registration_pg = registration_page.RegistrationPage(mozwebqa)
    registration_pg.register_new_user()
    Assert.equal(registration_pg.page_title, "Sign Up Complete!")

Destructive tests

In order to prevent accidentally running destructive tests, only tests marked as nondestructive will run by default. If you want to mark a test as nondestructive then add the appropriate marker as shown below:

Example (mark test as nondestructive)

import pytest
@pytest.mark.nondestructive
def test_safely(self, mozwebqa):
    ...

If you want to run destructive tests then you can specify the --destructive command line option.

Sensitive environments

If running against a sensitive (production) environment any destructive tests will be skipped with an appropriate error message. You can specify a regular expression that matches your sensitive environments using the --sensitiveurl command line option.

Setting WebDriver capabilities

If you're using WebDriver it's possible to specify additional capabilities on the command line using a JSON string:

Example (accept SSL certificates)

--capabilities='{"acceptSslCerts":true}'

Setting Firefox preferences

If you're using WebDriver and Firefox it's possible to set custom preferences. These are specified using a JSON string:

Example (disable addon compatibility checking)

--firefoxpref='{"extensions.checkCompatibility.nightly":false}'

Setting Google Chrome options

If you're using WebDriver and Google Chrome then you can set various options on the command line using a JSON string.

Valid keys are:

  • arguments: a list of command-line arguments to use when starting Google Chrome.
  • binary_location: path to the Google Chrome executable to use.
  • extensions: a list of Google Chrome extensions to install on startup.

For more details on Google Chrome options see: http://code.google.com/p/chromedriver/wiki/CapabilitiesAndSwitches

Example (set initial homepage)

--chromeopts='{"arguments":["homepage=http://www.example.com"]}'

Using credentials files

The credentials files use YAML syntax, and the usage will vary depending on the project. A typical file will contain at least one user with a unique identifier and login credentials:

Example

# admin:
#   email: [email protected]
#   username: admin
#   password: password

Custom report

By default a custom HTML report will be written to results/index.html. If you wish this to be located elsewhere, or have a different filename, you can specify the --webqareport command line option.

Privacy

By default log files are not captured as these may contain confidential data such as user credentials. If you are confident that a test does not contain such data, you can explicitly set the test as public:

Example

import pytest

@pytest.mark.public
def test_public(self, mozwebqa):
    home_pg = home_page.HomePage(mozwebqa)

You can also explicitly mark the test as private, which sets the test appopriately in Sauce Labs jobs.

Example

import pytest

@pytest.mark.private
def test_private(self, mozwebqa):
    home_pg = home_page.HomePage(mozwebqa)

Testing Patches for pytest-mozwebqa


uninstall previous version pip uninstall pytest-mozwebqa do the build python setup.py install test that your change works test that one or more mozilla webqa test projects still runs commit and submit pull request to revert pip uninstall pytest-mozwebqa pip install pytest-mozwebqa

About

Mozilla WebQA plugin for py.test.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%