Skip to main content

No project description provided

Project description

Quick start

ArsenalQA is a framework that helps to abstract QA functional tests from developers realisation in ORM style.

Model your data - Models helps you to change and test your data quicker.

Make you transports abstract - it helps you to add them faster.

Make relations between models by transports or other models - it helps your colleagues to understand your code easily.

Instalation:

$ pip install arsenalqa[http]

Lets make our first example:

from arsenalqa.fields import Field
from arsenalqa.models import Model
from arsenalqa.transports import TransportManager
from arsenalqa.transports.http import Http


class MyModel(Model):

    http: Http = TransportManager(Http, url='https://jsonplaceholder.typicode.com/todos/{id}')

    id = Field()
    user_id = Field(name='UserId')
    title = Field()
    completed = Field()

Our model was created.

Now you can:

print(MyModel.http.get())  # get list of todos models
>>> I:[{'userId': 1, 'id': 1, 'title': 'delectus aut autem', 'completed': False}, {'userId': 1, 'id': 2, 'title': 'quis ut nam facilis et officia qui', 'completed': False}

my_model = MyModel()  # new instance of my model
my_model.id = 1
response_model = my_model.http.get()  # get single instance from web
print(response_model)  # model from web
>>> M:{'userId': 1, 'id': 1, 'title': 'delectus aut autem', 'completed': False}

print(response_model.id == my_model.id)
>>> True

# Lets fill new instance of our model and post it to the web
new_model = MyModel()
new_model.user_id = 1
new_model.title = 'My new title'
new_model.completed = False

new_created_model = new_model.http.post()  # Send via http POST method
print(new_created_model)  # Response wrapped in new model. Has filled field id.
>>> M:{'id': 201}
print(new_model == new_created_model)  # False because, response model contains only id field.
>>> False

# Lets get list of todos from web, and filter it by completed status
print(MyModel.http.get().filter_by_attrs(completed=False))
>>> I:[{'userId': 1, 'id': 1, 'title': 'delectus aut autem', 'completed': False}, {'userId': 1, 'id': 2, 'title': 'quis ut nam facilis et officia qui', 'completed': False},...

# Lets get list of todos from web, and filter single unique model by id
first_todo = MyModel.http.get().unique_by_attrs(id=1)
print(first_todo)
>>> M:{'userId': 1, 'id': 1, 'title': 'delectus aut autem', 'completed': False}

# Lets request again from response model, and get title attribute from response modle
print(first_todo.http.get().title)
>>> delectus aut autem

Congrats! Now you can start learning this framework. You can find next steps inside the docs directory!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

arsenalqa-2020.0.2-py3-none-any.whl (16.7 kB view details)

Uploaded Python 3

File details

Details for the file arsenalqa-2020.0.2-py3-none-any.whl.

File metadata

  • Download URL: arsenalqa-2020.0.2-py3-none-any.whl
  • Upload date:
  • Size: 16.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.5

File hashes

Hashes for arsenalqa-2020.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 0e7730589a9efddba2410da6e536e40d93306ce0570c9606d054ca5c79ff98b9
MD5 1a037d4e158bd8c792e5f639dee88836
BLAKE2b-256 6df51041d77ea4cd7513331d03b55717c1e929764c996ac19cd92da2c066d3d4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page