aboutsummaryrefslogtreecommitdiff
path: root/test/basic_features/utils_test.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-01-09 23:43:11 +0300
committerGitHub <noreply@github.com>2023-01-09 23:43:11 +0300
commit9bec415bab2e83bbad4067418bede336b2162e55 (patch)
tree4688a6f581591ede0a06bdc6ccc79fd723407c98 /test/basic_features/utils_test.py
parent1fbb6f9ebe48326a3b12ecf611105dbc4a46891e (diff)
parent00005ac9af10d58a75f7ce0aa04db78775808e93 (diff)
Merge pull request #6568 from mezotaken/fix-tests
Tests fixes and additions
Diffstat (limited to 'test/basic_features/utils_test.py')
-rw-r--r--test/basic_features/utils_test.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/basic_features/utils_test.py b/test/basic_features/utils_test.py
index 765470c9..94e00253 100644
--- a/test/basic_features/utils_test.py
+++ b/test/basic_features/utils_test.py
@@ -14,10 +14,25 @@ class UtilsTests(unittest.TestCase):
self.url_prompt_styles = "http://localhost:7860/sdapi/v1/prompt-styles"
self.url_artist_categories = "http://localhost:7860/sdapi/v1/artist-categories"
self.url_artists = "http://localhost:7860/sdapi/v1/artists"
+ 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)
@@ -48,6 +63,8 @@ class UtilsTests(unittest.TestCase):
def test_artists(self):
self.assertEqual(requests.get(self.url_artists).status_code, 200)
+ def test_embeddings(self):
+ self.assertEqual(requests.get(self.url_artists).status_code, 200)
if __name__ == "__main__":
unittest.main()