Mercurial > prosody-hg
comparison tests/test_core_configmanager.lua @ 371:0dc5819660e8
Import initial configmanager, not sure if it works yet, but it does pass the unit tests ;)
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Fri, 21 Nov 2008 05:47:27 +0000 |
| parents | |
| children | cccd610a0ef9 |
comparison
equal
deleted
inserted
replaced
| 370:9ade55e059ea | 371:0dc5819660e8 |
|---|---|
| 1 | |
| 2 function get(get, config) | |
| 3 config.set("example.com", "test", "testkey", 123); | |
| 4 assert_equal(get("example.com", "test", "testkey"), 123, "Retrieving a set key"); | |
| 5 | |
| 6 config.set("*", "test", "testkey1", 321); | |
| 7 assert_equal(get("*", "test", "testkey1"), 321, "Retrieving a set global key"); | |
| 8 assert_equal(get("example.com", "test", "testkey1"), 321, "Retrieving a set key of undefined host, of which only a globally set one exists"); | |
| 9 | |
| 10 config.set("example.com", "test", ""); -- Creates example.com host in config | |
| 11 assert_equal(get("example.com", "test", "testkey1"), 321, "Retrieving a set key, of which only a globally set one exists"); | |
| 12 | |
| 13 assert_equal(get(), nil, "No parameters to get()"); | |
| 14 assert_equal(get("undefined host"), nil, "Getting for undefined host"); | |
| 15 assert_equal(get("undefined host", "undefined section"), nil, "Getting for undefined host & section"); | |
| 16 assert_equal(get("undefined host", "undefined section", "undefined key"), nil, "Getting for undefined host & section & key"); | |
| 17 | |
| 18 assert_equal(get("example.com", "undefined section", "testkey"), nil, "Defined host, undefined section"); | |
| 19 end | |
| 20 | |
| 21 function set(set, u) | |
| 22 assert_equal(set("*"), false, "Set with no section/key"); | |
| 23 assert_equal(set("*", "set_test"), false, "Set with no key"); | |
| 24 | |
| 25 assert_equal(set("*", "set_test", "testkey"), true, "Setting a nil global value"); | |
| 26 assert_equal(set("*", "set_test", "testkey", 123), true, "Setting a global value"); | |
| 27 end | |
| 28 |
