mbed-os/features/filesystem/littlefs/TESTS/filesystem_recovery/wear_leveling/main.cpp

121 lines
3.3 KiB
C++

/* mbed Microcontroller Library
* Copyright (c) 2017 ARM Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "mbed.h"
#include "unity.h"
#include "utest.h"
#include "test_env.h"
#include "atomic_usage.h"
#include "ExhaustibleBlockDevice.h"
#include "SlicingBlockDevice.h"
using namespace utest::v1;
// test configuration
#ifndef MBED_TEST_SIM_BLOCKDEVICE
#error [NOT_SUPPORTED] Simulation block device required for wear leveling tests
#endif
#ifndef MBED_TEST_SIM_BLOCKDEVICE_DECL
#define MBED_TEST_SIM_BLOCKDEVICE_DECL MBED_TEST_SIM_BLOCKDEVICE bd(MBED_TEST_BLOCK_COUNT*512, 1, 1, 512)
#endif
#ifndef MBED_TEST_BLOCK_COUNT
#define MBED_TEST_BLOCK_COUNT 64
#endif
#ifndef MBED_TEST_ERASE_CYCLES
#define MBED_TEST_ERASE_CYCLES 100
#endif
#ifndef MBED_TEST_TIMEOUT
#define MBED_TEST_TIMEOUT 480
#endif
// declarations
#define STRINGIZE(x) STRINGIZE2(x)
#define STRINGIZE2(x) #x
#define INCLUDE(x) STRINGIZE(x.h)
#include INCLUDE(MBED_TEST_SIM_BLOCKDEVICE)
static uint32_t test_wear_leveling_size(uint32_t block_count)
{
MBED_TEST_SIM_BLOCKDEVICE_DECL;
// bring up to get block size
bd.init();
bd_size_t block_size = bd.get_erase_size();
bd.deinit();
SlicingBlockDevice slice(&bd, 0, block_count*block_size);
ExhaustibleBlockDevice ebd(&slice, MBED_TEST_ERASE_CYCLES);
printf("Testing size %llu bytes (%lux%llu) blocks\n",
block_count*block_size, block_count, block_size);
setup_atomic_operations(&ebd, true);
int64_t cycles = 0;
while (true) {
int64_t ret = perform_atomic_operations(&ebd);
check_atomic_operations(&ebd);
if (-1 == ret) {
break;
}
cycles++;
TEST_ASSERT_EQUAL(cycles, ret);
}
printf(" Simulated flash lasted %lli cylces\n", cycles);
return cycles;
}
/**
* Check that storage life is proportional to storage size
*
* This test is to ensure that littlefs is properly handling wear
* leveling. It does this by creating a simulated flash block device
* which can be worn out and then using it until it is exhausted.
* It then doubles the size of the block device and runs the same
* test. If the block device with twice the size lasts at least
* twice as long then the test passes.
*/
void test_wear_leveling()
{
uint32_t cycles_1 = test_wear_leveling_size(MBED_TEST_BLOCK_COUNT / 2);
uint32_t cycles_2 = test_wear_leveling_size(MBED_TEST_BLOCK_COUNT / 1);
TEST_ASSERT(cycles_2 > cycles_1 * 2);
}
Case cases[] = {
Case("test wear leveling", test_wear_leveling),
};
utest::v1::status_t greentea_test_setup(const size_t number_of_cases)
{
GREENTEA_SETUP(MBED_TEST_TIMEOUT, "default_auto");
return greentea_test_setup_handler(number_of_cases);
}
Specification specification(greentea_test_setup, cases, greentea_test_teardown_handler);
int main()
{
Harness::run(specification);
}