mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-26 03:35:20 +00:00
198 lines
6.5 KiB
C
198 lines
6.5 KiB
C
|
|
#include "CppUTest/TestHarness.h"
|
|
#include "CppUTest/CommandLineTestRunner.h"
|
|
|
|
#include "hal_flash_sector.h"
|
|
#include "hal_flash_sector_memory.h"
|
|
#include "btstack_tlv.h"
|
|
#include "btstack_tlv_flash_sector.h"
|
|
#include "hci_dump.h"
|
|
|
|
#define HAL_FLASH_SECTOR_MEMORY_STORAGE_SIZE 256
|
|
static uint8_t hal_flash_sector_memory_storage[HAL_FLASH_SECTOR_MEMORY_STORAGE_SIZE];
|
|
|
|
TEST_GROUP(HAL_FLASH_SECTOR){
|
|
const hal_flash_sector_t * hal_flash_sector_impl;
|
|
hal_flash_sector_memory_t hal_flash_sector_context;
|
|
void setup(void){
|
|
hal_flash_sector_impl = hal_flash_sector_memory_init_instance(&hal_flash_sector_context, hal_flash_sector_memory_storage, HAL_FLASH_SECTOR_MEMORY_STORAGE_SIZE);
|
|
hal_flash_sector_impl->erase(&hal_flash_sector_context, 0);
|
|
hal_flash_sector_impl->erase(&hal_flash_sector_context, 1);
|
|
}
|
|
};
|
|
|
|
TEST(HAL_FLASH_SECTOR, TestErased){
|
|
uint8_t buffer;
|
|
int offsets[] = { 0, 10, 100};
|
|
int i;
|
|
for (i=0;i<sizeof(offsets)/sizeof(int);i++){
|
|
int bank;
|
|
for (bank=0;bank<2;bank++){
|
|
hal_flash_sector_impl->read(&hal_flash_sector_context, bank, offsets[i], &buffer, 1);
|
|
CHECK_EQUAL(buffer, 0xff);
|
|
}
|
|
}
|
|
}
|
|
|
|
TEST(HAL_FLASH_SECTOR, TestWrite){
|
|
uint8_t buffer;
|
|
int offsets[] = { 0, 10, 100};
|
|
int i;
|
|
for (i=0;i<sizeof(offsets)/sizeof(int);i++){
|
|
int bank;
|
|
for (bank=0;bank<2;bank++){
|
|
buffer = i;
|
|
hal_flash_sector_impl->write(&hal_flash_sector_context, bank, offsets[i], &buffer, 1);
|
|
}
|
|
}
|
|
for (i=0;i<sizeof(offsets)/sizeof(int);i++){
|
|
int bank;
|
|
for (bank=0;bank<2;bank++){
|
|
hal_flash_sector_impl->read(&hal_flash_sector_context, bank, offsets[i], &buffer, 1);
|
|
CHECK_EQUAL(buffer, i);
|
|
}
|
|
}
|
|
}
|
|
|
|
#if 0
|
|
// prints error and exits tests. maybe all functions need to return ok
|
|
TEST(HAL_FLASH_SECTOR, TestWriteTwice){
|
|
uint8_t buffer = 5;
|
|
hal_flash_sector_impl->write(&hal_flash_sector_context, 0, 5, &buffer, 1);
|
|
hal_flash_sector_impl->write(&hal_flash_sector_context, 0, 5, &buffer, 1);
|
|
}
|
|
#endif
|
|
|
|
TEST(HAL_FLASH_SECTOR, TestWriteErase){
|
|
uint32_t offset = 7;
|
|
uint8_t value = 9;
|
|
uint8_t buffer = value;
|
|
hal_flash_sector_impl->write(&hal_flash_sector_context, 0, offset, &buffer, 1);
|
|
hal_flash_sector_impl->read(&hal_flash_sector_context, 0, offset, &buffer, 1);
|
|
CHECK_EQUAL(buffer, value);
|
|
hal_flash_sector_impl->erase(&hal_flash_sector_context, 0);
|
|
hal_flash_sector_impl->read(&hal_flash_sector_context, 0, offset, &buffer, 1);
|
|
CHECK_EQUAL(buffer, 0xff);
|
|
}
|
|
|
|
/// TLV
|
|
|
|
TEST_GROUP(BSTACK_TLV){
|
|
|
|
const hal_flash_sector_t * hal_flash_sector_impl;
|
|
hal_flash_sector_memory_t hal_flash_sector_context;
|
|
|
|
const btstack_tlv_t * btstack_tlv_impl;
|
|
btstack_tlv_flash_sector_t btstack_tlv_context;
|
|
|
|
void setup(void){
|
|
hal_flash_sector_impl = hal_flash_sector_memory_init_instance(&hal_flash_sector_context, hal_flash_sector_memory_storage, HAL_FLASH_SECTOR_MEMORY_STORAGE_SIZE);
|
|
hal_flash_sector_impl->erase(&hal_flash_sector_context, 0);
|
|
hal_flash_sector_impl->erase(&hal_flash_sector_context, 1);
|
|
}
|
|
};
|
|
|
|
TEST(BSTACK_TLV, TestMissingTag){
|
|
btstack_tlv_impl = btstack_tlv_flash_sector_init_instance(&btstack_tlv_context, hal_flash_sector_impl, &hal_flash_sector_context);
|
|
uint32_t tag = 'abcd';
|
|
int size = btstack_tlv_impl->get_tag(&btstack_tlv_context, tag, NULL, 0);
|
|
CHECK_EQUAL(size, 0);
|
|
}
|
|
|
|
TEST(BSTACK_TLV, TestWriteRead){
|
|
btstack_tlv_impl = btstack_tlv_flash_sector_init_instance(&btstack_tlv_context, hal_flash_sector_impl, &hal_flash_sector_context);
|
|
uint32_t tag = 'abcd';
|
|
uint8_t data = 7;
|
|
uint8_t buffer = data;
|
|
btstack_tlv_impl->store_tag(&btstack_tlv_context, tag, &buffer, 1);
|
|
int size = btstack_tlv_impl->get_tag(&btstack_tlv_context, tag, NULL, 0);
|
|
CHECK_EQUAL(size, 1);
|
|
btstack_tlv_impl->get_tag(&btstack_tlv_context, tag, &buffer, 1);
|
|
CHECK_EQUAL(buffer, data);
|
|
}
|
|
|
|
TEST(BSTACK_TLV, TestWriteWriteRead){
|
|
btstack_tlv_impl = btstack_tlv_flash_sector_init_instance(&btstack_tlv_context, hal_flash_sector_impl, &hal_flash_sector_context);
|
|
uint32_t tag = 'abcd';
|
|
uint8_t data = 7;
|
|
uint8_t buffer = data;
|
|
btstack_tlv_impl->store_tag(&btstack_tlv_context, tag, &buffer, 1);
|
|
data++;
|
|
buffer = data;
|
|
btstack_tlv_impl->store_tag(&btstack_tlv_context, tag, &buffer, 1);
|
|
int size = btstack_tlv_impl->get_tag(&btstack_tlv_context, tag, NULL, 0);
|
|
CHECK_EQUAL(size, 1);
|
|
btstack_tlv_impl->get_tag(&btstack_tlv_context, tag, &buffer, 1);
|
|
CHECK_EQUAL(buffer, data);
|
|
}
|
|
|
|
TEST(BSTACK_TLV, TestWriteDeleteRead){
|
|
btstack_tlv_impl = btstack_tlv_flash_sector_init_instance(&btstack_tlv_context, hal_flash_sector_impl, &hal_flash_sector_context);
|
|
uint32_t tag = 'abcd';
|
|
uint8_t data = 7;
|
|
uint8_t buffer = data;
|
|
btstack_tlv_impl->store_tag(&btstack_tlv_context, tag, &buffer, 1);
|
|
data++;
|
|
buffer = data;
|
|
btstack_tlv_impl->store_tag(&btstack_tlv_context, tag, &buffer, 1);
|
|
btstack_tlv_impl->delete_tag(&btstack_tlv_context, tag);
|
|
int size = btstack_tlv_impl->get_tag(&btstack_tlv_context, tag, NULL, 0);
|
|
CHECK_EQUAL(size, 0);
|
|
}
|
|
|
|
TEST(BSTACK_TLV, TestMigrate){
|
|
|
|
btstack_tlv_impl = btstack_tlv_flash_sector_init_instance(&btstack_tlv_context, hal_flash_sector_impl, &hal_flash_sector_context);
|
|
|
|
uint32_t tag = 'abcd';
|
|
uint8_t data[8];
|
|
memcpy(data, "01234567", 8);
|
|
|
|
// entry 8 + data 8 = 16.
|
|
int i;
|
|
for (i=0;i<8;i++){
|
|
data[0] = '0' + i;
|
|
btstack_tlv_impl->store_tag(&btstack_tlv_context, tag, &data[0], 8);
|
|
}
|
|
|
|
btstack_tlv_impl = btstack_tlv_flash_sector_init_instance(&btstack_tlv_context, hal_flash_sector_impl, &hal_flash_sector_context);
|
|
|
|
uint8_t buffer[8];
|
|
btstack_tlv_impl->get_tag(&btstack_tlv_context, tag, &buffer[0], 1);
|
|
CHECK_EQUAL(buffer[0], data[0]);
|
|
}
|
|
|
|
TEST(BSTACK_TLV, TestMigrate2){
|
|
|
|
btstack_tlv_impl = btstack_tlv_flash_sector_init_instance(&btstack_tlv_context, hal_flash_sector_impl, &hal_flash_sector_context);
|
|
|
|
uint32_t tag1 = 0x11223344;
|
|
uint32_t tag2 = 0x44556677;
|
|
uint8_t data1[8];
|
|
memcpy(data1, "01234567", 8);
|
|
uint8_t data2[8];
|
|
memcpy(data2, "abcdefgh", 8);
|
|
|
|
// entry 8 + data 8 = 16.
|
|
int i;
|
|
for (i=0;i<8;i++){
|
|
data1[0] = '0' + i;
|
|
data2[0] = 'a' + i;
|
|
btstack_tlv_impl->store_tag(&btstack_tlv_context, tag1, data1, 8);
|
|
btstack_tlv_impl->store_tag(&btstack_tlv_context, tag2, data2, 8);
|
|
}
|
|
|
|
btstack_tlv_impl = btstack_tlv_flash_sector_init_instance(&btstack_tlv_context, hal_flash_sector_impl, &hal_flash_sector_context);
|
|
|
|
uint8_t buffer[8];
|
|
btstack_tlv_impl->get_tag(&btstack_tlv_context, tag1, &buffer[0], 1);
|
|
CHECK_EQUAL(buffer[0], data1[0]);
|
|
btstack_tlv_impl->get_tag(&btstack_tlv_context, tag2, &buffer[0], 1);
|
|
CHECK_EQUAL(buffer[0], data2[0]);
|
|
}
|
|
|
|
int main (int argc, const char * argv[]){
|
|
hci_dump_open("tlv_test.pklg", HCI_DUMP_PACKETLOGGER);
|
|
return CommandLineTestRunner::RunAllTests(argc, argv);
|
|
}
|