diff options
author | Vladimir Repin <32306715+mezotaken@users.noreply.github.com> | 2023-01-09 16:39:06 +0000 |
---|---|---|
committer | Vladimir Repin <32306715+mezotaken@users.noreply.github.com> | 2023-01-09 16:39:06 +0000 |
commit | 7d2bb86cce10ee6a8e81aaad810544a4ca38cec9 (patch) | |
tree | 3d61495076c92ab880314efddf2079427df06818 /test/basic_features/utils_test.py | |
parent | 3af488bdff983efc8e77f49b26c18847413754f4 (diff) | |
download | stable-diffusion-webui-gfx803-7d2bb86cce10ee6a8e81aaad810544a4ca38cec9.tar.gz stable-diffusion-webui-gfx803-7d2bb86cce10ee6a8e81aaad810544a4ca38cec9.tar.bz2 stable-diffusion-webui-gfx803-7d2bb86cce10ee6a8e81aaad810544a4ca38cec9.zip |
combine tests together, return set options test
Diffstat (limited to 'test/basic_features/utils_test.py')
-rw-r--r-- | test/basic_features/utils_test.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/basic_features/utils_test.py b/test/basic_features/utils_test.py index 765470c9..b3c4045a 100644 --- a/test/basic_features/utils_test.py +++ b/test/basic_features/utils_test.py @@ -18,6 +18,20 @@ class UtilsTests(unittest.TestCase): def test_options_get(self): self.assertEqual(requests.get(self.url_options).status_code, 200) + def test_options_write(self): + response = requests.get(self.url_options) + self.assertEqual(response.status_code, 200) + + pre_value = response.json()["send_seed"] + + self.assertEqual(requests.post(self.url_options, json={"send_seed":not pre_value}).status_code, 200) + + response = requests.get(self.url_options) + self.assertEqual(response.status_code, 200) + self.assertEqual(response.json()["send_seed"], not pre_value) + + requests.post(self.url_options, json={"send_seed": pre_value}) + def test_cmd_flags(self): self.assertEqual(requests.get(self.url_cmd_flags).status_code, 200) |