diff options
| author | Your Name <you@example.com> | 2026-05-19 13:21:25 +0530 |
|---|---|---|
| committer | Your Name <you@example.com> | 2026-05-19 13:31:08 +0530 |
| commit | eeba74a4a1c011e85e33dea4252b381e35a64ea4 (patch) | |
| tree | 14862e7d300511e28e214c743fd2f699bc54c5b8 /tests/unit/test_mint_health.c | |
| parent | b0d9d494f00ee77f9efc22d1ef2ea3c94b23ddbd (diff) | |
feat: multi-mint wallet with health tracking, WPA auto-detect, display gating
Squash merge of feature/multi-mint-support (21 commits):
Multi-mint wallet:
- Accept payments from 4 mints: minibits, coinos, 21mint, lnvoltz
- Periodic health probing (300s interval, 3 recovery threshold)
- Multi-wallet init with nucula_wallet_init_multi()
- /mints and /wallet API endpoints
WPA auto-detect:
- wifi_auth_mode config field (default WPA2, supports WPA3)
- Runtime mapping to wifi_auth_mode_t in STA config
Display gating:
- display_enabled config field (default true)
- Guards display_init/display_update per-board
Bug fixes:
- 3s delay before service start prevents lwip mem_free assertion
- Real npub in discovery (identity_get()->npub_hex)
- Health probe interval 300s (production value)
- Duplicate services_start_task call removed
- UTF-8 arrow replaced with ASCII in log message
Tests: 61+14 unit tests passing, firmware builds clean
Diffstat (limited to 'tests/unit/test_mint_health.c')
| -rw-r--r-- | tests/unit/test_mint_health.c | 194 |
1 files changed, 194 insertions, 0 deletions
diff --git a/tests/unit/test_mint_health.c b/tests/unit/test_mint_health.c new file mode 100644 index 0000000..d170d55 --- /dev/null +++ b/tests/unit/test_mint_health.c | |||
| @@ -0,0 +1,194 @@ | |||
| 1 | #include <stdio.h> | ||
| 2 | #include <string.h> | ||
| 3 | #include <assert.h> | ||
| 4 | #include "mint_health.h" | ||
| 5 | |||
| 6 | static int test_count = 0; | ||
| 7 | static int pass_count = 0; | ||
| 8 | |||
| 9 | #define TEST(name) do { \ | ||
| 10 | test_count++; \ | ||
| 11 | printf(" TEST: %s ... ", name); \ | ||
| 12 | } while(0) | ||
| 13 | |||
| 14 | #define PASS() do { \ | ||
| 15 | pass_count++; \ | ||
| 16 | printf("PASS\n"); \ | ||
| 17 | } while(0) | ||
| 18 | |||
| 19 | #define FAIL(msg) do { \ | ||
| 20 | printf("FAIL: %s\n", msg); \ | ||
| 21 | } while(0) | ||
| 22 | |||
| 23 | #define ASSERT_EQ(a, b, msg) do { \ | ||
| 24 | if ((a) != (b)) { FAIL(msg); return; } \ | ||
| 25 | } while(0) | ||
| 26 | |||
| 27 | #define ASSERT_TRUE(a, msg) do { \ | ||
| 28 | if (!(a)) { FAIL(msg); return; } \ | ||
| 29 | } while(0) | ||
| 30 | |||
| 31 | #define ASSERT_FALSE(a, msg) do { \ | ||
| 32 | if ((a)) { FAIL(msg); return; } \ | ||
| 33 | } while(0) | ||
| 34 | |||
| 35 | static void test_init_basic(void) { | ||
| 36 | TEST("init with 4 mints"); | ||
| 37 | const char urls[4][256] = { | ||
| 38 | "https://mint.minibits.cash/Bitcoin", | ||
| 39 | "https://mint.coinos.io", | ||
| 40 | "https://21mint.me", | ||
| 41 | "https://mint.lnvoltz.com" | ||
| 42 | }; | ||
| 43 | esp_err_t err = mint_health_init(urls, 4); | ||
| 44 | ASSERT_EQ(err, 0, "init should return ESP_OK"); | ||
| 45 | PASS(); | ||
| 46 | } | ||
| 47 | |||
| 48 | static void test_get_all(void) { | ||
| 49 | TEST("get_all returns correct count"); | ||
| 50 | int count = 0; | ||
| 51 | const mint_status_t *mints = mint_health_get_all(&count); | ||
| 52 | ASSERT_EQ(count, 4, "should have 4 mints"); | ||
| 53 | ASSERT_TRUE(mints != NULL, "mints should not be NULL"); | ||
| 54 | PASS(); | ||
| 55 | } | ||
| 56 | |||
| 57 | static void test_initial_state_unreachable(void) { | ||
| 58 | TEST("initial state: all mints unreachable (no probes run)"); | ||
| 59 | const char *expected_urls[] = { | ||
| 60 | "https://mint.minibits.cash/Bitcoin", | ||
| 61 | "https://mint.coinos.io", | ||
| 62 | "https://21mint.me", | ||
| 63 | "https://mint.lnvoltz.com" | ||
| 64 | }; | ||
| 65 | int count = 0; | ||
| 66 | const mint_status_t *mints = mint_health_get_all(&count); | ||
| 67 | ASSERT_EQ(count, 4, "should have 4 mints"); | ||
| 68 | for (int i = 0; i < count; i++) { | ||
| 69 | ASSERT_FALSE(mints[i].reachable, "initial mint should be unreachable"); | ||
| 70 | ASSERT_EQ(mints[i].consecutive_successes, 0, "initial successes should be 0"); | ||
| 71 | ASSERT_TRUE(strcmp(mints[i].url, expected_urls[i]) == 0, "URL mismatch"); | ||
| 72 | } | ||
| 73 | PASS(); | ||
| 74 | } | ||
| 75 | |||
| 76 | static void test_is_reachable_before_probes(void) { | ||
| 77 | TEST("is_reachable returns false before probes"); | ||
| 78 | bool r = mint_health_is_reachable("https://mint.minibits.cash/Bitcoin"); | ||
| 79 | ASSERT_FALSE(r, "should be unreachable before probes"); | ||
| 80 | PASS(); | ||
| 81 | } | ||
| 82 | |||
| 83 | static void test_is_reachable_null(void) { | ||
| 84 | TEST("is_reachable returns false for NULL"); | ||
| 85 | bool r = mint_health_is_reachable(NULL); | ||
| 86 | ASSERT_FALSE(r, "NULL should return false"); | ||
| 87 | PASS(); | ||
| 88 | } | ||
| 89 | |||
| 90 | static void test_is_reachable_unknown_url(void) { | ||
| 91 | TEST("is_reachable returns false for unknown URL"); | ||
| 92 | bool r = mint_health_is_reachable("https://unknown.mint.example.com"); | ||
| 93 | ASSERT_FALSE(r, "unknown URL should return false"); | ||
| 94 | PASS(); | ||
| 95 | } | ||
| 96 | |||
| 97 | static void test_mark_unreachable(void) { | ||
| 98 | TEST("mark_unreachable on already-unreachable mint"); | ||
| 99 | mint_health_mark_unreachable("https://mint.coinos.io"); | ||
| 100 | bool r = mint_health_is_reachable("https://mint.coinos.io"); | ||
| 101 | ASSERT_FALSE(r, "should still be unreachable"); | ||
| 102 | PASS(); | ||
| 103 | } | ||
| 104 | |||
| 105 | static void test_mark_unreachable_null(void) { | ||
| 106 | TEST("mark_unreachable with NULL does not crash"); | ||
| 107 | mint_health_mark_unreachable(NULL); | ||
| 108 | PASS(); | ||
| 109 | } | ||
| 110 | |||
| 111 | static void test_init_overflow(void) { | ||
| 112 | TEST("init with more than MAX mints truncates"); | ||
| 113 | const char urls[MINT_HEALTH_MAX + 2][256]; | ||
| 114 | for (int i = 0; i < MINT_HEALTH_MAX + 2; i++) { | ||
| 115 | snprintf((char *)urls[i], 256, "https://mint%d.example.com", i); | ||
| 116 | } | ||
| 117 | esp_err_t err = mint_health_init(urls, MINT_HEALTH_MAX + 2); | ||
| 118 | ASSERT_EQ(err, 0, "init should succeed"); | ||
| 119 | |||
| 120 | int count = 0; | ||
| 121 | mint_health_get_all(&count); | ||
| 122 | ASSERT_EQ(count, MINT_HEALTH_MAX, "should be truncated to MAX"); | ||
| 123 | PASS(); | ||
| 124 | } | ||
| 125 | |||
| 126 | static void test_init_empty(void) { | ||
| 127 | TEST("init with 0 mints"); | ||
| 128 | esp_err_t err = mint_health_init(NULL, 0); | ||
| 129 | ASSERT_EQ(err, 0, "init with 0 should succeed"); | ||
| 130 | |||
| 131 | int count = -1; | ||
| 132 | mint_health_get_all(&count); | ||
| 133 | ASSERT_EQ(count, 0, "should have 0 mints"); | ||
| 134 | PASS(); | ||
| 135 | } | ||
| 136 | |||
| 137 | static void dummy_cb(void) { } | ||
| 138 | |||
| 139 | static void test_register_callback(void) { | ||
| 140 | TEST("register_callback does not crash"); | ||
| 141 | mint_health_register_callback(dummy_cb); | ||
| 142 | PASS(); | ||
| 143 | } | ||
| 144 | |||
| 145 | static void test_register_callback_null(void) { | ||
| 146 | TEST("register_callback NULL does not crash"); | ||
| 147 | mint_health_register_callback(NULL); | ||
| 148 | PASS(); | ||
| 149 | } | ||
| 150 | |||
| 151 | static void test_reinit_resets_state(void) { | ||
| 152 | TEST("re-init resets state"); | ||
| 153 | const char urls[2][256] = { | ||
| 154 | "https://mint-a.example.com", | ||
| 155 | "https://mint-b.example.com" | ||
| 156 | }; | ||
| 157 | mint_health_init(urls, 2); | ||
| 158 | |||
| 159 | int count = 0; | ||
| 160 | const mint_status_t *mints = mint_health_get_all(&count); | ||
| 161 | ASSERT_EQ(count, 2, "should have 2 mints"); | ||
| 162 | ASSERT_TRUE(strcmp(mints[0].url, "https://mint-a.example.com") == 0, "first URL"); | ||
| 163 | ASSERT_TRUE(strcmp(mints[1].url, "https://mint-b.example.com") == 0, "second URL"); | ||
| 164 | PASS(); | ||
| 165 | } | ||
| 166 | |||
| 167 | static void test_start_stop(void) { | ||
| 168 | TEST("start/stop do not crash (task stubbed)"); | ||
| 169 | mint_health_start(); | ||
| 170 | mint_health_stop(); | ||
| 171 | PASS(); | ||
| 172 | } | ||
| 173 | |||
| 174 | int main(void) { | ||
| 175 | printf("\n=== Mint Health Unit Tests ===\n\n"); | ||
| 176 | |||
| 177 | test_init_basic(); | ||
| 178 | test_get_all(); | ||
| 179 | test_initial_state_unreachable(); | ||
| 180 | test_is_reachable_before_probes(); | ||
| 181 | test_is_reachable_null(); | ||
| 182 | test_is_reachable_unknown_url(); | ||
| 183 | test_mark_unreachable(); | ||
| 184 | test_mark_unreachable_null(); | ||
| 185 | test_init_overflow(); | ||
| 186 | test_init_empty(); | ||
| 187 | test_register_callback(); | ||
| 188 | test_register_callback_null(); | ||
| 189 | test_reinit_resets_state(); | ||
| 190 | test_start_stop(); | ||
| 191 | |||
| 192 | printf("\n=== Results: %d passed, %d failed ===\n\n", pass_count, test_count - pass_count); | ||
| 193 | return (pass_count == test_count) ? 0 : 1; | ||
| 194 | } | ||