-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
129 lines (95 loc) · 4.65 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
from setuptools import setup
setup(
name="robotframework-mitmlibrary",
packages=["MitmLibrary"],
version="0.2.1",
license="MIT",
description="Wrapper for mitmproxy with Robot Framework",
author="Mark Moberts",
author_email="[email protected]",
url="https://github.com/MobyNL/robotframework-mitmlibrary",
project_urls={
"Keyword documentation": "https://mobynl.github.io/robotframework-mitmlibrary/MitmLibraryKeywords.html",
"Slack Channel": "https://robotframework.slack.com/archives/C06M2J3J8AC",
},
download_url="https://github.com/MobyNL/robotframework-mitmlibrary/archive/refs/tags/0.1.8.tar.gz",
keywords=[
"robotframework",
"automation",
"testautomation",
"testing",
"mitm",
"maninthemiddle",
],
install_requires=[
"mitm",
"mitmproxy",
"robotframework",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
long_description="""
# Robot Framework MITM Library
[![MITMLibrary](https://raw.githubusercontent.com/MobyNL/robotframework-mitmlibrary/main/MITMLibrary_small.png)](https://github.com/MobyNL/robotframework-mitmlibrary)
## Keyword Documentation
[Keyword documentation](https://mobynl.github.io/robotframework-mitmlibrary/MitmLibraryKeywords.html)
## Overview
The Robot Framework MITM Library is a custom library for [Robot Framework](https://robotframework.org/) that enables integration with the Python package [mitm](https://github.com/mitmproxy/mitmproxy). This library allows you to automate and test scenarios involving Man-in-the-Middle (MITM) proxy functionality within your Robot Framework test suites.
If you need help, have suggestions or want to discuss anything, feel free to contact through the [Slack channel](https://robotframework.slack.com/archives/C06M2J3J8AC).
## Features
- Interact with MITM proxy using Robot Framework keywords.
- Manipulate network traffic for testing purposes.
- Easily simulate different network conditions and responses.
- Integrate MITM proxy capabilities into your existing Robot Framework tests.
## Installation
1. Install Robot Framework (if not already installed):
2. Install mitm library using pip:
```sh
pip install robotframework-mitmlibrary
```
## Usage
1. Import the MITM Library in your Robot Framework test suite:
```robotframework
*** Settings ***
Library MitmLibrary
```
2. Use the available keywords to interact with the MITM proxy and manipulate network traffic as needed:
```robotframework
*** Settings ***
Library MitmLibrary
*** Test Cases ***
Block and Delay Websites
Start Mitm Proxy
# Block requests to Robot Framework website
Add To Blocklist robotframework.org
# Delay requests to Google
Add Response Delay GoogleDelay https://www.google.com 5 # Delay for 5 seconds
# Perform tests that involve network traffic manipulation
# ...
Stop Mitm Proxy
```
## Why use Mitm?
Mitm allows manipulation on single browser instance, by using a proxy. It does not require you to set up stubs or mocks that might influence the entire application at once, also resulting in stubbed/mocked behaviour while manual testing.
Examples where Mitm is useful:
- When running in parallel, if you do not want your other instances to be influenced.
- Manipulate the response of a request to see how the front end handles it.
- When stubs or mocks are not available or their behaviour is not sufficient for your testing needs.
- When you want to have full control as tester, without dependency on a developer.
## Mitm Certificates
To test with SSL verification, or use a browser without ignoring certificates, you will need to set up the certificates related to mitm. Follow the guide on the [Mitm website](https://docs.mitmproxy.org/stable/concepts-certificates/).
## Documentation
For detailed information on the available keywords and usage examples, please refer to the [Keyword Documentation](https://mobynl.github.io/robotframework-mitmlibrary/MitmLibraryKeywords.html).
## Contributing
Contributions are welcome! If you encounter any issues, have suggestions for improvements, or would like to add new features, feel free to open an issue or submit a pull request.
## License
This project is licensed under the MIT License.
Note: This project is not officially affiliated with or endorsed by the mitmproxy project or robotframework.
""",
long_description_content_type="text/markdown",
)