Port 083-config-no-files.t etap test suite to eunit Merged into couch_config_tests suite.
Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch/commit/61cc1292 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch/tree/61cc1292 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch/diff/61cc1292 Branch: refs/heads/1963-eunit-bigcouch Commit: 61cc12922962925e72bf09848245d0cf9bbd132b Parents: 9387211 Author: Alexander Shorin <[email protected]> Authored: Mon May 26 09:46:06 2014 +0400 Committer: Russell Branca <[email protected]> Committed: Mon Aug 11 13:09:40 2014 -0700 ---------------------------------------------------------------------- test/couchdb/couch_config_tests.erl | 37 +++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/61cc1292/test/couchdb/couch_config_tests.erl ---------------------------------------------------------------------- diff --git a/test/couchdb/couch_config_tests.erl b/test/couchdb/couch_config_tests.erl index fdd2479..9e9dfe7 100644 --- a/test/couchdb/couch_config_tests.erl +++ b/test/couchdb/couch_config_tests.erl @@ -44,6 +44,9 @@ setup(Chain) -> {ok, Pid} = couch_config:start_link(Chain), Pid. +setup_empty() -> + setup([]). + setup_register() -> ConfigPid = setup(), SentinelFunc = fun() -> @@ -92,7 +95,8 @@ couch_config_test_() -> couch_config_del_tests(), config_override_tests(), config_persistent_changes_tests(), - config_register_tests() + config_register_tests(), + config_no_files_tests() ] }. @@ -195,6 +199,20 @@ config_register_tests() -> } }. +config_no_files_tests() -> + { + "Test couch_config with no files", + { + foreach, + fun setup_empty/0, fun teardown/1, + [ + should_ensure_that_no_ini_files_loaded(), + should_create_non_persistent_option(), + should_create_persistent_option() + ] + } + }. + should_load_all_configs() -> ?_assert(length(couch_config:all()) > 0). @@ -426,3 +444,20 @@ should_not_trigger_handler_after_related_process_death({_, SentinelPid}) -> true end end). + +should_ensure_that_no_ini_files_loaded() -> + ?_assertEqual(0, length(couch_config:all())). + +should_create_non_persistent_option() -> + ?_assertEqual("80", + begin + ok = couch_config:set("httpd", "port", "80", false), + couch_config:get("httpd", "port") + end). + +should_create_persistent_option() -> + ?_assertEqual("127.0.0.1", + begin + ok = couch_config:set("httpd", "bind_address", "127.0.0.1"), + couch_config:get("httpd", "bind_address") + end).
