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
|
import json
from unittest import SkipTest
import requests
from moto import settings
def test_set_transition():
if not settings.TEST_SERVER_MODE:
raise SkipTest("We only want to test ServerMode here")
post_body = {
"model_name": "test_model0",
"transition": {"progression": "waiter", "wait_times": 3},
}
resp = requests.post(
"http://localhost:5000/moto-api/state-manager/set-transition",
data=json.dumps(post_body),
)
assert resp.status_code == 201
resp = requests.get(
"http://localhost:5000/moto-api/state-manager/get-transition?model_name=test_model0"
)
assert resp.status_code == 200
assert json.loads(resp.content) == {"progression": "waiter", "wait_times": 3}
def test_unset_transition():
if not settings.TEST_SERVER_MODE:
raise SkipTest("We only want to test ServerMode here")
post_body = {
"model_name": "test::model1",
"transition": {"progression": "waiter", "wait_times": 3},
}
requests.post(
"http://localhost:5000/moto-api/state-manager/set-transition",
data=json.dumps(post_body),
)
post_body = {"model_name": "test::model1"}
resp = requests.post(
"http://localhost:5000/moto-api/state-manager/unset-transition",
data=json.dumps(post_body),
)
resp = requests.get(
"http://localhost:5000/moto-api/state-manager/get-transition?model_name=test::model1"
)
assert resp.status_code == 200
assert json.loads(resp.content) == {"progression": "immediate"}
def test_get_default_transition():
if not settings.TEST_SERVER_MODE:
raise SkipTest("We only want to test ServerMode here")
resp = requests.get(
"http://localhost:5000/moto-api/state-manager/get-transition?model_name=unknown"
)
assert resp.status_code == 200
assert json.loads(resp.content) == {"progression": "immediate"}
|