Skip to main content

Python implementation of client protocol for Coeus C# remote integration tests.

Project description

coeus

coeus is a python client implementation of the json-message protocol for remote (Tcp) integration tests.

pypi travis

Installation

coeus is meant to be added as a requirement to your python unit-test project. Simply add a reference to coeus-test.

pip install coeus-test

Getting Started

Glossary

Client: A class for connecting via TCP to the server application.

Message: A specific json format (prototcol) defining the communication.

TestEntity: An abstract concept for an entity that exists in the server application. Usually accessed via it's ID.

Client Setup

The client must connect to the server application via an IP and port. You can invoke a connection as follows:

import client

cli = client.Client(tcp_port=31203)
cli.connect()

By default, it will attempt to connect with ip: 127.0.0.1.

Commands

Commands are specific blocking calls that are sent to the server, then waits to receive a message. Every command has a response.

Commands do not handle any validation of message received from unity client.

import commands

Query Commands

query_entity_is_registered

This command asks the unity application about the state of an entity.

Usage

result = commands.query_entity_is_registered(cli, "myEntityId")

Response

{
    "type" : "query.entity.isRegistered",
    "payload": {
        "result" : true | false
    }
}

Await Commands

await_entity_registered

This command blocks until a specific state is reached for the entitiy. By default, it will block until the entity was registered. If the command exceeds the specified timeout, it continue with a failure.

Usage

// is_registered, timeout_seconds optional...
result = commands.await_entity_registered(cli, "myEntityId", is_registered=True, timeout_seconds=60)

Response

{
    "type":"await.continue",
    "payload": {
        "success":true|false
    }
}

Fetch Commands

fetch_entity

This command asks the server to serialize the TestEntity and send it.

Usage

result = commands.fetch_entity(cli, "myEntityId")

Success Response

{
    "type":"fetch.entity",
    "payload": {
        "test_entity" : {...} | null
    }
}

Invoke Commands

invoke_entity_method

This command allows the python unit-test to invoke a method on the server"s TestEntity and return the result.

Usage

parameters = {
    "statName":"score"
}
result = commands.invoke_entity_method(cli, "myEntityId", "GetPlayerStat", parameters)

In the C# code, this will look for a method with the following signature:

public int GetPlayerStat(IDynamicObject parameters)
{
    var statName = parameters.GetValue<string>("statName");
    ...

    return stat;
}

Response

{
    "type":"invoke.entity.method",
    "payload": {
        "is_error" : false,
        "error_message" : null,
        "result" : 32
    }
}

If there is a C# exception, then the error_message will contain the exceptions message.

Assertions

The commands do not validate the response from the server. To easily do this, use the assertions.

import assertions

...
# Fails assert if False returned from response...
assertions.assert_entity_is_registered(cli, "myEntityId")

# Fails if timeout exceeded...
assertions.assert_await_entity_registered(cli, "myEntityId")

# Fails if the test_entity is None...
result = assertions.assert_fetch_entity(cli, "myEntityId")

# Fails if is_error == True, AssertException with message provided...
result = assert_invoke_entity_method(cli, "myEntityId", "GetPlayerStat", ...)

Project details


Download files

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

Source Distribution

coeus-test-0.1.13.tar.gz (5.6 kB view details)

Uploaded Source

Built Distribution

coeus_test-0.1.13-py2.py3-none-any.whl (7.4 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file coeus-test-0.1.13.tar.gz.

File metadata

  • Download URL: coeus-test-0.1.13.tar.gz
  • Upload date:
  • Size: 5.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.3

File hashes

Hashes for coeus-test-0.1.13.tar.gz
Algorithm Hash digest
SHA256 ddd5ae77790ece038cc47edc8feef4d6a2ff924cfe66fd2704b6a4c063ee8387
MD5 798c3e85e18df424ef7152d9aafa6bc3
BLAKE2b-256 114a370d93fa20242143093aa4d03690d53adec104cdea33f56bae6aefffbef4

See more details on using hashes here.

File details

Details for the file coeus_test-0.1.13-py2.py3-none-any.whl.

File metadata

  • Download URL: coeus_test-0.1.13-py2.py3-none-any.whl
  • Upload date:
  • Size: 7.4 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.3

File hashes

Hashes for coeus_test-0.1.13-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 99dd5e99aeff21ffa773a80c9c993838c6c683fe4aa5268107c1e7b0219c2527
MD5 bc26f0b45589dbee757bc75f622a9b9a
BLAKE2b-256 e607d62b2d22fe90f555788f1ab0b7866735ea71b4bb925bd1d0978ad608dc84

See more details on using hashes here.

Supported by

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