fixtureqa 0.1.0__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.
Files changed (54) hide show
  1. fixture/__init__.py +22 -0
  2. fixture/__main__.py +161 -0
  3. fixture/api/__init__.py +0 -0
  4. fixture/api/app.py +95 -0
  5. fixture/api/connection_manager.py +161 -0
  6. fixture/api/deps.py +73 -0
  7. fixture/api/routers/__init__.py +0 -0
  8. fixture/api/routers/admin.py +178 -0
  9. fixture/api/routers/auth.py +74 -0
  10. fixture/api/routers/branding.py +33 -0
  11. fixture/api/routers/fix_spec.py +41 -0
  12. fixture/api/routers/messages.py +137 -0
  13. fixture/api/routers/scenarios.py +65 -0
  14. fixture/api/routers/sessions.py +272 -0
  15. fixture/api/routers/setup.py +42 -0
  16. fixture/api/routers/templates.py +36 -0
  17. fixture/api/routers/ws.py +129 -0
  18. fixture/api/schemas.py +289 -0
  19. fixture/config/__init__.py +0 -0
  20. fixture/core/__init__.py +0 -0
  21. fixture/core/auth.py +68 -0
  22. fixture/core/config_store.py +85 -0
  23. fixture/core/events.py +22 -0
  24. fixture/core/fix_application.py +67 -0
  25. fixture/core/fix_parser.py +79 -0
  26. fixture/core/fix_spec_parser.py +172 -0
  27. fixture/core/fix_tags.py +297 -0
  28. fixture/core/housekeeping.py +107 -0
  29. fixture/core/message_log.py +115 -0
  30. fixture/core/message_store.py +246 -0
  31. fixture/core/models.py +87 -0
  32. fixture/core/scenario_runner.py +331 -0
  33. fixture/core/scenario_store.py +70 -0
  34. fixture/core/session.py +278 -0
  35. fixture/core/session_manager.py +173 -0
  36. fixture/core/template_store.py +70 -0
  37. fixture/core/user_store.py +186 -0
  38. fixture/core/venue_responses.py +94 -0
  39. fixture/fix_specs/FIX42.xml +2746 -0
  40. fixture/fix_specs/FIX44.xml +6593 -0
  41. fixture/server.py +37 -0
  42. fixture/static/assets/ag-grid-_QKprVdm.js +326 -0
  43. fixture/static/assets/index-B31-1dt-.css +1 -0
  44. fixture/static/assets/index-CTsKxGdI.js +87 -0
  45. fixture/static/assets/react-vendor-2eF0YfZT.js +1 -0
  46. fixture/static/favicon.svg +12 -0
  47. fixture/static/index.html +15 -0
  48. fixture/ui/__init__.py +0 -0
  49. fixtureqa-0.1.0.dist-info/METADATA +16 -0
  50. fixtureqa-0.1.0.dist-info/RECORD +54 -0
  51. fixtureqa-0.1.0.dist-info/WHEEL +5 -0
  52. fixtureqa-0.1.0.dist-info/entry_points.txt +2 -0
  53. fixtureqa-0.1.0.dist-info/licenses/LICENSE +21 -0
  54. fixtureqa-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1 @@
1
+ import"./ag-grid-_QKprVdm.js";
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
2
+ <!-- Pentagon pointing right -->
3
+ <polygon points="1,3 19,3 28,16 19,29 1,29" fill="#1a3a5c"/>
4
+ <!-- Bullseye outer ring -->
5
+ <circle cx="9" cy="16" r="5.5" fill="#00b4c8"/>
6
+ <!-- Bullseye inner (creates ring effect) -->
7
+ <circle cx="9" cy="16" r="3" fill="#1a3a5c"/>
8
+ <!-- Three horizontal lines (FIX message fields) -->
9
+ <line x1="16" y1="10" x2="26" y2="10" stroke="#00b4c8" stroke-width="2.5" stroke-linecap="round"/>
10
+ <line x1="16" y1="16" x2="27.5" y2="16" stroke="#00b4c8" stroke-width="2.5" stroke-linecap="round" opacity="0.7"/>
11
+ <line x1="16" y1="22" x2="25" y2="22" stroke="#00b4c8" stroke-width="2.5" stroke-linecap="round" opacity="0.45"/>
12
+ </svg>
@@ -0,0 +1,15 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
7
+ <title>FIXture</title>
8
+ <script type="module" crossorigin src="/assets/index-CTsKxGdI.js"></script>
9
+ <link rel="modulepreload" crossorigin href="/assets/ag-grid-_QKprVdm.js">
10
+ <link rel="stylesheet" crossorigin href="/assets/index-B31-1dt-.css">
11
+ </head>
12
+ <body>
13
+ <div id="root"></div>
14
+ </body>
15
+ </html>
fixture/ui/__init__.py ADDED
File without changes
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: fixtureqa
3
+ Version: 0.1.0
4
+ Summary: FIXture — FIX Protocol Testing Tool
5
+ Requires-Python: >=3.10
6
+ License-File: LICENSE
7
+ Requires-Dist: fixcore-engine
8
+ Requires-Dist: fastapi>=0.111.0
9
+ Requires-Dist: uvicorn[standard]>=0.29.0
10
+ Requires-Dist: websockets>=12.0
11
+ Requires-Dist: python-jose[cryptography]>=3.3.0
12
+ Requires-Dist: passlib[bcrypt]>=1.7.4
13
+ Provides-Extra: dev
14
+ Requires-Dist: pytest; extra == "dev"
15
+ Requires-Dist: httpx; extra == "dev"
16
+ Dynamic: license-file
@@ -0,0 +1,54 @@
1
+ fixture/__init__.py,sha256=9IZl6OTHr24NcPyn6w6LZPvXXZe6bYgjooS6o9hC1eg,603
2
+ fixture/__main__.py,sha256=Qz_6ucuG4xjaeDIRc1fcAsJcsrjLcENwQDF8sPudU7w,5584
3
+ fixture/server.py,sha256=sPRYgWe6QGLnsnfIrnVYoJfNcfQW0Xquqb-serJtAho,1315
4
+ fixture/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ fixture/api/app.py,sha256=407oH9gvT9eDsOSj42dgFL3GjqXnQ7Hq_jIVUOst8rg,3685
6
+ fixture/api/connection_manager.py,sha256=a223KExN6u9ERzyLu1aU6gTCEDloWZ5ymF6cx5OOhEQ,6184
7
+ fixture/api/deps.py,sha256=qOw54jXOa9CTDP96A9-6H8OZQpdzVoo1IxvhOCldqRU,2320
8
+ fixture/api/schemas.py,sha256=X_XhoynM9AVGmvZpRTEA_Goe8vUStovHY2lRP-mqKgQ,6886
9
+ fixture/api/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ fixture/api/routers/admin.py,sha256=kgD074TTgibozgrBRSqTGahyeKlAJE9qds5m8s-2MV0,7481
11
+ fixture/api/routers/auth.py,sha256=UrEEG7OZZNC5DBKo0Z5qBTFJ4_4X4y6-VRJvceXK-5k,2726
12
+ fixture/api/routers/branding.py,sha256=h1U2SRxo9DJh96yy8BU8rP2mju9l6_8EIlMS7_fjVRU,1155
13
+ fixture/api/routers/fix_spec.py,sha256=c0AseBtJC2lABaKbBgHBIFtUAyS3o70x0qrYGQ00ecM,1491
14
+ fixture/api/routers/messages.py,sha256=5Jr5h4kh_JhAYIKKaB4s1oW8mQ_lBHMMcYqCg9knWcM,4314
15
+ fixture/api/routers/scenarios.py,sha256=cG1DW3BToGyXfBRnj-1Pzq3moqXlBRnqG1sffgwdRCw,2354
16
+ fixture/api/routers/sessions.py,sha256=KQrN1oTTwHenMvVt5CqQbBNli-476xcild4kHZoJjy8,10645
17
+ fixture/api/routers/setup.py,sha256=Gv583UNlMt0kih9Z1A3DbwHiQ4zcFj6R27nltRIHKOU,1457
18
+ fixture/api/routers/templates.py,sha256=2BtSaWs_133KlTkEoIVt86ib54xRHP2l2bOyG1z64KQ,1537
19
+ fixture/api/routers/ws.py,sha256=GFMoys3833Gs8JJzGXodzzuZZD3L8Y1ATn4mkDKLiDI,4426
20
+ fixture/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
+ fixture/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ fixture/core/auth.py,sha256=PFhvNQuUcrIqzTcY2H7rxgymEi05ZUtyh9c8c7IPms4,1761
23
+ fixture/core/config_store.py,sha256=evSxC0j2F0UZ-0CY7wh5hyoQofmfgvkYlOGfixa_b1E,3297
24
+ fixture/core/events.py,sha256=vSEG13D2XK-RBDrrwxE1raeff8CxRsnMMHqxxmaqugk,576
25
+ fixture/core/fix_application.py,sha256=Hd5S0RjKM-24ouL4nMgWmAnZb4PsUuQlIhyHJM4g0_g,2560
26
+ fixture/core/fix_parser.py,sha256=bmmJZ_P4xkcBwHoI7M941CmVma1h2RRhTmW5W85LtD0,2357
27
+ fixture/core/fix_spec_parser.py,sha256=Z_CzE8klPcJj9pUKivXNnxw6ucDODra1-saSqTQpSpI,5803
28
+ fixture/core/fix_tags.py,sha256=2u3Z3vnemGeN7vyDQHHRXCGMhFaesWOWP_HJwHTdAH8,7527
29
+ fixture/core/housekeeping.py,sha256=6vQFHHzmEgq2-aRjitBDDonqtZiJodZYH6Qt-Iyxgc4,3972
30
+ fixture/core/message_log.py,sha256=ItqGzPj21lhTA4LtUIMqDcIjzU-XzPFadJZ4kGJSHJc,4198
31
+ fixture/core/message_store.py,sha256=PGYzMkmSogXFps2vMNxl-CZ4M66d4qe_bNxBCslAT-0,8242
32
+ fixture/core/models.py,sha256=z8RKopEb6zP6iLHd98Ee598mWDNbrrfBrdwG1RqufS8,2590
33
+ fixture/core/scenario_runner.py,sha256=2vZXTxmUBR7OsdxoFfXMA6yQtN8f8DtKoR4l390CZZc,11748
34
+ fixture/core/scenario_store.py,sha256=6cDah1vS13SAsnP2qtubIQwuskf31pdsV0mb515D2v8,2268
35
+ fixture/core/session.py,sha256=ezAlHL2DH4AD3edmv6iVyxnFNAYOlL7S6texl7LkAJA,11923
36
+ fixture/core/session_manager.py,sha256=xoJ6kg7MHclQ1GVO5Vad_wZHN7ahXVnHcccLc6eEuZo,7094
37
+ fixture/core/template_store.py,sha256=YblVwvZwzsCd8mW5cmuK-x5lEIcka55LlHI-ckEad7k,2260
38
+ fixture/core/user_store.py,sha256=DGgLJkuOtpJE3FrJV2LUUIPNkfrVO8digiNBhzykYv8,6648
39
+ fixture/core/venue_responses.py,sha256=TlfsgdlIgLAdS2wQuvz_ttlscH8LZNYjrYqJTRHDS0Y,3187
40
+ fixture/fix_specs/FIX42.xml,sha256=fyChjcLOaCM8dDPGnLPzF_llCgkNVaIFjFqSHWUGBi8,130005
41
+ fixture/fix_specs/FIX44.xml,sha256=vxlUcz49mhYpP5ATn7laqLxJzUG5ZjEx-1-x53WTt48,320230
42
+ fixture/static/favicon.svg,sha256=4_VDbwjARqm2VyV48r3HSOQcUWSMWbY8tgB4OVEuRPk,732
43
+ fixture/static/index.html,sha256=58kSNZV9wOKzC9oxVwgRV40zlu1tK7CL_guzgP5rEf0,535
44
+ fixture/static/assets/ag-grid-_QKprVdm.js,sha256=UEL69XjGkNbGIJP1MC_CVvTLkvlLgz9nTNgOLW_lsJo,1248010
45
+ fixture/static/assets/index-B31-1dt-.css,sha256=e85mgUh2Wut1rlnBwh5WoU94neF0XruUnw1hsttomyg,321184
46
+ fixture/static/assets/index-CTsKxGdI.js,sha256=VdXbxz9MvI_NkbsXiA5P0PWz6X1fHpXQV2OydsU3vKY,532207
47
+ fixture/static/assets/react-vendor-2eF0YfZT.js,sha256=4VTxjlPdf4JTs1QMmsZYbjWxzB6RNtSuljTsl7yCQcs,31
48
+ fixture/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
+ fixtureqa-0.1.0.dist-info/licenses/LICENSE,sha256=8uVynfHE8qai4H_TQF_7W78HG8ASgcRFFP91YLBYKq4,1071
50
+ fixtureqa-0.1.0.dist-info/METADATA,sha256=KzJXhZNn8OlE2vAAwR301vwMS7ZKbJTbBv3uhdOJbhU,484
51
+ fixtureqa-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
52
+ fixtureqa-0.1.0.dist-info/entry_points.txt,sha256=_Uhvy3q93Cu-9etYqtxKmYkoEU8zwDyBcxwf0ayH-Tw,50
53
+ fixtureqa-0.1.0.dist-info/top_level.txt,sha256=6AtxzRTTy9ZfQXOry_zwGlRdvKMqctV1EItVOmSMyW8,8
54
+ fixtureqa-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ fixture = fixture.__main__:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Aidan Chisholm
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ fixture