Commit 85759f8
Rework health-check endpoint, spec, and tests (#2292)
### Summary
This pull request refactors the `/status/alive` healthcheck endpoint to
improve its reliability, documentation, and testing.
The previous implementation was handled directly by a plug, causing it
to be missing from the OpenAPI specification. Its associated tests were
also outdated and did not correctly test the plug's database
interaction.
### Changes
1. **API Specification (`ApiSpec`):**
* Manually added the OpenAPI specification for the `GET /status/alive`
path. This ensures the healthcheck endpoint is correctly documented for
all API consumers.
* Removed previous implementation `HealthcheckController`
### Swagger UI
<img width="1696" height="1047" alt="Screenshot 2025-08-19 at 4 54
51 PM"
src="https://github.com/user-attachments/assets/0638394c-6f4b-44b3-bbad-5cb9fb6ba55f"
/>
---------
Co-authored-by: Taras Tyshko <[email protected]>1 parent a1cc95c commit 85759f8
File tree
6 files changed
+59
-59
lines changed- lib/nerves_hub_web
- controllers
- plugs
- test/nerves_hub_web
- controllers
- plugs
6 files changed
+59
-59
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| 16 | + | |
16 | 17 | | |
17 | 18 | | |
18 | 19 | | |
| |||
28 | 29 | | |
29 | 30 | | |
30 | 31 | | |
31 | | - | |
| 32 | + | |
32 | 33 | | |
33 | 34 | | |
34 | 35 | | |
| |||
91 | 92 | | |
92 | 93 | | |
93 | 94 | | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
94 | 99 | | |
95 | 100 | | |
96 | 101 | | |
| |||
101 | 106 | | |
102 | 107 | | |
103 | 108 | | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
104 | 115 | | |
This file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
9 | 10 | | |
10 | 11 | | |
11 | | - | |
| 12 | + | |
12 | 13 | | |
13 | 14 | | |
14 | 15 | | |
| |||
17 | 18 | | |
18 | 19 | | |
19 | 20 | | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
20 | 55 | | |
21 | 56 | | |
22 | 57 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
79 | 79 | | |
80 | 80 | | |
81 | 81 | | |
82 | | - | |
83 | | - | |
84 | | - | |
85 | | - | |
86 | | - | |
87 | 82 | | |
88 | 83 | | |
89 | 84 | | |
| |||
152 | 147 | | |
153 | 148 | | |
154 | 149 | | |
155 | | - | |
156 | 150 | | |
157 | 151 | | |
158 | 152 | | |
| |||
Lines changed: 0 additions & 11 deletions
This file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
0 commit comments