blob: f8c3cf4a3b2b55db61cda76064be38aef975c42d [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 "conf_test_nffs.h"
TEST_CASE(config_test_small_file)
{
int rc;
struct conf_file cf_mfg;
struct conf_file cf_running;
const char cf_mfg_test[] = "myfoo/mybar=1";
const char cf_running_test[] = " myfoo/mybar = 8 ";
config_wipe_srcs();
cf_mfg.cf_name = "/config/mfg";
cf_running.cf_name = "/config/running";
rc = conf_file_src(&cf_mfg);
TEST_ASSERT(rc == 0);
rc = conf_file_src(&cf_running);
rc = fsutil_write_file("/config/mfg", cf_mfg_test, sizeof(cf_mfg_test));
TEST_ASSERT(rc == 0);
conf_load();
TEST_ASSERT(test_set_called);
TEST_ASSERT(val8 == 1);
ctest_clear_call_state();
rc = fsutil_write_file("/config/running", cf_running_test,
sizeof(cf_running_test));
TEST_ASSERT(rc == 0);
conf_load();
TEST_ASSERT(test_set_called);
TEST_ASSERT(val8 == 8);
ctest_clear_call_state();
}