diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-05-19 15:59:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-19 15:59:31 +0000 |
commit | 0d84055eb6a3a22f33b606b8c73bd424116692e5 (patch) | |
tree | bea9851f5f1ae4a5378dd12f7335d7d0a8a0f402 /test/basic_features/utils_test.py | |
parent | 9a86932c8bbac06afc70ea190399e767763d877e (diff) | |
parent | 793a491923ba11adbe1024e0eb0402923165dafa (diff) | |
download | stable-diffusion-webui-gfx803-0d84055eb6a3a22f33b606b8c73bd424116692e5.tar.gz stable-diffusion-webui-gfx803-0d84055eb6a3a22f33b606b8c73bd424116692e5.tar.bz2 stable-diffusion-webui-gfx803-0d84055eb6a3a22f33b606b8c73bd424116692e5.zip |
Merge pull request #10291 from akx/test-overhaul
Test overhaul
Diffstat (limited to 'test/basic_features/utils_test.py')
-rw-r--r-- | test/basic_features/utils_test.py | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/test/basic_features/utils_test.py b/test/basic_features/utils_test.py deleted file mode 100644 index d9e46b5e..00000000 --- a/test/basic_features/utils_test.py +++ /dev/null @@ -1,64 +0,0 @@ -import unittest -import requests - - -class UtilsTests(unittest.TestCase): - def setUp(self): - self.url_options = "http://localhost:7860/sdapi/v1/options" - self.url_cmd_flags = "http://localhost:7860/sdapi/v1/cmd-flags" - self.url_samplers = "http://localhost:7860/sdapi/v1/samplers" - self.url_upscalers = "http://localhost:7860/sdapi/v1/upscalers" - self.url_sd_models = "http://localhost:7860/sdapi/v1/sd-models" - self.url_hypernetworks = "http://localhost:7860/sdapi/v1/hypernetworks" - self.url_face_restorers = "http://localhost:7860/sdapi/v1/face-restorers" - self.url_realesrgan_models = "http://localhost:7860/sdapi/v1/realesrgan-models" - self.url_prompt_styles = "http://localhost:7860/sdapi/v1/prompt-styles" - self.url_embeddings = "http://localhost:7860/sdapi/v1/embeddings" - - 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) - - def test_samplers(self): - self.assertEqual(requests.get(self.url_samplers).status_code, 200) - - def test_upscalers(self): - self.assertEqual(requests.get(self.url_upscalers).status_code, 200) - - def test_sd_models(self): - self.assertEqual(requests.get(self.url_sd_models).status_code, 200) - - def test_hypernetworks(self): - self.assertEqual(requests.get(self.url_hypernetworks).status_code, 200) - - def test_face_restorers(self): - self.assertEqual(requests.get(self.url_face_restorers).status_code, 200) - - def test_realesrgan_models(self): - self.assertEqual(requests.get(self.url_realesrgan_models).status_code, 200) - - def test_prompt_styles(self): - self.assertEqual(requests.get(self.url_prompt_styles).status_code, 200) - - def test_embeddings(self): - self.assertEqual(requests.get(self.url_embeddings).status_code, 200) - - -if __name__ == "__main__": - unittest.main() |