| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 1 | import http |
| 2 | import logging |
| 3 | import pytest |
| 4 | |
| 5 | from unittest.mock import MagicMock |
| 6 | from osm_common.dbbase import DbException |
| 7 | from osm_common.dbmemory import DbMemory |
| 8 | |
| 9 | __author__ = 'Eduardo Sousa <eduardosousa@av.it.pt>' |
| 10 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 11 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 12 | @pytest.fixture(scope="function", params=[True, False]) |
| 13 | def db_memory(request): |
| 14 | db = DbMemory(lock=request.param) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 15 | return db |
| 16 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 17 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 18 | @pytest.fixture(scope="function", params=[True, False]) |
| 19 | def db_memory_with_data(request): |
| 20 | db = DbMemory(lock=request.param) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 21 | |
| 22 | db.create("test", {"_id": 1, "data": 1}) |
| 23 | db.create("test", {"_id": 2, "data": 2}) |
| 24 | db.create("test", {"_id": 3, "data": 3}) |
| 25 | |
| 26 | return db |
| 27 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 28 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 29 | def empty_exception_message(): |
| 30 | return 'database exception ' |
| 31 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 32 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 33 | def get_one_exception_message(db_filter): |
| 34 | return "database exception Not found entry with filter='{}'".format(db_filter) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 35 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 36 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 37 | def get_one_multiple_exception_message(db_filter): |
| 38 | return "database exception Found more than one entry with filter='{}'".format(db_filter) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 39 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 40 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 41 | def del_one_exception_message(db_filter): |
| 42 | return "database exception Not found entry with filter='{}'".format(db_filter) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 43 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 44 | |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 45 | def replace_exception_message(value): |
| 46 | return "database exception Not found entry with _id='{}'".format(value) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 47 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 48 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 49 | def test_constructor(): |
| 50 | db = DbMemory() |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 51 | assert db.logger == logging.getLogger('db') |
| 52 | assert len(db.db) == 0 |
| 53 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 54 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 55 | def test_constructor_with_logger(): |
| 56 | logger_name = 'db_local' |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 57 | db = DbMemory(logger_name=logger_name) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 58 | assert db.logger == logging.getLogger(logger_name) |
| 59 | assert len(db.db) == 0 |
| 60 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 61 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 62 | def test_db_connect(): |
| 63 | logger_name = 'db_local' |
| 64 | config = {'logger_name': logger_name} |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 65 | db = DbMemory() |
| 66 | db.db_connect(config) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 67 | assert db.logger == logging.getLogger(logger_name) |
| 68 | assert len(db.db) == 0 |
| 69 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 70 | |
| Eduardo Sousa | 5ffda64 | 2018-05-09 19:42:00 +0100 | [diff] [blame] | 71 | def test_db_disconnect(db_memory): |
| 72 | db_memory.db_disconnect() |
| 73 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 74 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 75 | @pytest.mark.parametrize("table, db_filter", [ |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 76 | ("test", {}), |
| 77 | ("test", {"_id": 1}), |
| 78 | ("test", {"data": 1}), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 79 | ("test", {"_id": 1, "data": 1})]) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 80 | def test_get_list_with_empty_db(db_memory, table, db_filter): |
| 81 | result = db_memory.get_list(table, db_filter) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 82 | assert len(result) == 0 |
| 83 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 84 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 85 | @pytest.mark.parametrize("table, db_filter, expected_data", [ |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 86 | ("test", {}, [{"_id": 1, "data": 1}, {"_id": 2, "data": 2}, {"_id": 3, "data": 3}]), |
| 87 | ("test", {"_id": 1}, [{"_id": 1, "data": 1}]), |
| 88 | ("test", {"data": 1}, [{"_id": 1, "data": 1}]), |
| 89 | ("test", {"_id": 1, "data": 1}, [{"_id": 1, "data": 1}]), |
| 90 | ("test", {"_id": 2}, [{"_id": 2, "data": 2}]), |
| 91 | ("test", {"data": 2}, [{"_id": 2, "data": 2}]), |
| 92 | ("test", {"_id": 2, "data": 2}, [{"_id": 2, "data": 2}]), |
| 93 | ("test", {"_id": 4}, []), |
| 94 | ("test", {"data": 4}, []), |
| 95 | ("test", {"_id": 4, "data": 4}, []), |
| 96 | ("test_table", {}, []), |
| 97 | ("test_table", {"_id": 1}, []), |
| 98 | ("test_table", {"data": 1}, []), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 99 | ("test_table", {"_id": 1, "data": 1}, [])]) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 100 | def test_get_list_with_non_empty_db(db_memory_with_data, table, db_filter, expected_data): |
| 101 | result = db_memory_with_data.get_list(table, db_filter) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 102 | assert len(result) == len(expected_data) |
| 103 | for data in expected_data: |
| 104 | assert data in result |
| 105 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 106 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 107 | def test_get_list_exception(db_memory_with_data): |
| 108 | table = 'test' |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 109 | db_filter = {} |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 110 | db_memory_with_data._find = MagicMock(side_effect=Exception()) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 111 | with pytest.raises(DbException) as excinfo: |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 112 | db_memory_with_data.get_list(table, db_filter) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 113 | assert str(excinfo.value) == empty_exception_message() |
| 114 | assert excinfo.value.http_code == http.HTTPStatus.NOT_FOUND |
| 115 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 116 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 117 | @pytest.mark.parametrize("table, db_filter, expected_data", [ |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 118 | ("test", {"_id": 1}, {"_id": 1, "data": 1}), |
| 119 | ("test", {"_id": 2}, {"_id": 2, "data": 2}), |
| 120 | ("test", {"_id": 3}, {"_id": 3, "data": 3}), |
| 121 | ("test", {"data": 1}, {"_id": 1, "data": 1}), |
| 122 | ("test", {"data": 2}, {"_id": 2, "data": 2}), |
| 123 | ("test", {"data": 3}, {"_id": 3, "data": 3}), |
| 124 | ("test", {"_id": 1, "data": 1}, {"_id": 1, "data": 1}), |
| 125 | ("test", {"_id": 2, "data": 2}, {"_id": 2, "data": 2}), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 126 | ("test", {"_id": 3, "data": 3}, {"_id": 3, "data": 3})]) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 127 | def test_get_one(db_memory_with_data, table, db_filter, expected_data): |
| 128 | result = db_memory_with_data.get_one(table, db_filter) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 129 | assert result == expected_data |
| 130 | assert len(db_memory_with_data.db) == 1 |
| 131 | assert table in db_memory_with_data.db |
| 132 | assert len(db_memory_with_data.db[table]) == 3 |
| 133 | assert result in db_memory_with_data.db[table] |
| 134 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 135 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 136 | @pytest.mark.parametrize("table, db_filter, expected_data", [ |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 137 | ("test", {}, {"_id": 1, "data": 1})]) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 138 | def test_get_one_with_multiple_results(db_memory_with_data, table, db_filter, expected_data): |
| 139 | result = db_memory_with_data.get_one(table, db_filter, fail_on_more=False) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 140 | assert result == expected_data |
| 141 | assert len(db_memory_with_data.db) == 1 |
| 142 | assert table in db_memory_with_data.db |
| 143 | assert len(db_memory_with_data.db[table]) == 3 |
| 144 | assert result in db_memory_with_data.db[table] |
| 145 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 146 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 147 | def test_get_one_with_multiple_results_exception(db_memory_with_data): |
| 148 | table = "test" |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 149 | db_filter = {} |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 150 | with pytest.raises(DbException) as excinfo: |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 151 | db_memory_with_data.get_one(table, db_filter) |
| 152 | assert str(excinfo.value) == (empty_exception_message() + get_one_multiple_exception_message(db_filter)) |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 153 | # assert excinfo.value.http_code == http.HTTPStatus.CONFLICT |
| 154 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 155 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 156 | @pytest.mark.parametrize("table, db_filter", [ |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 157 | ("test", {"_id": 4}), |
| 158 | ("test", {"data": 4}), |
| 159 | ("test", {"_id": 4, "data": 4}), |
| 160 | ("test_table", {"_id": 4}), |
| 161 | ("test_table", {"data": 4}), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 162 | ("test_table", {"_id": 4, "data": 4})]) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 163 | def test_get_one_with_non_empty_db_exception(db_memory_with_data, table, db_filter): |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 164 | with pytest.raises(DbException) as excinfo: |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 165 | db_memory_with_data.get_one(table, db_filter) |
| 166 | assert str(excinfo.value) == (empty_exception_message() + get_one_exception_message(db_filter)) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 167 | assert excinfo.value.http_code == http.HTTPStatus.NOT_FOUND |
| 168 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 169 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 170 | @pytest.mark.parametrize("table, db_filter", [ |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 171 | ("test", {"_id": 4}), |
| 172 | ("test", {"data": 4}), |
| 173 | ("test", {"_id": 4, "data": 4}), |
| 174 | ("test_table", {"_id": 4}), |
| 175 | ("test_table", {"data": 4}), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 176 | ("test_table", {"_id": 4, "data": 4})]) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 177 | def test_get_one_with_non_empty_db_none(db_memory_with_data, table, db_filter): |
| 178 | result = db_memory_with_data.get_one(table, db_filter, fail_on_empty=False) |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 179 | assert result is None |
| 180 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 181 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 182 | @pytest.mark.parametrize("table, db_filter", [ |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 183 | ("test", {"_id": 4}), |
| 184 | ("test", {"data": 4}), |
| 185 | ("test", {"_id": 4, "data": 4}), |
| 186 | ("test_table", {"_id": 4}), |
| 187 | ("test_table", {"data": 4}), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 188 | ("test_table", {"_id": 4, "data": 4})]) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 189 | def test_get_one_with_empty_db_exception(db_memory, table, db_filter): |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 190 | with pytest.raises(DbException) as excinfo: |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 191 | db_memory.get_one(table, db_filter) |
| 192 | assert str(excinfo.value) == (empty_exception_message() + get_one_exception_message(db_filter)) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 193 | assert excinfo.value.http_code == http.HTTPStatus.NOT_FOUND |
| 194 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 195 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 196 | @pytest.mark.parametrize("table, db_filter", [ |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 197 | ("test", {"_id": 4}), |
| 198 | ("test", {"data": 4}), |
| 199 | ("test", {"_id": 4, "data": 4}), |
| 200 | ("test_table", {"_id": 4}), |
| 201 | ("test_table", {"data": 4}), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 202 | ("test_table", {"_id": 4, "data": 4})]) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 203 | def test_get_one_with_empty_db_none(db_memory, table, db_filter): |
| 204 | result = db_memory.get_one(table, db_filter, fail_on_empty=False) |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 205 | assert result is None |
| 206 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 207 | |
| 208 | def test_get_one_generic_exception(db_memory_with_data): |
| 209 | table = 'test' |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 210 | db_filter = {} |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 211 | db_memory_with_data._find = MagicMock(side_effect=Exception()) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 212 | with pytest.raises(DbException) as excinfo: |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 213 | db_memory_with_data.get_one(table, db_filter) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 214 | assert str(excinfo.value) == empty_exception_message() |
| 215 | assert excinfo.value.http_code == http.HTTPStatus.NOT_FOUND |
| 216 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 217 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 218 | @pytest.mark.parametrize("table, db_filter, expected_data", [ |
| Eduardo Sousa | 857731b | 2018-04-26 15:55:05 +0100 | [diff] [blame] | 219 | ("test", {}, []), |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 220 | ("test", {"_id": 1}, [{"_id": 2, "data": 2}, {"_id": 3, "data": 3}]), |
| 221 | ("test", {"_id": 2}, [{"_id": 1, "data": 1}, {"_id": 3, "data": 3}]), |
| 222 | ("test", {"_id": 1, "data": 1}, [{"_id": 2, "data": 2}, {"_id": 3, "data": 3}]), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 223 | ("test", {"_id": 2, "data": 2}, [{"_id": 1, "data": 1}, {"_id": 3, "data": 3}])]) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 224 | def test_del_list_with_non_empty_db(db_memory_with_data, table, db_filter, expected_data): |
| 225 | result = db_memory_with_data.del_list(table, db_filter) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 226 | assert result["deleted"] == (3 - len(expected_data)) |
| 227 | assert len(db_memory_with_data.db) == 1 |
| 228 | assert table in db_memory_with_data.db |
| 229 | assert len(db_memory_with_data.db[table]) == len(expected_data) |
| 230 | for data in expected_data: |
| 231 | assert data in db_memory_with_data.db[table] |
| 232 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 233 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 234 | @pytest.mark.parametrize("table, db_filter", [ |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 235 | ("test", {}), |
| 236 | ("test", {"_id": 1}), |
| 237 | ("test", {"_id": 2}), |
| 238 | ("test", {"data": 1}), |
| 239 | ("test", {"data": 2}), |
| 240 | ("test", {"_id": 1, "data": 1}), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 241 | ("test", {"_id": 2, "data": 2})]) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 242 | def test_del_list_with_empty_db(db_memory, table, db_filter): |
| 243 | result = db_memory.del_list(table, db_filter) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 244 | assert result['deleted'] == 0 |
| 245 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 246 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 247 | def test_del_list_generic_exception(db_memory_with_data): |
| 248 | table = 'test' |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 249 | db_filter = {} |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 250 | db_memory_with_data._find = MagicMock(side_effect=Exception()) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 251 | with pytest.raises(DbException) as excinfo: |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 252 | db_memory_with_data.del_list(table, db_filter) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 253 | assert str(excinfo.value) == empty_exception_message() |
| 254 | assert excinfo.value.http_code == http.HTTPStatus.NOT_FOUND |
| 255 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 256 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 257 | @pytest.mark.parametrize("table, db_filter, data", [ |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 258 | ("test", {}, {"_id": 1, "data": 1}), |
| 259 | ("test", {"_id": 1}, {"_id": 1, "data": 1}), |
| 260 | ("test", {"data": 1}, {"_id": 1, "data": 1}), |
| 261 | ("test", {"_id": 1, "data": 1}, {"_id": 1, "data": 1}), |
| 262 | ("test", {"_id": 2}, {"_id": 2, "data": 2}), |
| 263 | ("test", {"data": 2}, {"_id": 2, "data": 2}), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 264 | ("test", {"_id": 2, "data": 2}, {"_id": 2, "data": 2})]) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 265 | def test_del_one(db_memory_with_data, table, db_filter, data): |
| 266 | result = db_memory_with_data.del_one(table, db_filter) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 267 | assert result == {"deleted": 1} |
| 268 | assert len(db_memory_with_data.db) == 1 |
| 269 | assert table in db_memory_with_data.db |
| 270 | assert len(db_memory_with_data.db[table]) == 2 |
| 271 | assert data not in db_memory_with_data.db[table] |
| 272 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 273 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 274 | @pytest.mark.parametrize("table, db_filter", [ |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 275 | ("test", {}), |
| 276 | ("test", {"_id": 1}), |
| 277 | ("test", {"_id": 2}), |
| 278 | ("test", {"data": 1}), |
| 279 | ("test", {"data": 2}), |
| 280 | ("test", {"_id": 1, "data": 1}), |
| 281 | ("test", {"_id": 2, "data": 2}), |
| 282 | ("test_table", {}), |
| 283 | ("test_table", {"_id": 1}), |
| 284 | ("test_table", {"_id": 2}), |
| 285 | ("test_table", {"data": 1}), |
| 286 | ("test_table", {"data": 2}), |
| 287 | ("test_table", {"_id": 1, "data": 1}), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 288 | ("test_table", {"_id": 2, "data": 2})]) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 289 | def test_del_one_with_empty_db_exception(db_memory, table, db_filter): |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 290 | with pytest.raises(DbException) as excinfo: |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 291 | db_memory.del_one(table, db_filter) |
| 292 | assert str(excinfo.value) == (empty_exception_message() + del_one_exception_message(db_filter)) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 293 | assert excinfo.value.http_code == http.HTTPStatus.NOT_FOUND |
| 294 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 295 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 296 | @pytest.mark.parametrize("table, db_filter", [ |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 297 | ("test", {}), |
| 298 | ("test", {"_id": 1}), |
| 299 | ("test", {"_id": 2}), |
| 300 | ("test", {"data": 1}), |
| 301 | ("test", {"data": 2}), |
| 302 | ("test", {"_id": 1, "data": 1}), |
| 303 | ("test", {"_id": 2, "data": 2}), |
| 304 | ("test_table", {}), |
| 305 | ("test_table", {"_id": 1}), |
| 306 | ("test_table", {"_id": 2}), |
| 307 | ("test_table", {"data": 1}), |
| 308 | ("test_table", {"data": 2}), |
| 309 | ("test_table", {"_id": 1, "data": 1}), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 310 | ("test_table", {"_id": 2, "data": 2})]) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 311 | def test_del_one_with_empty_db_none(db_memory, table, db_filter): |
| 312 | result = db_memory.del_one(table, db_filter, fail_on_empty=False) |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 313 | assert result is None |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 314 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 315 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 316 | @pytest.mark.parametrize("table, db_filter", [ |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 317 | ("test", {"_id": 4}), |
| 318 | ("test", {"_id": 5}), |
| 319 | ("test", {"data": 4}), |
| 320 | ("test", {"data": 5}), |
| 321 | ("test", {"_id": 1, "data": 2}), |
| 322 | ("test", {"_id": 2, "data": 3}), |
| 323 | ("test_table", {}), |
| 324 | ("test_table", {"_id": 1}), |
| 325 | ("test_table", {"_id": 2}), |
| 326 | ("test_table", {"data": 1}), |
| 327 | ("test_table", {"data": 2}), |
| 328 | ("test_table", {"_id": 1, "data": 1}), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 329 | ("test_table", {"_id": 2, "data": 2})]) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 330 | def test_del_one_with_non_empty_db_exception(db_memory_with_data, table, db_filter): |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 331 | with pytest.raises(DbException) as excinfo: |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 332 | db_memory_with_data.del_one(table, db_filter) |
| 333 | assert str(excinfo.value) == (empty_exception_message() + del_one_exception_message(db_filter)) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 334 | assert excinfo.value.http_code == http.HTTPStatus.NOT_FOUND |
| 335 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 336 | |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 337 | @pytest.mark.parametrize("table, db_filter", [ |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 338 | ("test", {"_id": 4}), |
| 339 | ("test", {"_id": 5}), |
| 340 | ("test", {"data": 4}), |
| 341 | ("test", {"data": 5}), |
| 342 | ("test", {"_id": 1, "data": 2}), |
| 343 | ("test", {"_id": 2, "data": 3}), |
| 344 | ("test_table", {}), |
| 345 | ("test_table", {"_id": 1}), |
| 346 | ("test_table", {"_id": 2}), |
| 347 | ("test_table", {"data": 1}), |
| 348 | ("test_table", {"data": 2}), |
| 349 | ("test_table", {"_id": 1, "data": 1}), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 350 | ("test_table", {"_id": 2, "data": 2})]) |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 351 | def test_del_one_with_non_empty_db_none(db_memory_with_data, table, db_filter): |
| 352 | result = db_memory_with_data.del_one(table, db_filter, fail_on_empty=False) |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 353 | assert result is None |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 354 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 355 | |
| 356 | @pytest.mark.parametrize("fail_on_empty", [ |
| 357 | (True), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 358 | (False)]) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 359 | def test_del_one_generic_exception(db_memory_with_data, fail_on_empty): |
| 360 | table = 'test' |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 361 | db_filter = {} |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 362 | db_memory_with_data._find = MagicMock(side_effect=Exception()) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 363 | with pytest.raises(DbException) as excinfo: |
| tierno | 1e9a329 | 2018-11-05 18:18:45 +0100 | [diff] [blame] | 364 | db_memory_with_data.del_one(table, db_filter, fail_on_empty=fail_on_empty) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 365 | assert str(excinfo.value) == empty_exception_message() |
| 366 | assert excinfo.value.http_code == http.HTTPStatus.NOT_FOUND |
| 367 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 368 | |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 369 | @pytest.mark.parametrize("table, _id, indata", [ |
| 370 | ("test", 1, {"_id": 1, "data": 42}), |
| 371 | ("test", 1, {"_id": 1, "data": 42, "kk": 34}), |
| 372 | ("test", 1, {"_id": 1}), |
| 373 | ("test", 2, {"_id": 2, "data": 42}), |
| 374 | ("test", 2, {"_id": 2, "data": 42, "kk": 34}), |
| 375 | ("test", 2, {"_id": 2}), |
| 376 | ("test", 3, {"_id": 3, "data": 42}), |
| 377 | ("test", 3, {"_id": 3, "data": 42, "kk": 34}), |
| 378 | ("test", 3, {"_id": 3})]) |
| 379 | def test_replace(db_memory_with_data, table, _id, indata): |
| 380 | result = db_memory_with_data.replace(table, _id, indata) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 381 | assert result == {"updated": 1} |
| 382 | assert len(db_memory_with_data.db) == 1 |
| 383 | assert table in db_memory_with_data.db |
| 384 | assert len(db_memory_with_data.db[table]) == 3 |
| 385 | assert indata in db_memory_with_data.db[table] |
| 386 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 387 | |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 388 | @pytest.mark.parametrize("table, _id, indata", [ |
| 389 | ("test", 1, {"_id": 1, "data": 42}), |
| 390 | ("test", 2, {"_id": 2}), |
| 391 | ("test", 3, {"_id": 3})]) |
| 392 | def test_replace_without_data_exception(db_memory, table, _id, indata): |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 393 | with pytest.raises(DbException) as excinfo: |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 394 | db_memory.replace(table, _id, indata, fail_on_empty=True) |
| 395 | assert str(excinfo.value) == (replace_exception_message(_id)) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 396 | assert excinfo.value.http_code == http.HTTPStatus.NOT_FOUND |
| 397 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 398 | |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 399 | @pytest.mark.parametrize("table, _id, indata", [ |
| 400 | ("test", 1, {"_id": 1, "data": 42}), |
| 401 | ("test", 2, {"_id": 2}), |
| 402 | ("test", 3, {"_id": 3})]) |
| 403 | def test_replace_without_data_none(db_memory, table, _id, indata): |
| 404 | result = db_memory.replace(table, _id, indata, fail_on_empty=False) |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 405 | assert result is None |
| 406 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 407 | |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 408 | @pytest.mark.parametrize("table, _id, indata", [ |
| 409 | ("test", 11, {"_id": 11, "data": 42}), |
| 410 | ("test", 12, {"_id": 12}), |
| 411 | ("test", 33, {"_id": 33})]) |
| 412 | def test_replace_with_data_exception(db_memory_with_data, table, _id, indata): |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 413 | with pytest.raises(DbException) as excinfo: |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 414 | db_memory_with_data.replace(table, _id, indata, fail_on_empty=True) |
| 415 | assert str(excinfo.value) == (replace_exception_message(_id)) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 416 | assert excinfo.value.http_code == http.HTTPStatus.NOT_FOUND |
| 417 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 418 | |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 419 | @pytest.mark.parametrize("table, _id, indata", [ |
| 420 | ("test", 11, {"_id": 11, "data": 42}), |
| 421 | ("test", 12, {"_id": 12}), |
| 422 | ("test", 33, {"_id": 33})]) |
| 423 | def test_replace_with_data_none(db_memory_with_data, table, _id, indata): |
| 424 | result = db_memory_with_data.replace(table, _id, indata, fail_on_empty=False) |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 425 | assert result is None |
| 426 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 427 | |
| 428 | @pytest.mark.parametrize("fail_on_empty", [ |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 429 | True, |
| 430 | False]) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 431 | def test_replace_generic_exception(db_memory_with_data, fail_on_empty): |
| 432 | table = 'test' |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 433 | _id = {} |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 434 | indata = {'_id': 1, 'data': 1} |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 435 | db_memory_with_data._find = MagicMock(side_effect=Exception()) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 436 | with pytest.raises(DbException) as excinfo: |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 437 | db_memory_with_data.replace(table, _id, indata, fail_on_empty=fail_on_empty) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 438 | assert str(excinfo.value) == empty_exception_message() |
| 439 | assert excinfo.value.http_code == http.HTTPStatus.NOT_FOUND |
| 440 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 441 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 442 | @pytest.mark.parametrize("table, id, data", [ |
| 443 | ("test", "1", {"data": 1}), |
| 444 | ("test", "1", {"data": 2}), |
| 445 | ("test", "2", {"data": 1}), |
| 446 | ("test", "2", {"data": 2}), |
| 447 | ("test_table", "1", {"data": 1}), |
| 448 | ("test_table", "1", {"data": 2}), |
| 449 | ("test_table", "2", {"data": 1}), |
| 450 | ("test_table", "2", {"data": 2}), |
| 451 | ("test", "1", {"data_1": 1, "data_2": 2}), |
| 452 | ("test", "1", {"data_1": 2, "data_2": 1}), |
| 453 | ("test", "2", {"data_1": 1, "data_2": 2}), |
| 454 | ("test", "2", {"data_1": 2, "data_2": 1}), |
| 455 | ("test_table", "1", {"data_1": 1, "data_2": 2}), |
| 456 | ("test_table", "1", {"data_1": 2, "data_2": 1}), |
| 457 | ("test_table", "2", {"data_1": 1, "data_2": 2}), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 458 | ("test_table", "2", {"data_1": 2, "data_2": 1})]) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 459 | def test_create_with_empty_db_with_id(db_memory, table, id, data): |
| 460 | data_to_insert = data |
| 461 | data_to_insert['_id'] = id |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 462 | returned_id = db_memory.create(table, data_to_insert) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 463 | assert returned_id == id |
| 464 | assert len(db_memory.db) == 1 |
| 465 | assert table in db_memory.db |
| 466 | assert len(db_memory.db[table]) == 1 |
| 467 | assert data_to_insert in db_memory.db[table] |
| 468 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 469 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 470 | @pytest.mark.parametrize("table, id, data", [ |
| 471 | ("test", "4", {"data": 1}), |
| 472 | ("test", "5", {"data": 2}), |
| 473 | ("test", "4", {"data": 1}), |
| 474 | ("test", "5", {"data": 2}), |
| 475 | ("test_table", "4", {"data": 1}), |
| 476 | ("test_table", "5", {"data": 2}), |
| 477 | ("test_table", "4", {"data": 1}), |
| 478 | ("test_table", "5", {"data": 2}), |
| 479 | ("test", "4", {"data_1": 1, "data_2": 2}), |
| 480 | ("test", "5", {"data_1": 2, "data_2": 1}), |
| 481 | ("test", "4", {"data_1": 1, "data_2": 2}), |
| 482 | ("test", "5", {"data_1": 2, "data_2": 1}), |
| 483 | ("test_table", "4", {"data_1": 1, "data_2": 2}), |
| 484 | ("test_table", "5", {"data_1": 2, "data_2": 1}), |
| 485 | ("test_table", "4", {"data_1": 1, "data_2": 2}), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 486 | ("test_table", "5", {"data_1": 2, "data_2": 1})]) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 487 | def test_create_with_non_empty_db_with_id(db_memory_with_data, table, id, data): |
| 488 | data_to_insert = data |
| 489 | data_to_insert['_id'] = id |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 490 | returned_id = db_memory_with_data.create(table, data_to_insert) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 491 | assert returned_id == id |
| 492 | assert len(db_memory_with_data.db) == (1 if table == 'test' else 2) |
| 493 | assert table in db_memory_with_data.db |
| 494 | assert len(db_memory_with_data.db[table]) == (4 if table == 'test' else 1) |
| 495 | assert data_to_insert in db_memory_with_data.db[table] |
| 496 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 497 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 498 | @pytest.mark.parametrize("table, data", [ |
| 499 | ("test", {"data": 1}), |
| 500 | ("test", {"data": 2}), |
| 501 | ("test", {"data": 1}), |
| 502 | ("test", {"data": 2}), |
| 503 | ("test_table", {"data": 1}), |
| 504 | ("test_table", {"data": 2}), |
| 505 | ("test_table", {"data": 1}), |
| 506 | ("test_table", {"data": 2}), |
| 507 | ("test", {"data_1": 1, "data_2": 2}), |
| 508 | ("test", {"data_1": 2, "data_2": 1}), |
| 509 | ("test", {"data_1": 1, "data_2": 2}), |
| 510 | ("test", {"data_1": 2, "data_2": 1}), |
| 511 | ("test_table", {"data_1": 1, "data_2": 2}), |
| 512 | ("test_table", {"data_1": 2, "data_2": 1}), |
| 513 | ("test_table", {"data_1": 1, "data_2": 2}), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 514 | ("test_table", {"data_1": 2, "data_2": 1})]) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 515 | def test_create_with_empty_db_without_id(db_memory, table, data): |
| 516 | returned_id = db_memory.create(table, data) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 517 | assert len(db_memory.db) == 1 |
| 518 | assert table in db_memory.db |
| 519 | assert len(db_memory.db[table]) == 1 |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 520 | data_inserted = data |
| 521 | data_inserted['_id'] = returned_id |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 522 | assert data_inserted in db_memory.db[table] |
| 523 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 524 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 525 | @pytest.mark.parametrize("table, data", [ |
| 526 | ("test", {"data": 1}), |
| 527 | ("test", {"data": 2}), |
| 528 | ("test", {"data": 1}), |
| 529 | ("test", {"data": 2}), |
| 530 | ("test_table", {"data": 1}), |
| 531 | ("test_table", {"data": 2}), |
| 532 | ("test_table", {"data": 1}), |
| 533 | ("test_table", {"data": 2}), |
| 534 | ("test", {"data_1": 1, "data_2": 2}), |
| 535 | ("test", {"data_1": 2, "data_2": 1}), |
| 536 | ("test", {"data_1": 1, "data_2": 2}), |
| 537 | ("test", {"data_1": 2, "data_2": 1}), |
| 538 | ("test_table", {"data_1": 1, "data_2": 2}), |
| 539 | ("test_table", {"data_1": 2, "data_2": 1}), |
| 540 | ("test_table", {"data_1": 1, "data_2": 2}), |
| Eduardo Sousa | acbbdf2 | 2018-05-03 15:47:41 +0100 | [diff] [blame] | 541 | ("test_table", {"data_1": 2, "data_2": 1})]) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 542 | def test_create_with_non_empty_db_without_id(db_memory_with_data, table, data): |
| 543 | returned_id = db_memory_with_data.create(table, data) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 544 | assert len(db_memory_with_data.db) == (1 if table == 'test' else 2) |
| 545 | assert table in db_memory_with_data.db |
| 546 | assert len(db_memory_with_data.db[table]) == (4 if table == 'test' else 1) |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 547 | data_inserted = data |
| 548 | data_inserted['_id'] = returned_id |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 549 | assert data_inserted in db_memory_with_data.db[table] |
| 550 | |
| tierno | b20a902 | 2018-05-22 12:07:05 +0200 | [diff] [blame] | 551 | |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 552 | def test_create_with_exception(db_memory): |
| 553 | table = "test" |
| 554 | data = {"_id": 1, "data": 1} |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 555 | db_memory.db = MagicMock() |
| 556 | db_memory.db.__contains__.side_effect = Exception() |
| Eduardo Sousa | 0cb1b3c | 2018-04-26 00:36:45 +0100 | [diff] [blame] | 557 | with pytest.raises(DbException) as excinfo: |
| 558 | db_memory.create(table, data) |
| 559 | assert str(excinfo.value) == empty_exception_message() |
| 560 | assert excinfo.value.http_code == http.HTTPStatus.NOT_FOUND |