Skip to main content

Automated smart testing strategies for web services.

Project description

Agilkia: A Python Toolkit to Support AI-for-Testing

This toolkit is intended to make it easier to build testing tools that learn from traces of customer behaviors, analyze those traces for common patterns and unusual behaviors (e.g. using clustering techniques), learn machine learning (ML) models of typical behaviors, and use those models to generate smart tests that imitate customer behaviors.

Agilkia is intended to provide a storage and interchange format that makes it easy to built 'smart' tools on top of this toolkit, often with just a few lines of code. The main focus of this toolkit is saving and loading traces in a standard *.JSON format, and transforming those traces to and from lots of other useful formats, including:

  • Pandas DataFrames (for data analysis and machine learning);
  • ARFF files (for connection to Weka and the StackedTrees tools);
  • SciPy Linkage matrices (for hierarchical clustering and drawing Dendrograms);
  • CSV files in application-specific formats (requires writing some Python code).

The key datastructures supported by this library are:

  • TraceSet = a sequence of Trace objects
  • Trace = a sequence of Event objects
  • Event = one interaction with a web service/site, with an action name, inputs, outputs.

In addition, note that the TraceSet can store 'clustering' information about the traces (flat clusters and optional hierarchical clustering) and all three of the above objects include various kinds of 'meta-data'. For example, each Event object can contain a timestamp, and each TraceSet contains an 'event_chars' dictionary that maps each kind of event to a single character to enable concise visualization of traces.

This 'agilkia' library is part of the Philae research project:

http://projects.femto-st.fr/philae/en

It is open source software under the MIT license. See LICENSE.txt

Key Features:

  • Manage sets of traces (load/save to JSON, etc.).
  • Split traces into smaller traces (sessions).
  • Cluster traces on various criteria, with support for flat and hierarchical clustering.
  • Visualise clusters of tests, to see common / rare behaviours.
  • Convert traces to Pandas DataFrame for data analysis / machine learning.
  • Generate random tests, or 'smart' tests from a machine learning (ML) model.
  • Automated testing of SOAP web services with WSDL descriptions.

About the Name

The name 'Agilkia' was chosen for this library because it is closely associated with the name 'Philae', and the Agilkia toolkit has been developed as part of the Philae research project.

Agilkia is an island in the reservoir of the Aswan Low Dam, downstream of the Aswan Dam and Lake Nasser, Egypt.
It is the current location of the ancient temple of Isis, which was moved there from the islands of Philae after dam water levels rose.

Agilkia was also the name given to the first landing place of the Philae landing craft on the comet 67P/Churyumov–Gerasimenko, during the Rosetta space mission.

People

  • Architect and developer: AProf. Mark Utting
  • Project leader: Prof. Bruno Legeard

Example Usages

Agilkia requires Python 3.7 or higher. Here is how to install this toolkit using conda:

conda install -c mark.utting agilkia

Here is a simple example of generating some simple random tests of an imaginary web service running on the URL http://localhost/cash:

import agilkia

# sample input values for named parameters
input_values = {
    "username"  : ["TestUser"],
    "password"  : ["<GOOD_PASSWORD>"] * 9 + ["bad-pass"],  # wrong 10% of time
    "version"   : ["2.7"] * 9 + ["2.6"],      # old version 10% of time
    "account"   : ["acc100", "acc103"],       # test these two accounts equally
    "deposit"   : [i*100 for i in range(8)],  # a range of deposit amounts
}

def first_tests():
    tester = agilkia.RandomTester("http://localhost/cash",
        parameters=input_values)
    tester.set_username("TestUser")   # will prompt for password
    tests = agilkia.TraceSet([])
    for i in range(10):
        tr = tester.generate_trace(length=30)
        print(f"========== trace {i}:\n  {tr}")
        tests.append(tr)
    return tests

first_tests().save_to_json(Path("tests1.json"))

And here is an example of loading a file containing a single long trace, splitting it into customer sessions based on a 'sessionID' input field, using SciPy to cluster those sessions using hierarchical clustering, visualizing them as a dendrogram tree, and saving the results.

from pathlib import Path
import scipy.cluster.hierarchy as hier
import matplotlib.pyplot as plt
import agilkia

traces = agilkia.TraceSet.load_from_json(Path("trace.json"))
sessions = traces.with_traces_grouped_by("sessionID")
data = sessions.get_trace_data(method="action_counts")
tree = hier.linkage(data)
hier.dendrogram(tree, 10, truncate_mode="level")  # view top 10 levels of tree
plt.show()
cuts = hier.cut_tree(tree, [3])                   # cut the tree to get 3 clusters
sessions.set_clusters(cuts[:,0], tree)
sessions.save_to_json(Path("sessions_clustered.json"))

For more complete examples, see the *.py scripts in the examples/scanner directory in the Agilkia source code distribution (https://github.com/utting/agilkia) and the README there.

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

agilkia-0.7.0.tar.gz (789.7 kB view details)

Uploaded Source

Built Distribution

agilkia-0.7.0-py3-none-any.whl (31.4 kB view details)

Uploaded Python 3

File details

Details for the file agilkia-0.7.0.tar.gz.

File metadata

  • Download URL: agilkia-0.7.0.tar.gz
  • Upload date:
  • Size: 789.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.25.1

File hashes

Hashes for agilkia-0.7.0.tar.gz
Algorithm Hash digest
SHA256 4b947c05883c478e7c8f1bd0b55c3cd181d43b52d1c4be598fa95c7db7893f3c
MD5 a29dffb4163d2f902ce2ed58fd7c902f
BLAKE2b-256 ad51c0684d1430116be9ad838fc392ef68426bc97162b5b5c109f1e46dc31943

See more details on using hashes here.

File details

Details for the file agilkia-0.7.0-py3-none-any.whl.

File metadata

  • Download URL: agilkia-0.7.0-py3-none-any.whl
  • Upload date:
  • Size: 31.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.25.1

File hashes

Hashes for agilkia-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 44e78c5ded12eb5bd9128c57b9fb7dff1f05047e4d3e170a370d1d8496725ccc
MD5 cce9d3c110baf4051b4c66f1a28a8447
BLAKE2b-256 b082b4ed1098b3725e6934c398fdf4ce625cb0ce43113190b2ea9f3f592a8433

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