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
|
# This file is part of Hypothesis, which may be found at
# https://github.com/HypothesisWorks/hypothesis/
#
# Copyright the Hypothesis Authors.
# Individual contributors are listed in AUTHORS.rst and the git log.
#
# This Source Code Form is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at https://mozilla.org/MPL/2.0/.
import os
import pytest
from hypothesis import given, settings
from hypothesis.database import (
DirectoryBasedExampleDatabase,
ExampleDatabase,
InMemoryExampleDatabase,
MultiplexedDatabase,
ReadOnlyDatabase,
)
from hypothesis.strategies import binary, lists, tuples
small_settings = settings(max_examples=50)
@given(lists(tuples(binary(), binary())))
@small_settings
def test_backend_returns_what_you_put_in(xs):
backend = InMemoryExampleDatabase()
mapping = {}
for key, value in xs:
mapping.setdefault(key, set()).add(value)
backend.save(key, value)
for key, values in mapping.items():
backend_contents = list(backend.fetch(key))
distinct_backend_contents = set(backend_contents)
assert len(backend_contents) == len(distinct_backend_contents)
assert distinct_backend_contents == set(values)
def test_can_delete_keys():
backend = InMemoryExampleDatabase()
backend.save(b"foo", b"bar")
backend.save(b"foo", b"baz")
backend.delete(b"foo", b"bar")
assert list(backend.fetch(b"foo")) == [b"baz"]
def test_default_database_is_in_memory():
assert isinstance(ExampleDatabase(), InMemoryExampleDatabase)
def test_default_on_disk_database_is_dir(tmpdir):
assert isinstance(
ExampleDatabase(tmpdir.join("foo")), DirectoryBasedExampleDatabase
)
def test_selects_directory_based_if_already_directory(tmpdir):
path = str(tmpdir.join("hi.sqlite3"))
DirectoryBasedExampleDatabase(path).save(b"foo", b"bar")
assert isinstance(ExampleDatabase(path), DirectoryBasedExampleDatabase)
def test_does_not_error_when_fetching_when_not_exist(tmpdir):
db = DirectoryBasedExampleDatabase(tmpdir.join("examples"))
db.fetch(b"foo")
@pytest.fixture(scope="function", params=["memory", "directory"])
def exampledatabase(request, tmpdir):
if request.param == "memory":
return ExampleDatabase()
assert request.param == "directory"
return DirectoryBasedExampleDatabase(str(tmpdir.join("examples")))
def test_can_delete_a_key_that_is_not_present(exampledatabase):
exampledatabase.delete(b"foo", b"bar")
def test_can_fetch_a_key_that_is_not_present(exampledatabase):
assert list(exampledatabase.fetch(b"foo")) == []
def test_saving_a_key_twice_fetches_it_once(exampledatabase):
exampledatabase.save(b"foo", b"bar")
exampledatabase.save(b"foo", b"bar")
assert list(exampledatabase.fetch(b"foo")) == [b"bar"]
def test_can_close_a_database_after_saving(exampledatabase):
exampledatabase.save(b"foo", b"bar")
def test_class_name_is_in_repr(exampledatabase):
assert type(exampledatabase).__name__ in repr(exampledatabase)
def test_an_absent_value_is_present_after_it_moves(exampledatabase):
exampledatabase.move(b"a", b"b", b"c")
assert next(exampledatabase.fetch(b"b")) == b"c"
def test_an_absent_value_is_present_after_it_moves_to_self(exampledatabase):
exampledatabase.move(b"a", b"a", b"b")
assert next(exampledatabase.fetch(b"a")) == b"b"
def test_two_directory_databases_can_interact(tmpdir):
path = str(tmpdir)
db1 = DirectoryBasedExampleDatabase(path)
db2 = DirectoryBasedExampleDatabase(path)
db1.save(b"foo", b"bar")
assert list(db2.fetch(b"foo")) == [b"bar"]
db2.save(b"foo", b"bar")
db2.save(b"foo", b"baz")
assert sorted(db1.fetch(b"foo")) == [b"bar", b"baz"]
def test_can_handle_disappearing_files(tmpdir, monkeypatch):
path = str(tmpdir)
db = DirectoryBasedExampleDatabase(path)
db.save(b"foo", b"bar")
base_listdir = os.listdir
monkeypatch.setattr(
os, "listdir", lambda d: base_listdir(d) + ["this-does-not-exist"]
)
assert list(db.fetch(b"foo")) == [b"bar"]
def test_readonly_db_is_not_writable():
inner = InMemoryExampleDatabase()
wrapped = ReadOnlyDatabase(inner)
inner.save(b"key", b"value")
inner.save(b"key", b"value2")
wrapped.delete(b"key", b"value")
wrapped.move(b"key", b"key2", b"value2")
wrapped.save(b"key", b"value3")
assert set(wrapped.fetch(b"key")) == {b"value", b"value2"}
assert set(wrapped.fetch(b"key2")) == set()
def test_multiplexed_dbs_read_and_write_all():
a = InMemoryExampleDatabase()
b = InMemoryExampleDatabase()
multi = MultiplexedDatabase(a, b)
a.save(b"a", b"aa")
b.save(b"b", b"bb")
multi.save(b"c", b"cc")
multi.move(b"a", b"b", b"aa")
for db in (a, b, multi):
assert set(db.fetch(b"a")) == set()
assert set(db.fetch(b"c")) == {b"cc"}
got = list(multi.fetch(b"b"))
assert len(got) == 2
assert set(got) == {b"aa", b"bb"}
multi.delete(b"c", b"cc")
for db in (a, b, multi):
assert set(db.fetch(b"c")) == set()
|