blob: 967cf1ee7cde6f802622c75b625502f62a392101 [file] [log] [blame]
Wyatt Heplerb7609542020-01-24 10:29:54 -08001// Copyright 2020 The Pigweed Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not
4// use this file except in compliance with the License. You may obtain a copy of
5// the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12// License for the specific language governing permissions and limitations under
13// the License.
14
Wyatt Hepler16b04522020-02-07 16:00:14 -080015#define DUMP_KVS_STATE_TO_FILE 0
16#define USE_MEMORY_BUFFER 1
17#define PW_LOG_USE_ULTRA_SHORT_NAMES 1
18
Wyatt Heplerb7609542020-01-24 10:29:54 -080019#include "pw_kvs/key_value_store.h"
20
Wyatt Hepleracaacf92020-01-24 10:58:30 -080021#include <array>
22#include <cstdio>
Wyatt Hepler4da1fcb2020-01-30 17:32:18 -080023#include <cstring>
Wyatt Heplere2cbadf2020-06-22 11:21:45 -070024#include <span>
Wyatt Heplerbc6332c2020-02-10 16:34:19 -080025
26#if DUMP_KVS_STATE_TO_FILE
Wyatt Hepler16b04522020-02-07 16:00:14 -080027#include <vector>
Wyatt Heplerbc6332c2020-02-10 16:34:19 -080028#endif // DUMP_KVS_STATE_TO_FILE
Wyatt Hepler2ad60672020-01-21 08:00:16 -080029
30#include "gtest/gtest.h"
Wyatt Hepler6b3a6c92020-08-03 10:15:56 -070031#include "pw_bytes/array.h"
Wyatt Hepler12f66a12020-09-02 15:43:02 -070032#include "pw_checksum/crc16_ccitt.h"
Wyatt Heplerec4b9352020-01-31 15:51:50 -080033#include "pw_kvs/crc16_checksum.h"
David Rogers6a262b42020-07-09 03:27:41 -070034#include "pw_kvs/fake_flash_memory.h"
Wyatt Hepler2ad60672020-01-21 08:00:16 -080035#include "pw_kvs/flash_memory.h"
Wyatt Heplerbdd8e5a2020-02-20 19:27:26 -080036#include "pw_kvs/internal/entry.h"
Wyatt Hepler4da1fcb2020-01-30 17:32:18 -080037#include "pw_log/log.h"
Wyatt Hepler2ad60672020-01-21 08:00:16 -080038#include "pw_status/status.h"
Keir Mierle8c352dc2020-02-02 13:58:19 -080039#include "pw_string/string_builder.h"
Wyatt Heplerb7609542020-01-24 10:29:54 -080040
Wyatt Hepler2ad60672020-01-21 08:00:16 -080041namespace pw::kvs {
Wyatt Heplerb7609542020-01-24 10:29:54 -080042namespace {
43
Wyatt Hepler1fc11042020-02-19 17:17:51 -080044using internal::EntryHeader;
Wyatt Hepleracaacf92020-01-24 10:58:30 -080045using std::byte;
46
Wyatt Hepler38ce30f2020-02-19 11:48:31 -080047constexpr size_t kMaxEntries = 256;
48constexpr size_t kMaxUsableSectors = 256;
49
Keir Mierle8c352dc2020-02-02 13:58:19 -080050// This is a self contained flash unit with both memory and a single partition.
51template <uint32_t sector_size_bytes, uint16_t sector_count>
52struct FlashWithPartitionFake {
53 // Default to 16 byte alignment, which is common in practice.
54 FlashWithPartitionFake() : FlashWithPartitionFake(16) {}
55 FlashWithPartitionFake(size_t alignment_bytes)
56 : memory(alignment_bytes), partition(&memory, 0, memory.sector_count()) {}
57
David Rogersd64cc012020-05-26 12:37:37 -070058 FakeFlashMemoryBuffer<sector_size_bytes, sector_count> memory;
Keir Mierle8c352dc2020-02-02 13:58:19 -080059 FlashPartition partition;
60
61 public:
Wyatt Hepler16b04522020-02-07 16:00:14 -080062#if DUMP_KVS_STATE_TO_FILE
Keir Mierle8c352dc2020-02-02 13:58:19 -080063 Status Dump(const char* filename) {
64 std::FILE* out_file = std::fopen(filename, "w+");
65 if (out_file == nullptr) {
66 PW_LOG_ERROR("Failed to dump to %s", filename);
Wyatt Heplerd78f7c62020-09-28 14:27:32 -070067 return Status::DataLoss();
Keir Mierle8c352dc2020-02-02 13:58:19 -080068 }
69 std::vector<std::byte> out_vec(memory.size_bytes());
70 Status status =
Wyatt Heplere2cbadf2020-06-22 11:21:45 -070071 memory.Read(0, std::span<std::byte>(out_vec.data(), out_vec.size()));
Wyatt Hepler1b3da3a2021-01-07 13:26:57 -080072 if (status != OkStatus()) {
Keir Mierle8c352dc2020-02-02 13:58:19 -080073 fclose(out_file);
74 return status;
75 }
76
77 size_t written =
78 std::fwrite(out_vec.data(), 1, memory.size_bytes(), out_file);
79 if (written != memory.size_bytes()) {
80 PW_LOG_ERROR("Failed to dump to %s, written=%u",
81 filename,
82 static_cast<unsigned>(written));
Wyatt Heplerd78f7c62020-09-28 14:27:32 -070083 status = Status::DataLoss();
Keir Mierle8c352dc2020-02-02 13:58:19 -080084 } else {
85 PW_LOG_INFO("Dumped to %s", filename);
Wyatt Hepler1b3da3a2021-01-07 13:26:57 -080086 status = OkStatus();
Keir Mierle8c352dc2020-02-02 13:58:19 -080087 }
88
89 fclose(out_file);
90 return status;
91 }
92#else
Wyatt Hepler1b3da3a2021-01-07 13:26:57 -080093 Status Dump(const char*) { return OkStatus(); }
Wyatt Hepler16b04522020-02-07 16:00:14 -080094#endif // DUMP_KVS_STATE_TO_FILE
Keir Mierle8c352dc2020-02-02 13:58:19 -080095};
96
97typedef FlashWithPartitionFake<4 * 128 /*sector size*/, 6 /*sectors*/> Flash;
98
David Rogersd64cc012020-05-26 12:37:37 -070099FakeFlashMemoryBuffer<1024, 60> large_test_flash(8);
Wyatt Heplerb7609542020-01-24 10:29:54 -0800100FlashPartition large_test_partition(&large_test_flash,
101 0,
Wyatt Hepler4da1fcb2020-01-30 17:32:18 -0800102 large_test_flash.sector_count());
Wyatt Heplerb7609542020-01-24 10:29:54 -0800103
Wyatt Hepleracaacf92020-01-24 10:58:30 -0800104constexpr std::array<const char*, 3> keys{"TestKey1", "Key2", "TestKey3"};
Wyatt Heplerb7609542020-01-24 10:29:54 -0800105
Wyatt Hepler2e568872020-02-03 18:00:00 -0800106ChecksumCrc16 checksum;
David Rogers436b3aa2020-08-03 08:44:10 -0700107// For KVS magic value always use a random 32 bit integer rather than a
108// human readable 4 bytes. See pw_kvs/format.h for more information.
109constexpr EntryFormat default_format{.magic = 0xa6cb3c16,
Armando Montanez888370d2020-05-01 18:29:22 -0700110 .checksum = &checksum};
Wyatt Heplerb7609542020-01-24 10:29:54 -0800111
Wyatt Heplerb7609542020-01-24 10:29:54 -0800112} // namespace
113
David Rogers178002a2020-06-16 13:52:54 -0700114TEST(InitCheck, TooFewSectors) {
115 // Use test flash with 1 x 4k sectors, 16 byte alignment
116 FakeFlashMemoryBuffer<4 * 1024, 1> test_flash(16);
117 FlashPartition test_partition(&test_flash, 0, test_flash.sector_count());
118
David Rogers436b3aa2020-08-03 08:44:10 -0700119 // For KVS magic value always use a random 32 bit integer rather than a
120 // human readable 4 bytes. See pw_kvs/format.h for more information.
121 constexpr EntryFormat format{.magic = 0x89bb14d2, .checksum = nullptr};
David Rogers178002a2020-06-16 13:52:54 -0700122 KeyValueStoreBuffer<kMaxEntries, kMaxUsableSectors> kvs(&test_partition,
123 format);
124
Wyatt Heplerd78f7c62020-09-28 14:27:32 -0700125 EXPECT_EQ(kvs.Init(), Status::FailedPrecondition());
David Rogers178002a2020-06-16 13:52:54 -0700126}
127
128TEST(InitCheck, ZeroSectors) {
129 // Use test flash with 1 x 4k sectors, 16 byte alignment
130 FakeFlashMemoryBuffer<4 * 1024, 1> test_flash(16);
131
132 // Set FlashPartition to have 0 sectors.
133 FlashPartition test_partition(&test_flash, 0, 0);
134
David Rogers436b3aa2020-08-03 08:44:10 -0700135 // For KVS magic value always use a random 32 bit integer rather than a
136 // human readable 4 bytes. See pw_kvs/format.h for more information.
137 constexpr EntryFormat format{.magic = 0xd1da57c1, .checksum = nullptr};
David Rogers178002a2020-06-16 13:52:54 -0700138 KeyValueStoreBuffer<kMaxEntries, kMaxUsableSectors> kvs(&test_partition,
139 format);
140
Wyatt Heplerd78f7c62020-09-28 14:27:32 -0700141 EXPECT_EQ(kvs.Init(), Status::FailedPrecondition());
David Rogers178002a2020-06-16 13:52:54 -0700142}
143
144TEST(InitCheck, TooManySectors) {
145 // Use test flash with 1 x 4k sectors, 16 byte alignment
146 FakeFlashMemoryBuffer<4 * 1024, 5> test_flash(16);
147
148 // Set FlashPartition to have 0 sectors.
149 FlashPartition test_partition(&test_flash, 0, test_flash.sector_count());
150
David Rogers436b3aa2020-08-03 08:44:10 -0700151 // For KVS magic value always use a random 32 bit integer rather than a
152 // human readable 4 bytes. See pw_kvs/format.h for more information.
153 constexpr EntryFormat format{.magic = 0x610f6d17, .checksum = nullptr};
David Rogers178002a2020-06-16 13:52:54 -0700154 KeyValueStoreBuffer<kMaxEntries, 2> kvs(&test_partition, format);
155
Wyatt Heplerd78f7c62020-09-28 14:27:32 -0700156 EXPECT_EQ(kvs.Init(), Status::FailedPrecondition());
David Rogers178002a2020-06-16 13:52:54 -0700157}
158
Wyatt Hepler1b3da3a2021-01-07 13:26:57 -0800159#define ASSERT_OK(expr) ASSERT_EQ(OkStatus(), expr)
160#define EXPECT_OK(expr) EXPECT_EQ(OkStatus(), expr)
Keir Mierle8c352dc2020-02-02 13:58:19 -0800161
Wyatt Hepler595cf012020-02-05 09:31:02 -0800162TEST(InMemoryKvs, WriteOneKeyMultipleTimes) {
Keir Mierle8c352dc2020-02-02 13:58:19 -0800163 // Create and erase the fake flash. It will persist across reloads.
164 Flash flash;
165 ASSERT_OK(flash.partition.Erase());
166
167 int num_reloads = 2;
168 for (int reload = 0; reload < num_reloads; ++reload) {
169 DBG("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
170 DBG("xxx xxxx");
171 DBG("xxx Reload %2d xxxx", reload);
172 DBG("xxx xxxx");
173 DBG("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
174
David Rogers436b3aa2020-08-03 08:44:10 -0700175 // Create and initialize the KVS. For KVS magic value always use a random 32
176 // bit integer rather than a human readable 4 bytes. See pw_kvs/format.h for
177 // more information.
178 constexpr EntryFormat format{.magic = 0x83a9257, .checksum = nullptr};
Wyatt Hepler38ce30f2020-02-19 11:48:31 -0800179 KeyValueStoreBuffer<kMaxEntries, kMaxUsableSectors> kvs(&flash.partition,
180 format);
Keir Mierle8c352dc2020-02-02 13:58:19 -0800181 ASSERT_OK(kvs.Init());
182
183 // Write the same entry many times.
184 const char* key = "abcd";
Wyatt Heplere3288e12020-02-26 13:05:07 -0800185 const size_t num_writes = 99;
Keir Mierle8c352dc2020-02-02 13:58:19 -0800186 uint32_t written_value;
187 EXPECT_EQ(kvs.size(), (reload == 0) ? 0 : 1u);
188 for (uint32_t i = 0; i < num_writes; ++i) {
Wyatt Heplere3288e12020-02-26 13:05:07 -0800189 DBG("PUT #%zu for key %s with value %zu", size_t(i), key, size_t(i));
Keir Mierle8c352dc2020-02-02 13:58:19 -0800190
191 written_value = i + 0xfc; // Prevent accidental pass with zero.
192 EXPECT_OK(kvs.Put(key, written_value));
193 EXPECT_EQ(kvs.size(), 1u);
194 }
195
196 // Verify that we can read the value back.
Wyatt Heplere3288e12020-02-26 13:05:07 -0800197 DBG("GET final value for key: %s", key);
Keir Mierle8c352dc2020-02-02 13:58:19 -0800198 uint32_t actual_value;
199 EXPECT_OK(kvs.Get(key, &actual_value));
200 EXPECT_EQ(actual_value, written_value);
201
Keir Mierle8c352dc2020-02-02 13:58:19 -0800202 char fname_buf[64] = {'\0'};
203 snprintf(&fname_buf[0],
204 sizeof(fname_buf),
205 "WriteOneKeyMultipleTimes_%d.bin",
206 reload);
207 flash.Dump(fname_buf);
208 }
209}
210
211TEST(InMemoryKvs, WritingMultipleKeysIncreasesSize) {
212 // Create and erase the fake flash.
213 Flash flash;
214 ASSERT_OK(flash.partition.Erase());
215
David Rogers436b3aa2020-08-03 08:44:10 -0700216 // Create and initialize the KVS. For KVS magic value always use a random 32
217 // bit integer rather than a human readable 4 bytes. See pw_kvs/format.h for
218 // more information.
219 constexpr EntryFormat format{.magic = 0x2ed3a058, .checksum = nullptr};
Wyatt Hepler38ce30f2020-02-19 11:48:31 -0800220 KeyValueStoreBuffer<kMaxEntries, kMaxUsableSectors> kvs(&flash.partition,
221 format);
Keir Mierle8c352dc2020-02-02 13:58:19 -0800222 ASSERT_OK(kvs.Init());
223
224 // Write the same entry many times.
225 const size_t num_writes = 10;
226 EXPECT_EQ(kvs.size(), 0u);
227 for (size_t i = 0; i < num_writes; ++i) {
228 StringBuffer<150> key;
229 key << "key_" << i;
Wyatt Heplere3288e12020-02-26 13:05:07 -0800230 DBG("PUT #%zu for key %s with value %zu", i, key.c_str(), i);
Keir Mierle8c352dc2020-02-02 13:58:19 -0800231
232 size_t value = i + 77; // Prevent accidental pass with zero.
233 EXPECT_OK(kvs.Put(key.view(), value));
234 EXPECT_EQ(kvs.size(), i + 1);
235 }
Keir Mierle8c352dc2020-02-02 13:58:19 -0800236 flash.Dump("WritingMultipleKeysIncreasesSize.bin");
237}
238
239TEST(InMemoryKvs, WriteAndReadOneKey) {
240 // Create and erase the fake flash.
241 Flash flash;
242 ASSERT_OK(flash.partition.Erase());
243
244 // Create and initialize the KVS.
David Rogers436b3aa2020-08-03 08:44:10 -0700245 // For KVS magic value always use a random 32 bit integer rather than a
246 // human readable 4 bytes. See pw_kvs/format.h for more information.
247 constexpr EntryFormat format{.magic = 0x5d70896, .checksum = nullptr};
Wyatt Hepler38ce30f2020-02-19 11:48:31 -0800248 KeyValueStoreBuffer<kMaxEntries, kMaxUsableSectors> kvs(&flash.partition,
249 format);
Keir Mierle8c352dc2020-02-02 13:58:19 -0800250 ASSERT_OK(kvs.Init());
251
David Rogersc0104462020-05-08 15:50:23 -0700252 // Add one entry.
Keir Mierle8c352dc2020-02-02 13:58:19 -0800253 const char* key = "Key1";
Wyatt Heplere3288e12020-02-26 13:05:07 -0800254 DBG("PUT value for key: %s", key);
Keir Mierle8c352dc2020-02-02 13:58:19 -0800255 uint8_t written_value = 0xDA;
256 ASSERT_OK(kvs.Put(key, written_value));
257 EXPECT_EQ(kvs.size(), 1u);
258
Wyatt Heplere3288e12020-02-26 13:05:07 -0800259 DBG("GET value for key: %s", key);
Keir Mierle8c352dc2020-02-02 13:58:19 -0800260 uint8_t actual_value;
261 ASSERT_OK(kvs.Get(key, &actual_value));
262 EXPECT_EQ(actual_value, written_value);
263
264 EXPECT_EQ(kvs.size(), 1u);
265}
266
David Rogersc0104462020-05-08 15:50:23 -0700267TEST(InMemoryKvs, WriteOneKeyValueMultipleTimes) {
268 // Create and erase the fake flash.
269 Flash flash;
270 ASSERT_OK(flash.partition.Erase());
271
272 // Create and initialize the KVS.
David Rogersc0104462020-05-08 15:50:23 -0700273 KeyValueStoreBuffer<kMaxEntries, kMaxUsableSectors> kvs(&flash.partition,
David Rogersd50eb1c2020-05-12 17:46:36 -0700274 default_format);
David Rogersc0104462020-05-08 15:50:23 -0700275 ASSERT_OK(kvs.Init());
276
277 // Add one entry, with the same key and value, multiple times.
278 const char* key = "Key1";
279 uint8_t written_value = 0xDA;
280 for (int i = 0; i < 50; i++) {
281 DBG("PUT [%d] value for key: %s", i, key);
282 ASSERT_OK(kvs.Put(key, written_value));
283 EXPECT_EQ(kvs.size(), 1u);
284 }
285
286 DBG("GET value for key: %s", key);
287 uint8_t actual_value;
288 ASSERT_OK(kvs.Get(key, &actual_value));
289 EXPECT_EQ(actual_value, written_value);
290
291 // Verify that only one entry was written to the KVS.
292 EXPECT_EQ(kvs.size(), 1u);
293 EXPECT_EQ(kvs.transaction_count(), 1u);
294 KeyValueStore::StorageStats stats = kvs.GetStorageStats();
295 EXPECT_EQ(stats.reclaimable_bytes, 0u);
296}
297
Keir Mierle8c352dc2020-02-02 13:58:19 -0800298TEST(InMemoryKvs, Basic) {
299 const char* key1 = "Key1";
300 const char* key2 = "Key2";
301
302 // Create and erase the fake flash.
303 Flash flash;
Wyatt Hepler1b3da3a2021-01-07 13:26:57 -0800304 ASSERT_EQ(OkStatus(), flash.partition.Erase());
Keir Mierle8c352dc2020-02-02 13:58:19 -0800305
306 // Create and initialize the KVS.
David Rogers436b3aa2020-08-03 08:44:10 -0700307 // For KVS magic value always use a random 32 bit integer rather than a
308 // human readable 4 bytes. See pw_kvs/format.h for more information.
309 constexpr EntryFormat format{.magic = 0x7bf19895, .checksum = nullptr};
Wyatt Hepler38ce30f2020-02-19 11:48:31 -0800310 KeyValueStoreBuffer<kMaxEntries, kMaxUsableSectors> kvs(&flash.partition,
311 format);
Keir Mierle8c352dc2020-02-02 13:58:19 -0800312 ASSERT_OK(kvs.Init());
313
314 // Add two entries with different keys and values.
Keir Mierle8c352dc2020-02-02 13:58:19 -0800315 uint8_t value1 = 0xDA;
Wyatt Heplere2cbadf2020-06-22 11:21:45 -0700316 ASSERT_OK(kvs.Put(key1, std::as_bytes(std::span(&value1, sizeof(value1)))));
Keir Mierle8c352dc2020-02-02 13:58:19 -0800317 EXPECT_EQ(kvs.size(), 1u);
318
Keir Mierle8c352dc2020-02-02 13:58:19 -0800319 uint32_t value2 = 0xBAD0301f;
320 ASSERT_OK(kvs.Put(key2, value2));
321 EXPECT_EQ(kvs.size(), 2u);
322
Keir Mierle8c352dc2020-02-02 13:58:19 -0800323 // Verify data
324 uint32_t test2;
325 EXPECT_OK(kvs.Get(key2, &test2));
326
Keir Mierle8c352dc2020-02-02 13:58:19 -0800327 uint8_t test1;
328 ASSERT_OK(kvs.Get(key1, &test1));
329
330 EXPECT_EQ(test1, value1);
331 EXPECT_EQ(test2, value2);
332
333 EXPECT_EQ(kvs.size(), 2u);
334}
335
David Rogers6a262b42020-07-09 03:27:41 -0700336TEST(InMemoryKvs, CallingEraseTwice_NothingWrittenToFlash) {
337 // Create and erase the fake flash.
338 Flash flash;
Wyatt Hepler1b3da3a2021-01-07 13:26:57 -0800339 ASSERT_EQ(OkStatus(), flash.partition.Erase());
Wyatt Heplerb7609542020-01-24 10:29:54 -0800340
David Rogers6a262b42020-07-09 03:27:41 -0700341 // Create and initialize the KVS.
342 KeyValueStoreBuffer<kMaxEntries, kMaxUsableSectors> kvs(&flash.partition,
343 default_format);
344 ASSERT_OK(kvs.Init());
Wyatt Heplerb7609542020-01-24 10:29:54 -0800345
Wyatt Heplerb7609542020-01-24 10:29:54 -0800346 const uint8_t kValue = 0xDA;
Wyatt Hepler1b3da3a2021-01-07 13:26:57 -0800347 ASSERT_EQ(OkStatus(), kvs.Put(keys[0], kValue));
348 ASSERT_EQ(OkStatus(), kvs.Delete(keys[0]));
Wyatt Heplerb7609542020-01-24 10:29:54 -0800349
David Rogers6a262b42020-07-09 03:27:41 -0700350 // Compare before / after checksums to verify that nothing was written.
Wyatt Heplereb8a34c2020-09-02 13:11:03 -0700351 const uint16_t crc = checksum::Crc16Ccitt::Calculate(flash.memory.buffer());
Wyatt Heplerb7609542020-01-24 10:29:54 -0800352
Wyatt Heplerd78f7c62020-09-28 14:27:32 -0700353 EXPECT_EQ(kvs.Delete(keys[0]), Status::NotFound());
Wyatt Heplerb7609542020-01-24 10:29:54 -0800354
Wyatt Heplereb8a34c2020-09-02 13:11:03 -0700355 EXPECT_EQ(crc, checksum::Crc16Ccitt::Calculate(flash.memory.buffer()));
Wyatt Heplerb7609542020-01-24 10:29:54 -0800356}
357
Wyatt Hepler0bde10a2020-02-07 13:35:51 -0800358class LargeEmptyInitializedKvs : public ::testing::Test {
359 protected:
Armando Montanez888370d2020-05-01 18:29:22 -0700360 LargeEmptyInitializedKvs() : kvs_(&large_test_partition, default_format) {
Wyatt Hepler1b3da3a2021-01-07 13:26:57 -0800361 ASSERT_EQ(OkStatus(), large_test_partition.Erase());
362 ASSERT_EQ(OkStatus(), kvs_.Init());
Wyatt Hepler0bde10a2020-02-07 13:35:51 -0800363 }
364
Wyatt Hepler38ce30f2020-02-19 11:48:31 -0800365 KeyValueStoreBuffer<kMaxEntries, kMaxUsableSectors> kvs_;
Wyatt Hepler0bde10a2020-02-07 13:35:51 -0800366};
367
368TEST_F(LargeEmptyInitializedKvs, Basic) {
369 const uint8_t kValue1 = 0xDA;
370 const uint8_t kValue2 = 0x12;
371 uint8_t value;
Wyatt Hepler1b3da3a2021-01-07 13:26:57 -0800372 ASSERT_EQ(OkStatus(), kvs_.Put(keys[0], kValue1));
Wyatt Hepler0bde10a2020-02-07 13:35:51 -0800373 EXPECT_EQ(kvs_.size(), 1u);
Wyatt Hepler1b3da3a2021-01-07 13:26:57 -0800374 ASSERT_EQ(OkStatus(), kvs_.Delete(keys[0]));
Wyatt Heplerd78f7c62020-09-28 14:27:32 -0700375 EXPECT_EQ(kvs_.Get(keys[0], &value), Status::NotFound());
Wyatt Hepler1b3da3a2021-01-07 13:26:57 -0800376 ASSERT_EQ(OkStatus(), kvs_.Put(keys[1], kValue1));
377 ASSERT_EQ(OkStatus(), kvs_.Put(keys[2], kValue2));
378 ASSERT_EQ(OkStatus(), kvs_.Delete(keys[1]));
379 EXPECT_EQ(OkStatus(), kvs_.Get(keys[2], &value));
Wyatt Hepler0bde10a2020-02-07 13:35:51 -0800380 EXPECT_EQ(kValue2, value);
Wyatt Heplerd78f7c62020-09-28 14:27:32 -0700381 ASSERT_EQ(kvs_.Get(keys[1], &value), Status::NotFound());
Wyatt Hepler0bde10a2020-02-07 13:35:51 -0800382 EXPECT_EQ(kvs_.size(), 1u);
Wyatt Heplerb7609542020-01-24 10:29:54 -0800383}
384
David Rogers3c298372020-10-12 14:15:39 -0700385TEST_F(LargeEmptyInitializedKvs, FullMaintenance) {
386 const uint8_t kValue1 = 0xDA;
387 const uint8_t kValue2 = 0x12;
388
389 // Write a key and write again with a different value, resulting in a stale
390 // entry from the first write.
Wyatt Hepler1b3da3a2021-01-07 13:26:57 -0800391 ASSERT_EQ(OkStatus(), kvs_.Put(keys[0], kValue1));
392 ASSERT_EQ(OkStatus(), kvs_.Put(keys[0], kValue2));
David Rogers3c298372020-10-12 14:15:39 -0700393 EXPECT_EQ(kvs_.size(), 1u);
394
395 KeyValueStore::StorageStats stats = kvs_.GetStorageStats();
396 EXPECT_EQ(stats.sector_erase_count, 0u);
397 EXPECT_GT(stats.reclaimable_bytes, 0u);
398
399 // Do regular FullMaintenance, which should not touch the sector with valid
400 // data.
Wyatt Hepler1b3da3a2021-01-07 13:26:57 -0800401 EXPECT_EQ(OkStatus(), kvs_.FullMaintenance());
David Rogers3c298372020-10-12 14:15:39 -0700402 stats = kvs_.GetStorageStats();
403 EXPECT_EQ(stats.sector_erase_count, 0u);
404 EXPECT_GT(stats.reclaimable_bytes, 0u);
405
406 // Do aggressive FullMaintenance, which should GC the sector with valid data,
407 // resulting in no reclaimable bytes and an erased sector.
Wyatt Hepler1b3da3a2021-01-07 13:26:57 -0800408 EXPECT_EQ(OkStatus(), kvs_.HeavyMaintenance());
David Rogers3c298372020-10-12 14:15:39 -0700409 stats = kvs_.GetStorageStats();
410 EXPECT_EQ(stats.sector_erase_count, 1u);
411 EXPECT_EQ(stats.reclaimable_bytes, 0u);
412}
413
David Rogers6a262b42020-07-09 03:27:41 -0700414TEST(InMemoryKvs, Put_MaxValueSize) {
415 // Create and erase the fake flash.
416 Flash flash;
Wyatt Hepler1b3da3a2021-01-07 13:26:57 -0800417 ASSERT_EQ(OkStatus(), flash.partition.Erase());
Wyatt Hepler0bde10a2020-02-07 13:35:51 -0800418
David Rogers6a262b42020-07-09 03:27:41 -0700419 // Create and initialize the KVS.
420 KeyValueStoreBuffer<kMaxEntries, kMaxUsableSectors> kvs(&flash.partition,
421 default_format);
422 ASSERT_OK(kvs.Init());
Wyatt Heplere3288e12020-02-26 13:05:07 -0800423
David Rogers1f1ebb62020-07-17 18:21:32 -0700424 size_t max_key_value_size = kvs.max_key_value_size_bytes();
425 EXPECT_EQ(max_key_value_size,
426 KeyValueStore::max_key_value_size_bytes(
427 flash.partition.sector_size_bytes()));
428
David Rogers6a262b42020-07-09 03:27:41 -0700429 size_t max_value_size =
430 flash.partition.sector_size_bytes() - sizeof(EntryHeader) - 1;
David Rogers1f1ebb62020-07-17 18:21:32 -0700431 EXPECT_EQ(max_key_value_size, (max_value_size + 1));
Wyatt Heplere3288e12020-02-26 13:05:07 -0800432
David Rogers6a262b42020-07-09 03:27:41 -0700433 // Use the large_test_flash as a big chunk of data for the Put statement.
434 ASSERT_GT(sizeof(large_test_flash), max_value_size + 2 * sizeof(EntryHeader));
435 auto big_data = std::as_bytes(std::span(&large_test_flash, 1));
Wyatt Heplerb7609542020-01-24 10:29:54 -0800436
Wyatt Hepler1b3da3a2021-01-07 13:26:57 -0800437 EXPECT_EQ(OkStatus(), kvs.Put("K", big_data.subspan(0, max_value_size)));
David Rogers6a262b42020-07-09 03:27:41 -0700438
439 // Larger than maximum is rejected.
Wyatt Heplerd78f7c62020-09-28 14:27:32 -0700440 EXPECT_EQ(Status::InvalidArgument(),
David Rogers6a262b42020-07-09 03:27:41 -0700441 kvs.Put("K", big_data.subspan(0, max_value_size + 1)));
Wyatt Heplerd78f7c62020-09-28 14:27:32 -0700442 EXPECT_EQ(Status::InvalidArgument(), kvs.Put("K", big_data));
Wyatt Heplerb7609542020-01-24 10:29:54 -0800443}
444
Wyatt Hepler2ad60672020-01-21 08:00:16 -0800445} // namespace pw::kvs