forked from mindsdb/mindsdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_pinecone_handler.py
More file actions
274 lines (245 loc) · 9.2 KB
/
test_pinecone_handler.py
File metadata and controls
274 lines (245 loc) · 9.2 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
# check if chroma_db is installed
import importlib
from unittest.mock import patch
import os
import pandas as pd
import pytest
from mindsdb_sql_parser import parse_sql
from tests.unit.executor_test_base import BaseExecutorTest
try:
pinecone = importlib.import_module("pinecone")
PINECONE_CLIENT_INSTALLED = True
except ImportError:
PINECONE_CLIENT_INSTALLED = False
# NOTE: These tests might fail since pinecone is eventually consistent. Some queries return wrong result when tested
@pytest.mark.skipif(not PINECONE_CLIENT_INSTALLED, reason="pinecone client is not installed")
class TestPineconeHandler(BaseExecutorTest):
def run_sql(self, sql):
ret = self.command_executor.execute_command(parse_sql(sql))
assert ret.error_code is None
if ret.data is not None:
return ret.data.to_df()
def setup_method(self):
super().setup_method()
# Replace with your pinecone key
self.api_key = os.environ['PINECONE_API_KEY']
self.environment = os.environ['PINECONE_ENV']
self.run_sql(f"""
CREATE DATABASE pinecone_test
WITH ENGINE = "pinecone",
PARAMETERS = {{
"api_key": "{self.api_key}",
"environment": "{self.environment}"
}}
""")
@patch("mindsdb.integrations.handlers.postgres_handler.Handler")
def test_create_with_select(self, postgres_handler_mock):
df = pd.DataFrame(
{
"id": ["id1", "id2"],
"content": ["this is a test", "this is a test"],
"metadata": [{"test": "test"}, {"test": "test"}],
"embeddings": [[1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0], [1.0, 2.0, 3.0, 5.0, 6.0, 8.0, 9.0, 3.0]],
}
)
self.set_handler(postgres_handler_mock, "pg", tables={"df": df})
sql = """
CREATE TABLE pinecone_test.testtable (
SELECT * FROM pg.df
)
"""
self.run_sql(sql)
@patch("mindsdb.integrations.handlers.postgres_handler.Handler")
def test_select_from(self, postgres_handler_mock):
df = pd.DataFrame(
{
"id": ["id1", "id2"],
"content": ["this is a test", "this is a test"],
"metadata": [{"test": "test"}, {"test": "test"}],
"embeddings": [[1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0], [1.0, 2.0, 3.0, 5.0, 6.0, 8.0, 9.0, 3.0]],
}
)
self.set_handler(postgres_handler_mock, "pg", tables={"testtable": df})
sql = """
CREATE TABLE pinecone_test.testtable (
SELECT * FROM pg.df
)
"""
self.run_sql(sql)
# query a table with id
sql = """
SELECT * FROM pinecone_test.testtable
WHERE id = 'id1'
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 2
# query a table with a search vector, with out limit
sql = """
SELECT * FROM pinecone_test.testtable
WHERE search_vector = '[1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]'
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 2
# query a table with a search vector, with limit
sql = """
SELECT * FROM pinecone_test.testtable
WHERE search_vector = '[1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]'
LIMIT 1
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 1
# query a table with a metadata filter and a search vector
sql = """
SELECT * FROM pinecone_test.testtable
WHERE testable.metadata.test = 'test'
AND search_vector = '[1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]'
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 2
@patch("mindsdb.integrations.handlers.postgres_handler.Handler")
def test_insert_into(self, postgres_handler_mock):
df = pd.DataFrame(
{
"id": ["id1", "id2"],
"content": ["this is a test", "this is a test"],
"metadata": [{"test": "test"}, {"test": "test"}],
"embeddings": [[1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0], [1.0, 2.0, 3.0, 5.0, 6.0, 8.0, 9.0, 3.0]],
}
)
df2 = pd.DataFrame(
{
"id": ["id1", "id2", "id3"],
"content": ["this is a test", "this is a test", "this is a test"],
"metadata": [{"test": "test1"}, {"test": "test2"}, {"test": "test3"}],
"embeddings": [
[1.0, 2.0, 3.0, 4.0, 3.0, 5.0, 2.0, 8.1],
[4.0, 2.0, 7.0, 4.0, 2.0, 5.0, 2.0, 9.0],
[5.0, 2.0, 3.0, 2.0, 3.0, 3.0, 2.0, 7.0],
],
}
)
self.set_handler(postgres_handler_mock, "pg", tables={"df": df, "df2": df2})
sql = """
CREATE TABLE pinecone_test.testtable (
SELECT * FROM pg.df
)
"""
self.run_sql(sql)
sql = """
INSERT INTO pinecone_test.testtable (
id,content,metadata,embeddings
)
VALUES (
'some_unique_id', 'this is a test', '{"test": "test"}', '[1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]'
)
"""
self.run_sql(sql)
# check if the data is inserted
sql = """
SELECT * FROM pinecone_test.testtable
WHERE id = 'some_unique_id'
"""
ret = self.run_sql(sql)
assert ret.shape[0] == 3
# insert into a table with existing id, shall work
sql = """
INSERT INTO pinecone_test.testtable (
id,content,metadata,embeddings
)
VALUES (
'id1', 'this is a test', '{"test": "tester"}', '[1.0, 2.0, 3.0, 4.0, 6.0, 7.0, 8.0, 9.0]'
)
"""
self.run_sql(sql)
@patch("mindsdb.integrations.handlers.postgres_handler.Handler")
def test_delete(self, postgres_handler_mock):
df = pd.DataFrame(
{
"id": ["id1", "id2"],
"content": ["this is a test", "this is a test"],
"metadata": [{"test": "test1"}, {"test": "test2"}],
"embeddings": [[1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0], [1.0, 2.0, 3.0, 5.0, 6.0, 8.0, 9.0, 3.0]],
}
)
self.set_handler(postgres_handler_mock, "pg", tables={"testtable": df})
# create a table
sql = """
CREATE TABLE pinecone_test.testtable (
SELECT * FROM pg.df
)
"""
self.run_sql(sql)
# delete from a table with a metadata filter
sql = """
DELETE FROM pinecone_test.testtable
WHERE testtable.metadata.test = 'test1'
"""
self.run_sql(sql)
# delete by id
sql = """
DELETE FROM pinecone_test.testtable
WHERE id = 'id2'
"""
self.run_sql(sql)
# delete from a table without any filters is not allowed
sql = """
DELETE FROM pinecone_test.testtable
"""
with pytest.raises(Exception):
self.run_sql(sql)
@pytest.mark.xfail(reason="update for pinecone is not implemented, use insert")
def test_update(self):
# update a table with a metadata filter
sql = """
UPDATE pinecone_test.testtable
SET metadata.test = 'test2'
WHERE metadata.test = 'test'
"""
# sql shoudl fail
with pytest.raises(Exception):
self.run_sql(sql)
@pytest.mark.xfail(reason="create table for vectordatabase is not well supported")
@patch("mindsdb.integrations.handlers.postgres_handler.Handler")
def test_create_table(self, postgres_handler_mock):
# create an empty table
sql = """
CREATE TABLE pinecone_test.testtable;
"""
self.run_sql(sql)
# create a table with the schema definition is not allowed
sql = """
CREATE TABLE pinecone_test.testtable (
id int,
metadata text,
embedding float[]
);
"""
with pytest.raises(Exception):
self.run_sql(sql)
@pytest.mark.xfail(reason="drop table for vectordatabase is not working")
@patch("mindsdb.integrations.handlers.postgres_handler.Handler")
def test_drop_table(self, postgres_handler_mock):
df = pd.DataFrame(
{
"id": ["id1", "id2"],
"content": ["this is a test", "this is a test"],
"metadata": [{"test": "test"}, {"test": "test"}],
"embeddings": [[1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0], [1.0, 2.0, 3.0, 5.0, 6.0, 8.0, 9.0, 3.0]],
}
)
self.set_handler(postgres_handler_mock, "pg", tables={"testtable": df})
sql = """
CREATE TABLE piecone_test.testtable(
SELECT * FROM pg.df
)
"""
self.run_sql(sql)
sql = """
DROP TABLE pinecone_test.testtable;
"""
self.run_sql(sql)
sql = """
DROP TABLE pinecone_test.testtable2;
"""
with pytest.raises(Exception):
self.run_sql(sql)