blob: 97861905b7e8b1a1b1ad2e110d6bf65f115fe208 [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 H_LOG_TEST_UTIL_
#define H_LOG_TEST_UTIL_
#include "os/mynewt.h"
#include "testutil/testutil.h"
#include "fcb/fcb.h"
#include "log/log.h"
#include "log_test_util.h"
#ifdef __cplusplus
extern "C" {
#endif
extern struct fcb log_fcb;
extern struct log my_log;
extern char *ltu_str_logs[];
struct os_mbuf *ltu_flat_to_fragged_mbuf(const void *flat, int len,
int frag_sz);
void ltu_setup_fcb(struct fcb_log *fcb_log, struct log *log);
void ltu_setup_cbmem(struct cbmem *cbmem, struct log *log);
void ltu_verify_contents(struct log *log);
TEST_SUITE_DECL(log_test_suite_cbmem_flat);
TEST_CASE_DECL(log_test_case_cbmem_append);
TEST_CASE_DECL(log_test_case_cbmem_append_body);
TEST_CASE_DECL(log_test_case_cbmem_printf);
TEST_SUITE_DECL(log_test_suite_cbmem_mbuf);
TEST_CASE_DECL(log_test_case_cbmem_append_mbuf);
TEST_CASE_DECL(log_test_case_cbmem_append_mbuf_body);
TEST_SUITE_DECL(log_test_suite_fcb_flat);
TEST_CASE_DECL(log_test_case_fcb_append);
TEST_CASE_DECL(log_test_case_fcb_append_body);
TEST_CASE_DECL(log_test_case_fcb_printf);
TEST_SUITE_DECL(log_test_suite_fcb_mbuf);
TEST_CASE_DECL(log_test_case_fcb_append_mbuf);
TEST_CASE_DECL(log_test_case_fcb_append_mbuf_body);
TEST_SUITE_DECL(log_test_suite_misc);
TEST_CASE_DECL(log_test_case_level);
TEST_CASE_DECL(log_test_case_append_cb);
#ifdef __cplusplus
}
#endif
#endif