zephyr/tests/subsys/settings/src/settings_test_commit.c
Andrzej Puzdrowski 94ff339cbf subsys: Add a new settings subsystem
Adapt the MyNewt non-volatile configuration system to become a settings
system in Zephyr.
The original code was modifed in the following ways:

* Renamed from config to settings
* Use the zephyr FCB, FS API, and base64 subsystems
* lltoa like function was added to sources as it was required but not
  included in Zephyr itself.
* The original code was modified to use Zephyr's slist.h as single
  linked list implementation.
* Reworked code which was using strtok_r, added function
  for decoding a string to a s64_t value.
* Thank to the above the settings subsys doesn't require newlibc anymore.

Signed-off-by: Andrzej Puzdrowski <andrzej.puzdrowski@nordicsemi.no>
Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
2018-03-28 10:44:20 -04:00

34 lines
857 B
C

/*
* Copyright (c) 2018 Nordic Semiconductor ASA
* Copyright (c) 2015 Runtime Inc
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "settings_test.h"
void test_config_commit(void)
{
char name[80];
int rc;
strcpy(name, "bar");
rc = settings_commit(name);
zassert_true(rc, "commit-nonexisting-tree call should succeed\n");
zassert_true(ctest_get_call_state() == 0,
"a handler was called unexpectedly\n");
rc = settings_commit(NULL);
zassert_true(rc == 0, "commit-All call should succeed");
zassert_true(test_commit_called == 1,
"the COMMIT handler wasn't called\n");
ctest_clear_call_state();
strcpy(name, "myfoo");
rc = settings_commit(name);
zassert_true(rc == 0, "commit-a-tree call should succeed\n");
zassert_true(test_commit_called == 1,
"the COMMIT handler wasn't called\n");
ctest_clear_call_state();
}