blob: 66cc7ce16f4b72a1133ccc5b7f09ccc8204ec37c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
#ifndef _CONF_TEST_FCB_H
#define _CONF_TEST_FCB_H
#include <stdio.h>
#include <string.h>
#include "os/mynewt.h"
#include <flash_map/flash_map.h>
#include <testutil/testutil.h>
#include <fcb/fcb.h>
#include <config/config.h>
#include <config/config_fcb.h>
#include "config_priv.h"
#ifdef __cplusplus
extern "C" {
#endif
extern uint8_t val8;
extern int c2_var_count;
#define CONF_TEST_FCB_VAL_STR_CNT 64
extern char val_string[CONF_TEST_FCB_VAL_STR_CNT][CONF_MAX_VAL_LEN];
#define CONF_TEST_FCB_FLASH_CNT 4
extern struct flash_area fcb_areas[CONF_TEST_FCB_FLASH_CNT];
extern uint32_t val32;
extern uint64_t val64;
extern int test_get_called;
extern int test_set_called;
extern int test_commit_called;
extern int test_export_block;
void ctest_clear_call_state(void);
int ctest_get_call_state(void);
void config_wipe_srcs(void);
extern void config_test_fill_area(
char test_value[CONF_TEST_FCB_VAL_STR_CNT][CONF_MAX_VAL_LEN],
int iteration);
void config_wipe_fcb(struct flash_area *fa, int cnt);
char *ctest_handle_get(int argc, char **argv, char *val, int val_len_max);
int ctest_handle_set(int argc, char **argv, char *val);
int ctest_handle_commit(void);
int ctest_handle_export(void (*cb)(char *name, char *value),
enum conf_export_tgt tgt);
char *c2_handle_get(int argc, char **argv, char *val, int val_len_max);
int c2_handle_set(int argc, char **argv, char *val);
int c2_handle_export(void (*cb)(char *name, char *value),
enum conf_export_tgt tgt);
char *c3_handle_get(int argc, char **argv, char *val, int val_len_max);
int c3_handle_set(int argc, char **argv, char *val);
int c3_handle_export(void (*cb)(char *name, char *value),
enum conf_export_tgt tgt);
extern struct conf_handler config_test_handler;
extern struct conf_handler c2_test_handler;
extern struct conf_handler c3_test_handler;
#ifdef __cplusplus
}
#endif
#endif /* _CONF_TEST_FCB_H */