Code Monkey home page Code Monkey logo

qatestlink's Introduction

QA Testlink

qatestlink XMLRPC manager for Testlink

Issues on Github

Pull Request opened on Github

Release version on Github

Release date on Github

Branch Linux Deploy Windows Deploy

master

image

image

Python tested versions

3.7 3.6 3.5 3.4 >=3.3

Supported

Supported

Supported

Supported

Not Supported

How to install ?

  • Install from PIP : pip install qatestlink
  • Install from setup.py file : python setup.py install

Documentation

How to exec tests ?

    1. Install dependencies for tests : pip install -r requirements-tests.txt
    1. Tests from setup.py file : python setup.py test
    1. Install TOX : pip install tox
    1. Tests from tox : tox -l && tox -e TOX_ENV_NAME ( see tox.ini file to get environment names )
TOX Env name Env description
py34,py35,py36 Python supported versions
docs Generate doc HTML in /docs
flake8 Exec linter in qalab/ tests/
coverage Generate XML and HTML reports

Configuration File

{
    "connection":{
        "is_https": false,
        "host": "ntz-qa.tk",
        "port": 86
    },
    "dev_key": "1bfd2ef4ceda22b482b12f2b25457495",
    "log_level":"INFO"
}

Tests

You will need real testlink app running before you can just execute on command line

python setup.py test

Getting Started

Just starting example of usage before read Usage Guide.

    1. Create JSON configuration ( runtime or read from file, read config section )
    1. Instance testlink_manager object testlink_manager = TLManager(settings=my_json_config)
    1. Use some method name with prefix 'api_'
from qatestlink.core.testlink_manager import TLManager
from qatestlink.core.utils import settings


SETTINGS = settings(
    file_path="/home/user/config/dir/",
    file_name="settings.json"
)


try:
    tlm = TLManager(settings=SETTINGS)
    if not tlm.api_login():
        raise Exception("Not logged for TestlinkWebApp")
    # END
    print(tlm.api_tprojects())
    print("Test PASSED!")
except Exception as err:
    print("ERROR: {}".format(err))
    import pdb; pdb.set_trace() # TODO, remove DEBUG lane
    print("Test FAILED!")

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.