FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

gh-89083: improve UUIDv8 uniqueness tests by picnixz · Pull Request #128149 · python/cpython · GitHub

/ cpython Public
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .py  (1) All 1 file type selected
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
16 changes: 10 additions & 6 deletions Lib/test/test_uuid.py
This file contains hidden or 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
Expand Up @@ -707,12 +707,16 @@ def test_uuid8(self):
equal(u.int & 0x3fffffffffffffff, lo)

def test_uuid8_uniqueness(self):
# Test that UUIDv8-generated values are unique
# (up to a negligible probability of failure).
u1 = self.uuid.uuid8()
u2 = self.uuid.uuid8()
self.assertNotEqual(u1.int, u2.int)
self.assertEqual(u1.version, u2.version)
# Test that UUIDv8-generated values are unique (up to a negligible
# probability of failure). There are 122 bits of entropy and assuming
# that the underlying mt-19937-based random generator is sufficiently
# good, it is unlikely to have a collision of two UUIDs.
N = 1000
uuids = {self.uuid.uuid8() for _ in range(N)}
self.assertEqual(len(uuids), N)

versions = {u.version for u in uuids}
self.assertSetEqual(versions, {8})

@support.requires_fork()
def testIssue8621(self):
Expand Down

Back | FazBrowse Home | New Git URL