Skip to content

Commit

Permalink
Spanner: Fix database not found error, Closes #4071
Browse files Browse the repository at this point in the history
  • Loading branch information
chemelnucfin committed Dec 20, 2017
1 parent a62931a commit 3deb5fa
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 7 deletions.
12 changes: 5 additions & 7 deletions spanner/google/cloud/spanner_v1/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import threading

import google.auth.credentials
from google.api_core import exceptions
from google.gax.errors import GaxError
from google.gax.grpc import exc_to_code
from google.cloud.spanner_v1.gapic.spanner_client import SpannerClient
Expand Down Expand Up @@ -208,14 +209,11 @@ def create(self):
options=options,
)
except GaxError as exc:
if exc_to_code(exc.cause) == StatusCode.ALREADY_EXISTS:
raise Conflict(self.name)
elif exc_to_code(exc.cause) == StatusCode.NOT_FOUND:
raise NotFound('Instance not found: {name}'.format(
name=self._instance.name,
))
exception = exceptions.from_grpc_error(exc.cause)
if (exception.grpc_status_code == StatusCode.ALREADY_EXISTS
or exception.grpc_status_code == StatusCode.NOT_FOUND):
raise exception
raise

return future

def exists(self):
Expand Down
28 changes: 28 additions & 0 deletions spanner/tests/system/test_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@

from google.cloud._helpers import UTC
from google.cloud.exceptions import GrpcRendezvous
from google.cloud.exceptions import NotFound
from google.cloud.spanner_v1._helpers import TimestampWithNanoseconds
from google.cloud.spanner import Client
from google.cloud.spanner import KeyRange
Expand Down Expand Up @@ -282,6 +283,33 @@ def test_create_database(self):
for database in Config.INSTANCE.list_databases()]
self.assertIn(temp_db_id, database_ids)

def test_table_not_found(self):
temp_db_id = 'temp_db' + unique_resource_id('_')

table_name1 = 'MyTable'
table_name2 = 'NotMyTable'
self.assertNotEqual(table_name1, table_name2)

create_table = (
'CREATE TABLE {} (\n'
' Id STRING(36) NOT NULL,\n'
' Field1 STRING(36) NOT NULL\n'
') PRIMARY KEY (Id)')
create_table = create_table.format(table_name1)
create_index = 'CREATE INDEX IDX ON {} (Field1)'.format(table_name2)

temp_db = Config.INSTANCE.database(
temp_db_id,
ddl_statements=[
create_table,
create_index,
],
)
with self.assertRaisesRegexp(NotFound,
'404 Table not found: '
+ table_name2):
temp_db.create()

def test_update_database_ddl(self):
pool = BurstyPool()
temp_db_id = 'temp_db' + unique_resource_id('_')
Expand Down

0 comments on commit 3deb5fa

Please sign in to comment.