Newer
Older
mbed-os / components / storage / blockdevice / COMPONENT_SD / TESTS / COMMON / fsfat_test.h
@Martin Kojtal Martin Kojtal on 21 Feb 2020 2 KB component storage: fix SPDX identifiers
/** @file fsfat_test.h
 *
 * mbed Microcontroller Library
 * Copyright (c) 2006-2016 ARM Limited
 * SPDX-License-Identifier: Apache-2.0
 *
 * 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.
 *
 * Header file for test support data structures and function API.
 */
#ifndef __FSFAT_TEST_H
#define __FSFAT_TEST_H

#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>

#ifdef __cplusplus
extern "C" {
#endif

/* Defines */
//#define FSFAT_INIT_1_TABLE_HEAD                 { "a", ""}
#define FSFAT_INIT_1_TABLE_MID_NODE             { "/sd/01234567.txt", "abcdefghijklmnopqrstuvwxyz"}
//#define FSFAT_INIT_1_TABLE_TAIL                 { "/sd/fopentst/hello/world/animal/wobbly/dog/foot/backrght.txt", "present"}
#define FSFAT_TEST_RW_TABLE_SENTINEL            0xffffffff
#define FSFAT_TEST_BYTE_DATA_TABLE_SIZE         256
#define FSFAT_UTEST_MSG_BUF_SIZE                256
#define FSFAT_UTEST_DEFAULT_TIMEOUT_MS          10000
#define FSFAT_MBED_HOSTTEST_TIMEOUT             60
#define FSFAT_MAX_FILE_BASENAME                 8
#define FSFAT_MAX_FILE_EXTNAME                  3
#define FSFAT_BUF_MAX_LENGTH                    64
#define FSFAT_FILENAME_MAX_LENGTH               255


/* support macro for make string for utest _MESSAGE macros, which dont support formatted output */
#define FSFAT_TEST_UTEST_MESSAGE(_buf, _max_len, _fmt, ...)   \
  do                                                            \
  {                                                             \
      snprintf((_buf), (_max_len), (_fmt), __VA_ARGS__);        \
  }while(0);


/*
 * Structures
 */

/* kv data for test */
typedef struct fsfat_kv_data_t {
    const char *filename;
    const char *value;
} fsfat_kv_data_t;


extern const uint8_t fsfat_test_byte_data_table[FSFAT_TEST_BYTE_DATA_TABLE_SIZE];

int32_t fsfat_test_create(const char *filename, const char *data, size_t len);
int32_t fsfat_test_delete(const char *key_name);
int32_t fsfat_test_filename_gen(char *name, const size_t len);
#ifdef __cplusplus
}
#endif

#endif /* __FSFAT_TEST_H */