-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ENH]: add method to delete database
- Loading branch information
1 parent
457f855
commit 1b4c82b
Showing
18 changed files
with
332 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
import pytest | ||
from chromadb.api.client import AdminClient, Client | ||
from chromadb.config import System | ||
from chromadb.db.impl.sqlite import SqliteDB | ||
from chromadb.errors import InvalidCollectionException, NotFoundError | ||
from chromadb.test.conftest import NOT_CLUSTER_ONLY, ClientFactories | ||
|
||
|
||
def test_deletes_database(client_factories: ClientFactories) -> None: | ||
if not NOT_CLUSTER_ONLY: | ||
pytest.skip("This API is not yet supported by distributed") | ||
|
||
admin_client = client_factories.create_admin_client_from_system() | ||
|
||
admin_client.create_database("test_delete_database") | ||
|
||
client = client_factories.create_client(database="test_delete_database") | ||
collection = client.create_collection("foo") | ||
|
||
admin_client.delete_database("test_delete_database") | ||
|
||
with pytest.raises(NotFoundError): | ||
admin_client.get_database("test_delete_database") | ||
|
||
with pytest.raises(InvalidCollectionException): | ||
client.get_collection("foo") | ||
|
||
with pytest.raises(InvalidCollectionException): | ||
collection.upsert(["foo"], [0.0, 0.0, 0.0]) | ||
|
||
|
||
def test_does_not_affect_other_databases(client_factories: ClientFactories) -> None: | ||
if not NOT_CLUSTER_ONLY: | ||
pytest.skip("This API is not yet supported by distributed") | ||
|
||
admin_client = client_factories.create_admin_client_from_system() | ||
|
||
admin_client.create_database("first") | ||
admin_client.create_database("second") | ||
|
||
client = client_factories.create_client(database="second") | ||
collection = client.create_collection("test") | ||
|
||
admin_client.delete_database("first") | ||
|
||
assert client.get_collection("test").id == collection.id | ||
|
||
|
||
def test_collection_was_removed(sqlite_persistent: System) -> None: | ||
sqlite = sqlite_persistent.instance(SqliteDB) | ||
|
||
admin_client = AdminClient.from_system(sqlite_persistent) | ||
admin_client.create_database("test_delete_database") | ||
|
||
client = Client.from_system(sqlite_persistent, database="test_delete_database") | ||
client.create_collection("foo") | ||
|
||
admin_client.delete_database("test_delete_database") | ||
|
||
with pytest.raises(InvalidCollectionException): | ||
client.get_collection("foo") | ||
|
||
# Check table | ||
with sqlite.tx() as cur: | ||
row = cur.execute("SELECT COUNT(*) from collections").fetchone() | ||
assert row[0] == 0 | ||
|
||
|
||
def test_errors_when_database_does_not_exist(client_factories: ClientFactories) -> None: | ||
if not NOT_CLUSTER_ONLY: | ||
pytest.skip("This API is not yet supported by distributed") | ||
|
||
admin_client = client_factories.create_admin_client_from_system() | ||
|
||
with pytest.raises(NotFoundError): | ||
admin_client.delete_database("foo") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.