stoobly-agent 0.30.6__py3-none-any.whl → 0.30.7__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.
- stoobly_agent/__init__.py +1 -1
- stoobly_agent/db/migrations/2022_03_17_060144_create_requests.py +1 -1
- stoobly_agent/db/migrations/2022_03_17_074916_create_responses.py +1 -1
- stoobly_agent/db/migrations/2022_05_10_003705_create_traces.py +1 -1
- stoobly_agent/db/migrations/2022_05_10_003840_create_trace_aliases.py +1 -1
- stoobly_agent/db/migrations/2022_06_29_234516_create_trace_requests.py +1 -1
- stoobly_agent/db/migrations/2022_06_29_235155_add_trace_request_reference_to_trace_aliases.py +1 -1
- stoobly_agent/db/migrations/2022_12_12_092437_align_requests.py +1 -1
- stoobly_agent/db/migrations/2022_12_28_092917_add_filter_columns_to_requests.py +1 -1
- stoobly_agent/db/migrations/2023_01_21_055426_create_scenarios.py +1 -1
- stoobly_agent/db/migrations/2023_01_21_060225_add_scenario_id_reference_to_requests.py +1 -1
- stoobly_agent/db/migrations/2023_02_02_022229_create_replayed_responses.py +1 -1
- stoobly_agent/db/migrations/2023_03_20_192909_add_http_version_column_to_requests.py +1 -1
- stoobly_agent/db/migrations/2023_03_20_220448_add_http_version_column_to_responses.py +1 -1
- stoobly_agent/db/migrations/2023_04_18_071327_align_requests.py +1 -1
- stoobly_agent/db/migrations/2023_05_15_212505_add_uuid_column_to_requests.py +1 -1
- stoobly_agent/db/migrations/2023_05_15_213119_add_uuid_column_to_scenarios.py +1 -1
- stoobly_agent/db/migrations/2023_05_29_053649_add_overwritable_column_to_scenarios.py +1 -1
- stoobly_agent/lib/orm/__init__.py +1 -1
- stoobly_agent/lib/orm/migrate_service.py +1 -1
- stoobly_agent/lib/orm/replayed_response.py +1 -1
- stoobly_agent/lib/orm/request.py +1 -1
- stoobly_agent/lib/orm/response.py +1 -1
- stoobly_agent/lib/orm/scenario.py +1 -1
- stoobly_agent/lib/orm/trace.py +1 -1
- stoobly_agent/lib/orm/trace_alias.py +1 -1
- stoobly_agent/lib/orm/trace_request.py +1 -1
- {stoobly_agent-0.30.6.dist-info → stoobly_agent-0.30.7.dist-info}/METADATA +3 -3
- {stoobly_agent-0.30.6.dist-info → stoobly_agent-0.30.7.dist-info}/RECORD +33 -33
- {stoobly_agent-0.30.6.dist-info → stoobly_agent-0.30.7.dist-info}/LICENSE +0 -0
- {stoobly_agent-0.30.6.dist-info → stoobly_agent-0.30.7.dist-info}/WHEEL +0 -0
- {stoobly_agent-0.30.6.dist-info → stoobly_agent-0.30.7.dist-info}/entry_points.txt +0 -0
- {stoobly_agent-0.30.6.dist-info → stoobly_agent-0.30.7.dist-info}/top_level.txt +0 -0
stoobly_agent/__init__.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
COMMAND = 'stoobly-agent'
|
2
|
-
VERSION = '0.30.
|
2
|
+
VERSION = '0.30.7'
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import requests
|
2
2
|
import pdb
|
3
3
|
|
4
|
-
from
|
4
|
+
from stoobly_orator.migrations import Migration
|
5
5
|
|
6
6
|
from stoobly_agent.app.models.adapters.raw_http_response_adapter import RawHttpResponseAdapter
|
7
7
|
from stoobly_agent.lib.orm.request import Request
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import os
|
2
2
|
import pdb
|
3
3
|
|
4
|
-
from
|
4
|
+
from stoobly_orator.migrations import Migrator, DatabaseMigrationRepository
|
5
5
|
|
6
6
|
from stoobly_agent.config.data_dir import DataDir
|
7
7
|
from stoobly_agent.config.source_dir import SourceDir
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import pdb
|
2
2
|
import requests
|
3
3
|
|
4
|
-
from
|
4
|
+
from stoobly_orator.orm import belongs_to
|
5
5
|
|
6
6
|
from stoobly_agent.app.proxy.mitmproxy.response_facade import MitmproxyResponseFacade
|
7
7
|
from stoobly_agent.app.proxy.record.response_string import ResponseString
|
stoobly_agent/lib/orm/request.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import pdb
|
2
2
|
import uuid
|
3
3
|
|
4
|
-
from
|
4
|
+
from stoobly_orator.orm import belongs_to, has_many, has_one
|
5
5
|
|
6
6
|
from stoobly_agent.lib.api.keys.project_key import LOCAL_PROJECT_ID
|
7
7
|
from stoobly_agent.lib.api.keys.request_key import RequestKey
|
stoobly_agent/lib/orm/trace.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: stoobly-agent
|
3
|
-
Version: 0.30.
|
3
|
+
Version: 0.30.7
|
4
4
|
Summary: Client agent for Stoobly
|
5
5
|
Home-page: https://github.com/Stoobly/stoobly-agent
|
6
6
|
Author: Michael Yen
|
@@ -14,8 +14,8 @@ Requires-Dist: jmespath >=1.0.0
|
|
14
14
|
Requires-Dist: mergedeep <1.3.4,>=1.3.0
|
15
15
|
Requires-Dist: mitmproxy <=8.1.0,>=8.0.0
|
16
16
|
Requires-Dist: openapi-core >=0.17.0
|
17
|
-
Requires-Dist: orator >=0.9.
|
18
|
-
Requires-Dist: pyyaml
|
17
|
+
Requires-Dist: stoobly-orator >=0.9.12
|
18
|
+
Requires-Dist: pyyaml >=6.0.1
|
19
19
|
Requires-Dist: requests >=2.31.0
|
20
20
|
Requires-Dist: tabulate >=0.8.8
|
21
21
|
Requires-Dist: watchdog <=2.1.3,>=2.1.0
|
@@ -1,4 +1,4 @@
|
|
1
|
-
stoobly_agent/__init__.py,sha256=
|
1
|
+
stoobly_agent/__init__.py,sha256=Bm2jSXiwaCZq0QeCIQRA5AlBX2W4kaCh5Mgxzouy4fY,45
|
2
2
|
stoobly_agent/cli.py,sha256=4ZAnhcjY1a9RA3YZy-RkkUFx4DKw6KpGZq1ZoJZ7akM,7439
|
3
3
|
stoobly_agent/mock.py,sha256=P9cr9yW8PF1XolPfNSftcJVn1xEqcD-SEyIROsFxY20,2549
|
4
4
|
stoobly_agent/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -269,23 +269,23 @@ stoobly_agent/config/constants/request_origin.py,sha256=hTGGzJoCo_Lm5iNBDFOAb0lj
|
|
269
269
|
stoobly_agent/config/constants/statuses.py,sha256=dR88qHHnDR_5ppuKijwc0R24D_fWc69FXrJKOGkU51I,79
|
270
270
|
stoobly_agent/config/constants/test_filter.py,sha256=rQ-eMZ8kpq49pqS1PQhaRx59dlRicd-Ag4sjgoXfpY8,109
|
271
271
|
stoobly_agent/config/constants/test_strategy.py,sha256=d6-WgKqElB3q_csP-QYFkhR4XvlPGfGdCJ-SBEDEoL4,152
|
272
|
-
stoobly_agent/db/migrations/2022_03_17_060144_create_requests.py,sha256=
|
273
|
-
stoobly_agent/db/migrations/2022_03_17_074916_create_responses.py,sha256=
|
274
|
-
stoobly_agent/db/migrations/2022_05_10_003705_create_traces.py,sha256=
|
275
|
-
stoobly_agent/db/migrations/2022_05_10_003840_create_trace_aliases.py,sha256=
|
276
|
-
stoobly_agent/db/migrations/2022_06_29_234516_create_trace_requests.py,sha256=
|
277
|
-
stoobly_agent/db/migrations/2022_06_29_235155_add_trace_request_reference_to_trace_aliases.py,sha256=
|
278
|
-
stoobly_agent/db/migrations/2022_12_12_092437_align_requests.py,sha256=
|
279
|
-
stoobly_agent/db/migrations/2022_12_28_092917_add_filter_columns_to_requests.py,sha256=
|
280
|
-
stoobly_agent/db/migrations/2023_01_21_055426_create_scenarios.py,sha256=
|
281
|
-
stoobly_agent/db/migrations/2023_01_21_060225_add_scenario_id_reference_to_requests.py,sha256=
|
282
|
-
stoobly_agent/db/migrations/2023_02_02_022229_create_replayed_responses.py,sha256
|
283
|
-
stoobly_agent/db/migrations/2023_03_20_192909_add_http_version_column_to_requests.py,sha256=
|
284
|
-
stoobly_agent/db/migrations/2023_03_20_220448_add_http_version_column_to_responses.py,sha256=
|
285
|
-
stoobly_agent/db/migrations/2023_04_18_071327_align_requests.py,sha256=
|
286
|
-
stoobly_agent/db/migrations/2023_05_15_212505_add_uuid_column_to_requests.py,sha256=
|
287
|
-
stoobly_agent/db/migrations/2023_05_15_213119_add_uuid_column_to_scenarios.py,sha256=
|
288
|
-
stoobly_agent/db/migrations/2023_05_29_053649_add_overwritable_column_to_scenarios.py,sha256=
|
272
|
+
stoobly_agent/db/migrations/2022_03_17_060144_create_requests.py,sha256=UAKfkAi4EhECWneDME3tCH7J3JhN72ImDz6L61PPHPQ,890
|
273
|
+
stoobly_agent/db/migrations/2022_03_17_074916_create_responses.py,sha256=5S_1R7UR7SCMlf4VqRExqKFSDRI5kj8qdIlctCKLqCs,588
|
274
|
+
stoobly_agent/db/migrations/2022_05_10_003705_create_traces.py,sha256=9z6voGgMQ-zjKT4QTKM_MD865A0ySnS_c9P92SVDeTQ,381
|
275
|
+
stoobly_agent/db/migrations/2022_05_10_003840_create_trace_aliases.py,sha256=wBSnJhxlYci2acR-IRCDfTtM2A3xeGT5Hq0EowU5jt0,763
|
276
|
+
stoobly_agent/db/migrations/2022_06_29_234516_create_trace_requests.py,sha256=BFaB8vM3WRiIsodhy8JcBjbm03RWllW6KmYlDTYZcIw,528
|
277
|
+
stoobly_agent/db/migrations/2022_06_29_235155_add_trace_request_reference_to_trace_aliases.py,sha256=_z4icKsMacHvDzD4zqYSxixT4Y3IvTdco5VcuG9nWIk,569
|
278
|
+
stoobly_agent/db/migrations/2022_12_12_092437_align_requests.py,sha256=NQmojupHhuxhdWhfJ_6LtxJfKnip1u9QJ8NSQ1lXy3E,1938
|
279
|
+
stoobly_agent/db/migrations/2022_12_28_092917_add_filter_columns_to_requests.py,sha256=TW0vkVB5rUP2ngy9YTDl_AXEfUHa7STIvPVfAiLnvbo,509
|
280
|
+
stoobly_agent/db/migrations/2023_01_21_055426_create_scenarios.py,sha256=X8apOtU2NJmTYxcouauZ53Y9lqLWqCSNaCVKGmC162g,685
|
281
|
+
stoobly_agent/db/migrations/2023_01_21_060225_add_scenario_id_reference_to_requests.py,sha256=dcE0PEeNrpDJ7-uzoJUr_b3wZTiIUhXVLjBRmwop01U,533
|
282
|
+
stoobly_agent/db/migrations/2023_02_02_022229_create_replayed_responses.py,sha256=DzBxlQWc7FIcR5qcgkBp_z1qonl1WVvT1mxWZEsu9E8,652
|
283
|
+
stoobly_agent/db/migrations/2023_03_20_192909_add_http_version_column_to_requests.py,sha256=zgPRtjOCtAbRvKcVUrp4GStD20RBRFcWisSVBWEeP2I,515
|
284
|
+
stoobly_agent/db/migrations/2023_03_20_220448_add_http_version_column_to_responses.py,sha256=AO9NkHbPZYdiAFKjCVpBfLXq71H75j0HaIvfb9TlThk,509
|
285
|
+
stoobly_agent/db/migrations/2023_04_18_071327_align_requests.py,sha256=8ukE87FqHoMMQlAIqbx4j745OyduzQdldgqtp8oSgjw,1272
|
286
|
+
stoobly_agent/db/migrations/2023_05_15_212505_add_uuid_column_to_requests.py,sha256=TihqmKNLcoDy0jUpNM5Ih3LCNk7LMAN1ioOCJEcl-f8,866
|
287
|
+
stoobly_agent/db/migrations/2023_05_15_213119_add_uuid_column_to_scenarios.py,sha256=xA1hfHPbBg-GuN9juuPbnb6zvY1dIvyELeKQUE_BU5U,601
|
288
|
+
stoobly_agent/db/migrations/2023_05_29_053649_add_overwritable_column_to_scenarios.py,sha256=VkhUaHR6nVsV_DeXEpT16z89m2MsPHEYGQV2Y2vCUqs,459
|
289
289
|
stoobly_agent/db/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
290
290
|
stoobly_agent/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
291
291
|
stoobly_agent/lib/cache.py,sha256=Pz2H4e1umKNX-h0L3dkvp0DvS-tFWHtjoYZSbKhcOx4,1813
|
@@ -327,16 +327,16 @@ stoobly_agent/lib/api/keys/resource_key.py,sha256=9qrkp3t8iJsScZvKVcBDvVbcfwmP0y
|
|
327
327
|
stoobly_agent/lib/api/keys/scenario_key.py,sha256=0BQS8g4ZVLxBmcD_FEl6nYVZSgu4idY2r35hkZflAg4,716
|
328
328
|
stoobly_agent/lib/api/keys/test_key.py,sha256=-MCWp1oYLkJ3S_Pqs62j8KkkssXpT9quKb4YqMSq1Ks,438
|
329
329
|
stoobly_agent/lib/api/keys/uuid_key.py,sha256=qt7Tqr44WpYnK3oHTCFqmByyx-gm2IFKbiJc7uNUP5M,454
|
330
|
-
stoobly_agent/lib/orm/__init__.py,sha256=
|
330
|
+
stoobly_agent/lib/orm/__init__.py,sha256=UCAL40_L9qf1sUqvUWKzc551jKLR4HKqRNLPdOuXl2w,1199
|
331
331
|
stoobly_agent/lib/orm/base.py,sha256=3PZx0OWK241vrr8pLLQL0GFhKxvYVDFyVMMdYzhxMPM,358
|
332
|
-
stoobly_agent/lib/orm/migrate_service.py,sha256=
|
333
|
-
stoobly_agent/lib/orm/replayed_response.py,sha256=
|
334
|
-
stoobly_agent/lib/orm/request.py,sha256=
|
335
|
-
stoobly_agent/lib/orm/response.py,sha256=
|
336
|
-
stoobly_agent/lib/orm/scenario.py,sha256=
|
337
|
-
stoobly_agent/lib/orm/trace.py,sha256=
|
338
|
-
stoobly_agent/lib/orm/trace_alias.py,sha256=
|
339
|
-
stoobly_agent/lib/orm/trace_request.py,sha256=
|
332
|
+
stoobly_agent/lib/orm/migrate_service.py,sha256=Nbsaq7J-RDuNM3OhoqnYRWqD1_bUwjWy0eindBiY_LU,1336
|
333
|
+
stoobly_agent/lib/orm/replayed_response.py,sha256=upKSrKxo9rzxJUxxMJ7jji87lfNnvpqcxdlCqQroZqY,954
|
334
|
+
stoobly_agent/lib/orm/request.py,sha256=JBOn7xT_SmzUflfXP_X-lAqXtc6zVhu4Ltl9Y-zb2XM,4061
|
335
|
+
stoobly_agent/lib/orm/response.py,sha256=e2AYy6S9TgoP0ZnjTq73HeBMFjwNQuN33QZ4JQmtem8,271
|
336
|
+
stoobly_agent/lib/orm/scenario.py,sha256=3lyuct7Ov2X8YzMU9FR7RndxP4c8--Blm5wXEnlj68A,1091
|
337
|
+
stoobly_agent/lib/orm/trace.py,sha256=P6mPm_x_HEO37MRhPS1zHjGgIsnb6x6NX7mHG9pVRWo,575
|
338
|
+
stoobly_agent/lib/orm/trace_alias.py,sha256=RMlEY8k9mF81YmFNANkHOyFeTfyI4CSC6jNESlRBgSg,2381
|
339
|
+
stoobly_agent/lib/orm/trace_request.py,sha256=IQ4rC_MrTLqJ-aaUbM3ZRwMr7J1yN7i15cp6GFsN7YE,479
|
340
340
|
stoobly_agent/lib/orm/transformers/__init__.py,sha256=polEv91Do0puZAzea3HZzkA3T5zZ0RQFMHl0TZnTRuk,306
|
341
341
|
stoobly_agent/lib/orm/transformers/orm_to_request_transformer.py,sha256=z_2RzkeYTomyOHvW9nnYFGWBVekJvEn9rBdOWvugq0E,1574
|
342
342
|
stoobly_agent/lib/orm/transformers/orm_to_requests_response_transformer.py,sha256=VGHmhwh2u8iJqFeNcnnsDHTu1xgSkKIwfPdBOjeTSH8,1408
|
@@ -480,9 +480,9 @@ stoobly_agent/test/app/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
480
480
|
stoobly_agent/test/mock_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
481
481
|
stoobly_agent/test/mock_data/endpoint_show_response.py,sha256=JFEkceHI6nH38zitCbFMozE1lODahxmvj70N5eM_sec,5901
|
482
482
|
stoobly_agent/test/mock_data/request_show_response.py,sha256=K_a0fP0QT58T8sX9PaM6hqtX1A1depZsqg_GsNPf--k,707
|
483
|
-
stoobly_agent-0.30.
|
484
|
-
stoobly_agent-0.30.
|
485
|
-
stoobly_agent-0.30.
|
486
|
-
stoobly_agent-0.30.
|
487
|
-
stoobly_agent-0.30.
|
488
|
-
stoobly_agent-0.30.
|
483
|
+
stoobly_agent-0.30.7.dist-info/LICENSE,sha256=8WuxPI7sA6w_Yhwqn6v6Ch2Kvu6fo0cwMNIgxSE7oq8,548
|
484
|
+
stoobly_agent-0.30.7.dist-info/METADATA,sha256=LDeIikmI_-yus8Ip_MKLaADG0R6aoLh26jzfSQEZqHI,801
|
485
|
+
stoobly_agent-0.30.7.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
486
|
+
stoobly_agent-0.30.7.dist-info/entry_points.txt,sha256=4fpF9D1sN3q8Z6d0MmNAKUy0dz-ZxoH9mqfYMhErRCg,57
|
487
|
+
stoobly_agent-0.30.7.dist-info/top_level.txt,sha256=fTxn372sBnUMXVSJxpaVAMBWB3HU3_Mq-WXJCM6mMj8,14
|
488
|
+
stoobly_agent-0.30.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|