CaptureMock 2.4.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- CaptureMock-2.4.2.dist-info/METADATA +50 -0
- CaptureMock-2.4.2.dist-info/RECORD +26 -0
- CaptureMock-2.4.2.dist-info/WHEEL +5 -0
- CaptureMock-2.4.2.dist-info/entry_points.txt +2 -0
- CaptureMock-2.4.2.dist-info/top_level.txt +1 -0
- capturemock/__init__.py +661 -0
- capturemock/amqptraffic.py +233 -0
- capturemock/binarytcptraffic.py +1107 -0
- capturemock/capturecommand.py +121 -0
- capturemock/capturemock_intercept.exe +0 -0
- capturemock/capturepython.py +340 -0
- capturemock/clientservertraffic.py +445 -0
- capturemock/cmdlineutils.py +22 -0
- capturemock/commandlinetraffic.py +248 -0
- capturemock/config.py +104 -0
- capturemock/customtraffic.py +35 -0
- capturemock/encodingutils.py +17 -0
- capturemock/fileedittraffic.py +117 -0
- capturemock/id_mapping.py +45 -0
- capturemock/python_script.exe +0 -0
- capturemock/pythonclient.py +331 -0
- capturemock/pythontraffic.py +700 -0
- capturemock/recordfilehandler.py +32 -0
- capturemock/replayinfo.py +324 -0
- capturemock/server.py +953 -0
- capturemock/traffic.py +175 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: CaptureMock
|
|
3
|
+
Version: 2.4.2
|
|
4
|
+
Summary: A tool for creating mocks via a capture-replay style approach
|
|
5
|
+
Author-email: Geoff Bache <geoff.bache@pobox.com>
|
|
6
|
+
Project-URL: Homepage, http://www.texttest.org/index.php?page=capturemock
|
|
7
|
+
Project-URL: Documentation, http://www.texttest.org/index.php?page=capturemock
|
|
8
|
+
Project-URL: Repository, https://github.com/texttest/capturemock
|
|
9
|
+
Project-URL: Issues, https://github.com/texttest/capturemock/issues/
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Information Technology
|
|
14
|
+
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python
|
|
17
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
18
|
+
Classifier: Topic :: Software Development :: Testing
|
|
19
|
+
Requires-Python: >=3.9
|
|
20
|
+
Description-Content-Type: text/plain
|
|
21
|
+
|
|
22
|
+
CaptureMock:
|
|
23
|
+
A tool capable of capturing and replaying mock information for the purposes of testing. Supports
|
|
24
|
+
- Python modules and attributes
|
|
25
|
+
- System calls via the command line, including any files they write
|
|
26
|
+
- Synchronous plain-text messaging over a network
|
|
27
|
+
|
|
28
|
+
See the documentation at http://www.texttest.org/index.php?page=capturemock
|
|
29
|
+
|
|
30
|
+
System requirements:
|
|
31
|
+
|
|
32
|
+
At least Python 2.6. Tested mainly on Python 3.7 currently.
|
|
33
|
+
|
|
34
|
+
Installation:
|
|
35
|
+
|
|
36
|
+
Go to the "source" directory and run "python setup.py install".
|
|
37
|
+
On Windows, this will probably install to C:\Pythonxx\Scripts, which will then need to be in your PATH if you want to run it from the command line.
|
|
38
|
+
|
|
39
|
+
Documentation:
|
|
40
|
+
|
|
41
|
+
http://texttest.sourceforge.net/index.php?page=capturemock
|
|
42
|
+
|
|
43
|
+
Test suite:
|
|
44
|
+
|
|
45
|
+
The complete test suite (which uses Texttest) can be downloaded from Github at https://github.com/texttest/capturemock-selftest. It has a wealth of little example programs contained in it.
|
|
46
|
+
|
|
47
|
+
Bugs/Support:
|
|
48
|
+
|
|
49
|
+
Write to the mailing list at texttest-users@lists.sourceforge.net
|
|
50
|
+
Report bugs in the Github bugtracker at https://github.com/texttest/capturemock
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
capturemock/__init__.py,sha256=Qo_9NbRTnwEH3VRO6-XVRu-Zw85ebMhd9HVOMb4wksk,26306
|
|
2
|
+
capturemock/amqptraffic.py,sha256=PShESmMtIlp_K5jiazi7GW2kjtsnH76SvXmgpZ5YmaY,10287
|
|
3
|
+
capturemock/binarytcptraffic.py,sha256=LlGoJrvKEXLIF0IoiVAd9zfGUNk2Mhg_o0guukN_Z4g,46074
|
|
4
|
+
capturemock/capturecommand.py,sha256=DiM1gXyD6Di420UcaqRLQTDAs7AL1CQLfZoUsPbwg7I,4043
|
|
5
|
+
capturemock/capturemock_intercept.exe,sha256=2MAUNd6G5AI57umKwTihal97nS7LtoBwHAPPe9QgLrE,5204611
|
|
6
|
+
capturemock/capturepython.py,sha256=Tdth8un1XU_F1frYZWGTSKJ8lVp9j0bWtFPJhPIfARc,15055
|
|
7
|
+
capturemock/clientservertraffic.py,sha256=iMjAkZfl9J8TNJMe_ybn4dtd-49U5Uu4W2rVjGh6Uq4,19333
|
|
8
|
+
capturemock/cmdlineutils.py,sha256=Icarr943nQiMhO5HyGH4q8DLg_Fj0lEZyZB66uf7n0g,1147
|
|
9
|
+
capturemock/commandlinetraffic.py,sha256=iKmDocHthS7fMqtoAax76ZnGLp264aMzVimIeHXxfTM,9988
|
|
10
|
+
capturemock/config.py,sha256=PD4TLc65H4mL30X8XW4UkG-d1T_mXIisXok2M8k3JQ4,3710
|
|
11
|
+
capturemock/customtraffic.py,sha256=LiJwyc_A7Kd76VbbgX_jVeVEmPifgQfGgGQ4Kmr1Nws,1109
|
|
12
|
+
capturemock/encodingutils.py,sha256=VRQFXOf0ZWcpNmS7leFAtk2uW6faYMtJuBCNYIxd15E,498
|
|
13
|
+
capturemock/fileedittraffic.py,sha256=B30WBMfsZSO1L4Q267zpWmsrZ5ArRn4PjKORcPfHE44,4557
|
|
14
|
+
capturemock/id_mapping.py,sha256=JK7IJOOpcHvsbiSaNqwKI4UcyZZ699CozxlOxka1mvY,1496
|
|
15
|
+
capturemock/python_script.exe,sha256=JvjZPhXQ7IY3sJsbVvFN3ntr79W6a_hQveAip-cUbrw,20569
|
|
16
|
+
capturemock/pythonclient.py,sha256=PtBUrJiyI3u0IvUzHg5o6gOpHq5083O9DzfHEa7d1Z0,15289
|
|
17
|
+
capturemock/pythontraffic.py,sha256=zZeqZrabuFu6fJlG0IXSKUj8PWuDUgM9L2ABkkMIxn8,31143
|
|
18
|
+
capturemock/recordfilehandler.py,sha256=88I_M7mrV1xJZZR3i6Q81lpS-C7sBG1h0ZyRKQGN5Jo,1234
|
|
19
|
+
capturemock/replayinfo.py,sha256=Jwonjx7D_P91udGWZbS-FRuHwWcNwKtevEQBnsWQf9I,13431
|
|
20
|
+
capturemock/server.py,sha256=F7FcVp0WyKb3uNNLAVlwpLtm3aq14Oz1GtuWq4bqoWs,42029
|
|
21
|
+
capturemock/traffic.py,sha256=OCVv6Y6zHKn9olihrq8RJseZsvuBB4s-I4_vjv9JZ_s,6250
|
|
22
|
+
CaptureMock-2.4.2.dist-info/METADATA,sha256=to32rl7emsuSUyUF676Ay8XbXO-y4geKHOZ6wrL37fI,2234
|
|
23
|
+
CaptureMock-2.4.2.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
24
|
+
CaptureMock-2.4.2.dist-info/entry_points.txt,sha256=ehwerD_BnauS1gdPAkl2SIRICzUIv_3e8vClv52GZDA,56
|
|
25
|
+
CaptureMock-2.4.2.dist-info/top_level.txt,sha256=3YUO2Sb75tDHo0yeGlpqo-lbEJJsjv4GozLfag0lcXA,12
|
|
26
|
+
CaptureMock-2.4.2.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
capturemock
|