Skip to content

Commit

Permalink
Revert "Do not use easily-misread glyphs in Firestore auto-IDs." (#4589)
Browse files Browse the repository at this point in the history
* Revert "Removing redundant constant. (#4588)"

This reverts commit be0493b7c3f80bc6564cab3b924c60c939cf4897.

* Revert "Spanner: Changed _rows to list (#4583)"

This reverts commit 0e4fc3076470ec84fa4b2bd65c2108e46f425d0f.

* Revert "Do not use easily-misread glyphs in Firestore auto-IDs. (#4107)"

This reverts commit 8715da9.
  • Loading branch information
chemelnucfin committed Dec 13, 2017
1 parent 8715da9 commit bbfd2ff
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
11 changes: 6 additions & 5 deletions google/cloud/firestore_v1beta1/collection.py
Expand Up @@ -24,7 +24,8 @@
from google.cloud.firestore_v1beta1.proto import document_pb2


_AUTO_ID_CHARS = 'ABCDEFGHJKLMNPQRSTUVWXYZabcdefghjkmnpqrstuvwxyz23456789'
_AUTO_ID_CHARS = (
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789')


class CollectionReference(object):
Expand Down Expand Up @@ -92,7 +93,7 @@ def document(self, document_id=None):
Args:
document_id (Optional[str]): The document identifier
within the current collection. If not provided, will default
to a random 21 character string composed of digits,
to a random 20 character string composed of digits,
uppercase and lowercase and letters.
Returns:
Expand Down Expand Up @@ -138,7 +139,7 @@ def add(self, document_data, document_id=None):
document_id (Optional[str]): The document identifier within the
current collection. If not provided, an ID will be
automatically assigned by the server (the assigned ID will be
a random 21 character string composed of digits,
a random 20 character string composed of digits,
uppercase and lowercase letters).
Returns:
Expand Down Expand Up @@ -375,8 +376,8 @@ def _auto_id():
"""Generate a "random" automatically generated ID.
Returns:
str: A 21 character string composed of digits, uppercase and
str: A 20 character string composed of digits, uppercase and
lowercase and letters.
"""
return ''.join(
random.choice(_AUTO_ID_CHARS) for _ in six.moves.xrange(21))
random.choice(_AUTO_ID_CHARS) for _ in six.moves.xrange(20))
4 changes: 2 additions & 2 deletions tests/unit/test_collection.py
Expand Up @@ -427,12 +427,12 @@ def _call_fut():
def test_it(self, mock_rand_choice):
from google.cloud.firestore_v1beta1.collection import _AUTO_ID_CHARS

mock_result = '23456789abcdefghjkmnp'
mock_result = '0123456789abcdefghij'
mock_rand_choice.side_effect = list(mock_result)
result = self._call_fut()
self.assertEqual(result, mock_result)

mock_calls = [mock.call(_AUTO_ID_CHARS)] * 21
mock_calls = [mock.call(_AUTO_ID_CHARS)] * 20
self.assertEqual(mock_rand_choice.mock_calls, mock_calls)


Expand Down

0 comments on commit bbfd2ff

Please sign in to comment.