stoobly-agent 1.0.2__py3-none-any.whl → 1.0.3__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/app/cli/scaffold/docker/workflow/builder.py +1 -1
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/.docker-compose.base.yml +0 -1
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.configure +5 -2
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.init +4 -2
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/init +1 -4
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.configure +5 -2
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.init +4 -2
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/init +1 -4
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.configure +5 -2
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.init +5 -1
- stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/init +1 -4
- stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.configure +5 -1
- stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.init +5 -1
- stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/configure +3 -1
- stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/init +1 -2
- stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.configure +5 -1
- stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.init +5 -1
- stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/configure +2 -0
- stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/init +1 -2
- stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.configure +5 -1
- stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.init +5 -1
- stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/configure +2 -0
- stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/init +1 -2
- {stoobly_agent-1.0.2.dist-info → stoobly_agent-1.0.3.dist-info}/METADATA +1 -1
- {stoobly_agent-1.0.2.dist-info → stoobly_agent-1.0.3.dist-info}/RECORD +29 -29
- {stoobly_agent-1.0.2.dist-info → stoobly_agent-1.0.3.dist-info}/LICENSE +0 -0
- {stoobly_agent-1.0.2.dist-info → stoobly_agent-1.0.3.dist-info}/WHEEL +0 -0
- {stoobly_agent-1.0.2.dist-info → stoobly_agent-1.0.3.dist-info}/entry_points.txt +0 -0
stoobly_agent/__init__.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
COMMAND = 'stoobly-agent'
|
2
|
-
VERSION = '1.0.
|
2
|
+
VERSION = '1.0.3'
|
@@ -1,10 +1,13 @@
|
|
1
1
|
#!/bin/bash
|
2
2
|
|
3
|
-
# Data
|
4
3
|
echo "Configuring intercept mode"
|
5
4
|
stoobly-agent intercept configure --mode mock --policy found
|
6
5
|
|
7
6
|
echo "Enabling intercept"
|
8
7
|
stoobly-agent intercept enable
|
9
8
|
|
10
|
-
|
9
|
+
entrypoint=$(dirname -- "$0")/configure
|
10
|
+
|
11
|
+
if [ -e "$entrypoint" ]; then
|
12
|
+
"$entrypoint"
|
13
|
+
fi
|
@@ -1,10 +1,13 @@
|
|
1
1
|
#!/bin/bash
|
2
2
|
|
3
|
-
# Data
|
4
3
|
echo "Configuring intercept mode"
|
5
4
|
stoobly-agent intercept configure --mode record --policy all
|
6
5
|
|
7
6
|
echo "Disabling intercept"
|
8
7
|
stoobly-agent intercept disable
|
9
8
|
|
10
|
-
|
9
|
+
entrypoint=$(dirname -- "$0")/configure
|
10
|
+
|
11
|
+
if [ -e "$entrypoint" ]; then
|
12
|
+
"$entrypoint"
|
13
|
+
fi
|
@@ -1,10 +1,13 @@
|
|
1
1
|
#!/bin/bash
|
2
2
|
|
3
|
-
# Data
|
4
3
|
echo "Configuring intercept mode"
|
5
4
|
stoobly-agent intercept configure --mode mock --policy found
|
6
5
|
|
7
6
|
echo "Enabling intercept"
|
8
7
|
stoobly-agent intercept enable
|
9
8
|
|
10
|
-
|
9
|
+
entrypoint=$(dirname -- "$0")/configure
|
10
|
+
|
11
|
+
if [ -e "$entrypoint" ]; then
|
12
|
+
"$entrypoint"
|
13
|
+
fi
|
@@ -1,5 +1,7 @@
|
|
1
1
|
#!/bin/bash
|
2
2
|
|
3
|
+
# Add custom Stoobly configuration here
|
4
|
+
|
3
5
|
scheme=$SERVICE_SCHEME
|
4
6
|
hostname=$SERVICE_HOSTNAME
|
5
7
|
port=$SERVICE_PORT
|
@@ -10,7 +12,7 @@ if [ "$scheme" = 'http' -a "$port" != '80' ] || [ "$scheme" = 'https' -a "$port"
|
|
10
12
|
url="$url:$port"
|
11
13
|
fi
|
12
14
|
|
13
|
-
# Match
|
15
|
+
# Match Rules
|
14
16
|
echo "Configuring match rules"
|
15
17
|
stoobly-agent config match set \
|
16
18
|
--method GET --method POST --method OPTIONS --method PUT --method DELETE \
|
@@ -1,4 +1,4 @@
|
|
1
|
-
stoobly_agent/__init__.py,sha256=
|
1
|
+
stoobly_agent/__init__.py,sha256=1iq11Ukg_29inNpGraPlJZyy108NR369Tfe2MmRTotM,44
|
2
2
|
stoobly_agent/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
stoobly_agent/app/api/__init__.py,sha256=FFSlVoTgjPfUNlYPr_7u6-P5Y4WOKyaUfAHtUcB-Xio,810
|
4
4
|
stoobly_agent/app/api/application_http_request_handler.py,sha256=jf4fkqjOiCeI2IM5Ro7ie0v_C6y0-7-5TIE_IKMPOfg,5513
|
@@ -85,7 +85,7 @@ stoobly_agent/app/cli/scaffold/docker/service/set_gateway_ports.py,sha256=jvlO5x
|
|
85
85
|
stoobly_agent/app/cli/scaffold/docker/service/types.py,sha256=qB-yYHlu-PZDc0HYgTUvE5bWNpHxaSThC3JUG8okR1k,88
|
86
86
|
stoobly_agent/app/cli/scaffold/docker/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
87
87
|
stoobly_agent/app/cli/scaffold/docker/workflow/build_decorator.py,sha256=vbmME0cbN2EnNRlzQ2umj7Y3L7aZT-EHqEpkBFMfe8U,758
|
88
|
-
stoobly_agent/app/cli/scaffold/docker/workflow/builder.py,sha256=
|
88
|
+
stoobly_agent/app/cli/scaffold/docker/workflow/builder.py,sha256=_ag6YU6uafV2ux5gC4nvxCexoiLSslxsUEyhU47g_o0,6960
|
89
89
|
stoobly_agent/app/cli/scaffold/docker/workflow/decorators_factory.py,sha256=Mi6SEFpG2MG9pymPLbPTWBMfosi1ThRAs5DXfjBz4Iw,643
|
90
90
|
stoobly_agent/app/cli/scaffold/docker/workflow/mock_decorator.py,sha256=pOvyrauHRB1cOB0OKBA3MQnM-Iwfbuwwop2TDSWs_jo,1067
|
91
91
|
stoobly_agent/app/cli/scaffold/docker/workflow/reverse_proxy_decorator.py,sha256=RiNOXaCj_TM-NkFVtu-jnZEIeG8HBKPrVqBbnfRNzio,2031
|
@@ -119,24 +119,24 @@ stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/.init,sha256=tL9PFDO
|
|
119
119
|
stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/configure,sha256=Nme7aSLA-IH1NXgmqRMPzOlKcUSRXqZd-kcuZa47IEk,11
|
120
120
|
stoobly_agent/app/cli/scaffold/templates/app/build/test/bin/init,sha256=O7czui9GFHbcoEC5I9MwkRyZvDGY42IwlyQwIWcgylY,12
|
121
121
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/.config.yml,sha256=T9VQz6OwAQpKdIoFrnfKAxuX_to0c6EhuWRLKM34Sr4,22
|
122
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/.docker-compose.base.yml,sha256=
|
122
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/.docker-compose.base.yml,sha256=ZekJ2lHjnPPI7hV44x3_2JzJFbn2iao9ZLWCgENfTOo,341
|
123
123
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/.docker-compose.mock.yml,sha256=cxAJ7CrI3AeuzQs9qw3fDSHTfYTQ1Bw_0egfy_FYRJ8,684
|
124
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.configure,sha256=
|
125
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.init,sha256=
|
124
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.configure,sha256=I4MhiSVbBaQWy056opYfPqnWPZmS5rKBW_Y26nDGMeY,256
|
125
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/.init,sha256=5xJbfpwGOmRj5lwK5e0JNlVpNd3WFUkZ0GaCUK40aDk,97
|
126
126
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/configure,sha256=Nme7aSLA-IH1NXgmqRMPzOlKcUSRXqZd-kcuZa47IEk,11
|
127
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/init,sha256=
|
127
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/bin/init,sha256=O7czui9GFHbcoEC5I9MwkRyZvDGY42IwlyQwIWcgylY,12
|
128
128
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/mock/docker-compose.yml,sha256=S-e2LOIwkifAtc-66n8cvvd6dpLtIsHGX1H0W4Nc1Oo,22
|
129
129
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/.docker-compose.record.yml,sha256=g_tkKEPhwUyg5QbXNBT_bo3CFw9qdhaQyWirMJDS9tc,688
|
130
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.configure,sha256=
|
131
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.init,sha256=
|
130
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.configure,sha256=Jp7ozDgj0x9D8PYS8CMhGNs4VfwJhVwBqzss8ygbLJU,258
|
131
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/.init,sha256=5xJbfpwGOmRj5lwK5e0JNlVpNd3WFUkZ0GaCUK40aDk,97
|
132
132
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/configure,sha256=Nme7aSLA-IH1NXgmqRMPzOlKcUSRXqZd-kcuZa47IEk,11
|
133
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/init,sha256=
|
133
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/bin/init,sha256=O7czui9GFHbcoEC5I9MwkRyZvDGY42IwlyQwIWcgylY,12
|
134
134
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/record/docker-compose.yml,sha256=S-e2LOIwkifAtc-66n8cvvd6dpLtIsHGX1H0W4Nc1Oo,22
|
135
135
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/.docker-compose.test.yml,sha256=ifPMJHPbAf6hI4vS1BWuzPOOt5SCaxHFnWA5BVnM9RY,685
|
136
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.configure,sha256=
|
137
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.init,sha256=
|
136
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.configure,sha256=I4MhiSVbBaQWy056opYfPqnWPZmS5rKBW_Y26nDGMeY,256
|
137
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/.init,sha256=5xJbfpwGOmRj5lwK5e0JNlVpNd3WFUkZ0GaCUK40aDk,97
|
138
138
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/configure,sha256=Nme7aSLA-IH1NXgmqRMPzOlKcUSRXqZd-kcuZa47IEk,11
|
139
|
-
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/init,sha256=
|
139
|
+
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/bin/init,sha256=O7czui9GFHbcoEC5I9MwkRyZvDGY42IwlyQwIWcgylY,12
|
140
140
|
stoobly_agent/app/cli/scaffold/templates/app/entrypoint/test/docker-compose.yml,sha256=S-e2LOIwkifAtc-66n8cvvd6dpLtIsHGX1H0W4Nc1Oo,22
|
141
141
|
stoobly_agent/app/cli/scaffold/templates/app/gateway/.config.yml,sha256=XnLQZMzzMMIwVycjyPN5QXsmRztkTFAna1kIHYuDfJQ,19
|
142
142
|
stoobly_agent/app/cli/scaffold/templates/app/gateway/.docker-compose.base.yml,sha256=L70ReUdGnfCDBxz9urdZoBskyAQ5fZ56KEzqzh6XRbk,257
|
@@ -157,22 +157,22 @@ stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/mock/.docker-compose.moc
|
|
157
157
|
stoobly_agent/app/cli/scaffold/templates/app/stoobly-ui/record/.docker-compose.record.yml,sha256=cbK8vJUnk8llJ6pIE65AxJxD6SSal2ugm5sKjtz3uRY,260
|
158
158
|
stoobly_agent/app/cli/scaffold/templates/constants.py,sha256=7dlRVpJWUi8ylwUJ-qQg5Hi_Y4fcMXEELaJFj3Ak2sU,1459
|
159
159
|
stoobly_agent/app/cli/scaffold/templates/factory.py,sha256=zzDMi56w-BWOUOw0DDGgmvrWep_JSqRjp-jQemfQwOo,1759
|
160
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.configure,sha256=
|
161
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.init,sha256=
|
162
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/configure,sha256=
|
163
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/init,sha256=
|
160
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.configure,sha256=0-fhtg7ZPAEWXqsgFk-W-qvqkHwrSTSI_LNyDMrDytY,102
|
161
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/.init,sha256=5xJbfpwGOmRj5lwK5e0JNlVpNd3WFUkZ0GaCUK40aDk,97
|
162
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/configure,sha256=BgZGK2dQz46wD9wKpUgkXXQhfL6WIMEMrnAp9_AmT5c,460
|
163
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/mock/bin/init,sha256=YxWVVQMEdGarcMtBcE1Sj2kdLgUgwY9kXp3MjPsVcmg,46
|
164
164
|
stoobly_agent/app/cli/scaffold/templates/workflow/mock/fixtures/.keep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
165
165
|
stoobly_agent/app/cli/scaffold/templates/workflow/mock/fixtures.yml,sha256=8DW2LN5WYg1hxmZkqr8o5dxLgDxHtBARFSUiNjz009Y,226
|
166
166
|
stoobly_agent/app/cli/scaffold/templates/workflow/mock/lifecycle_hooks.py,sha256=U7mlzT_wBR3uhHSG6CAyt5tBUNAvdIrCw33gdB-F294,467
|
167
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.configure,sha256=
|
168
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.init,sha256=
|
169
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/configure,sha256=
|
170
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/init,sha256=
|
167
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.configure,sha256=0-fhtg7ZPAEWXqsgFk-W-qvqkHwrSTSI_LNyDMrDytY,102
|
168
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/.init,sha256=5xJbfpwGOmRj5lwK5e0JNlVpNd3WFUkZ0GaCUK40aDk,97
|
169
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/configure,sha256=qBYEj_7kvYqf7wmRLPhX9y_cx2Msmn1VcDrq02hWT4w,744
|
170
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/record/bin/init,sha256=YxWVVQMEdGarcMtBcE1Sj2kdLgUgwY9kXp3MjPsVcmg,46
|
171
171
|
stoobly_agent/app/cli/scaffold/templates/workflow/record/lifecycle_hooks.py,sha256=4vaVc_gnDTCLEqtcZybIk5dcmXrKmGuesF6gc3-_kX8,473
|
172
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.configure,sha256=
|
173
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.init,sha256=
|
174
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/configure,sha256=
|
175
|
-
stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/init,sha256=
|
172
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.configure,sha256=0-fhtg7ZPAEWXqsgFk-W-qvqkHwrSTSI_LNyDMrDytY,102
|
173
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/.init,sha256=5xJbfpwGOmRj5lwK5e0JNlVpNd3WFUkZ0GaCUK40aDk,97
|
174
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/configure,sha256=ItenTr7B0h5h6I_ThE11X_al7HgsKbskJpU4dXt3X-g,454
|
175
|
+
stoobly_agent/app/cli/scaffold/templates/workflow/test/bin/init,sha256=YxWVVQMEdGarcMtBcE1Sj2kdLgUgwY9kXp3MjPsVcmg,46
|
176
176
|
stoobly_agent/app/cli/scaffold/templates/workflow/test/fixtures/.keep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
177
177
|
stoobly_agent/app/cli/scaffold/templates/workflow/test/fixtures.yml,sha256=8DW2LN5WYg1hxmZkqr8o5dxLgDxHtBARFSUiNjz009Y,226
|
178
178
|
stoobly_agent/app/cli/scaffold/templates/workflow/test/lifecycle_hooks.py,sha256=U7mlzT_wBR3uhHSG6CAyt5tBUNAvdIrCw33gdB-F294,467
|
@@ -707,8 +707,8 @@ stoobly_agent/test/mock_data/petstore.yaml,sha256=CCdliJky04Az4FIOkFA883uunwFDHL
|
|
707
707
|
stoobly_agent/test/mock_data/request_show_response.py,sha256=K_a0fP0QT58T8sX9PaM6hqtX1A1depZsqg_GsNPf--k,707
|
708
708
|
stoobly_agent/test/mock_data/uspto.yaml,sha256=6U5se7C3o-86J4m9xpOk9Npias399f5CbfWzR87WKwE,7835
|
709
709
|
stoobly_agent/test/test_helper.py,sha256=m_oAI7tmRYCNZdKfNqISWhMv3e44tjeYViQ3nTUfnos,1007
|
710
|
-
stoobly_agent-1.0.
|
711
|
-
stoobly_agent-1.0.
|
712
|
-
stoobly_agent-1.0.
|
713
|
-
stoobly_agent-1.0.
|
714
|
-
stoobly_agent-1.0.
|
710
|
+
stoobly_agent-1.0.3.dist-info/LICENSE,sha256=8QKGyy45eN76Zk52h8gu1DKX2B_gbWgZ3nzDLofEbaE,548
|
711
|
+
stoobly_agent-1.0.3.dist-info/METADATA,sha256=0IOpmMNWBtj6URpoxACy1qBi7Eor96-8OwCvJ4aHHQY,3388
|
712
|
+
stoobly_agent-1.0.3.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
713
|
+
stoobly_agent-1.0.3.dist-info/entry_points.txt,sha256=aq5wix5oC8MDQtmyPGU0xaFrsjJg7WH28NmXh2sc3Z8,56
|
714
|
+
stoobly_agent-1.0.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|