blob: dfbb14d0e8880fdd8b5f77a489232cffd6f3f6ef [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.
*/
#include "log_test_util/log_test_util.h"
TEST_CASE(log_test_case_fcb_append_mbuf)
{
struct fcb_log fcb_log;
struct os_mbuf *om;
struct log log;
char *str;
int rc;
int i;
ltu_setup_fcb(&fcb_log, &log);
for (i = 0; ; i++) {
str = ltu_str_logs[i];
if (!str) {
break;
}
/* Split chain into several mbufs. */
om = ltu_flat_to_fragged_mbuf(str, strlen(str), 2);
/* Prepend space for the entry header. */
om = os_mbuf_prepend(om, LOG_ENTRY_HDR_SIZE);
TEST_ASSERT(om != NULL);
rc = log_append_mbuf_typed(&log, 0, 0, LOG_ETYPE_STRING, om);
TEST_ASSERT_FATAL(rc == 0);
}
ltu_verify_contents(&log);
}