oculus 0.1.3

Unified telemetry system for monitoring and observability
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
//! API Integration Tests for Oculus
//!
//! Comprehensive tests covering all HTTP API endpoints.

use axum::body::Body;
use axum::http::StatusCode;
use http_body_util::BodyExt;
use oculus::StorageBuilder;
use oculus::server::{AppState, create_router};
use serde_json::{Value, json};
use tokio::net::TcpListener;

// =============================================================================
// Test Helpers
// =============================================================================

/// Create test app state with in-memory database.
async fn create_test_state() -> (AppState, oculus::StorageHandles) {
    let handles = StorageBuilder::new("sqlite::memory:")
        .channel_capacity(100)
        .build()
        .await
        .expect("Failed to build storage");

    let state = AppState {
        metric_reader: handles.metric_reader.clone(),
        event_reader: handles.event_reader.clone(),
        collector_store: handles.collector_store.clone(),
    };

    (state, handles)
}

/// Start test server and return base URL.
async fn start_test_server() -> (String, oculus::StorageHandles) {
    let (state, handles) = create_test_state().await;
    let router = create_router(state);

    let listener = TcpListener::bind("127.0.0.1:0")
        .await
        .expect("Failed to bind random port");
    let addr = listener.local_addr().expect("Failed to get local addr");

    tokio::spawn(async move {
        axum::serve(listener, router).await.unwrap();
    });

    // Give server time to start
    tokio::time::sleep(std::time::Duration::from_millis(50)).await;

    (format!("http://{}", addr), handles)
}

/// Parse response body as JSON (unused but kept for reference).
#[allow(dead_code)]
async fn parse_json_body(body: Body) -> Value {
    let bytes = body.collect().await.unwrap().to_bytes();
    serde_json::from_slice(&bytes).unwrap_or(Value::Null)
}

// =============================================================================
// Health Probe Tests
// =============================================================================

#[tokio::test]
async fn test_health_probes() {
    let (base_url, handles) = start_test_server().await;
    let client = reqwest::Client::new();

    // Test /healthz (liveness)
    let resp = client
        .get(format!("{}/healthz", base_url))
        .send()
        .await
        .expect("Failed to send healthz request");
    assert_eq!(resp.status(), 200);
    let body: Value = resp.json().await.expect("Failed to parse healthz response");
    assert_eq!(body["status"], "ok");

    // Test /readyz (readiness)
    let resp = client
        .get(format!("{}/readyz", base_url))
        .send()
        .await
        .expect("Failed to send readyz request");
    assert_eq!(resp.status(), 200);
    let body: Value = resp.json().await.expect("Failed to parse readyz response");
    assert_eq!(body["status"], "ok");
    assert_eq!(body["db"], "ready");

    handles.shutdown().await.unwrap();
}

// =============================================================================
// Metrics API Tests
// =============================================================================

#[tokio::test]
async fn test_metrics_api() {
    let (base_url, handles) = start_test_server().await;
    let client = reqwest::Client::new();

    // Test /api/metrics with various query params
    let resp = client
        .get(format!("{}/api/metrics?limit=10&order=desc", base_url))
        .send()
        .await
        .expect("Failed to fetch metrics");
    assert_eq!(resp.status(), 200);

    // Test with category filter
    let resp = client
        .get(format!(
            "{}/api/metrics?category=network.tcp&limit=5",
            base_url
        ))
        .send()
        .await
        .expect("Failed to fetch filtered metrics");
    assert_eq!(resp.status(), 200);

    // Test with time range filter
    let resp = client
        .get(format!("{}/api/metrics?range=1h", base_url))
        .send()
        .await
        .expect("Failed to fetch ranged metrics");
    assert_eq!(resp.status(), 200);

    handles.shutdown().await.unwrap();
}

#[tokio::test]
async fn test_metrics_stats_api() {
    let (base_url, handles) = start_test_server().await;
    let client = reqwest::Client::new();

    // Test /api/metrics/stats
    let resp = client
        .get(format!("{}/api/metrics/stats", base_url))
        .send()
        .await
        .expect("Failed to fetch metrics stats");
    assert_eq!(resp.status(), 200);

    // Test with range parameter
    let resp = client
        .get(format!("{}/api/metrics/stats?range=24h", base_url))
        .send()
        .await
        .expect("Failed to fetch ranged metrics stats");
    assert_eq!(resp.status(), 200);

    handles.shutdown().await.unwrap();
}

// =============================================================================
// Events API Tests
// =============================================================================

#[tokio::test]
async fn test_events_api() {
    let (base_url, handles) = start_test_server().await;
    let client = reqwest::Client::new();

    // Test /api/events with various query params
    let resp = client
        .get(format!("{}/api/events?limit=10&order=desc", base_url))
        .send()
        .await
        .expect("Failed to fetch events");
    assert_eq!(resp.status(), 200);

    // Test with severity filter
    let resp = client
        .get(format!("{}/api/events?severity=error&limit=5", base_url))
        .send()
        .await
        .expect("Failed to fetch filtered events");
    assert_eq!(resp.status(), 200);

    // Test with time range filter
    let resp = client
        .get(format!("{}/api/events?range=7d", base_url))
        .send()
        .await
        .expect("Failed to fetch ranged events");
    assert_eq!(resp.status(), 200);

    handles.shutdown().await.unwrap();
}

// =============================================================================
// Collectors CRUD Tests
// =============================================================================

#[tokio::test]
async fn test_collectors_crud() {
    let (base_url, handles) = start_test_server().await;
    let client = reqwest::Client::new();

    // 1. Create collector via POST /api/collectors
    let create_body = json!({
        "type": "tcp",
        "name": "test-collector",
        "enabled": true,
        "group": "test",
        "config": {
            "host": "127.0.0.1",
            "port": 8080,
            "interval": "30s",
            "timeout": "5s"
        }
    });

    let resp = client
        .post(format!("{}/api/collectors", base_url))
        .json(&create_body)
        .send()
        .await
        .expect("Failed to create collector");
    assert_eq!(resp.status(), StatusCode::CREATED.as_u16());

    let created: Value = resp
        .json()
        .await
        .expect("Failed to parse created collector");
    assert_eq!(created["name"], "test-collector");
    assert_eq!(created["collector_type"], "tcp");

    // 2. List collectors via GET /api/collectors
    let resp = client
        .get(format!("{}/api/collectors", base_url))
        .send()
        .await
        .expect("Failed to list collectors");
    assert_eq!(resp.status(), 200);

    let collectors: Vec<Value> = resp.json().await.expect("Failed to parse collectors list");
    assert!(
        collectors.iter().any(|c| c["name"] == "test-collector"),
        "Created collector should be in list"
    );

    // 3. Get single collector via GET /api/collectors/{type}/{name}
    let resp = client
        .get(format!("{}/api/collectors/tcp/test-collector", base_url))
        .send()
        .await
        .expect("Failed to get collector");

    assert_eq!(resp.status(), 200);

    let collector: Value = resp.json().await.expect("Failed to parse collector");
    assert_eq!(collector["name"], "test-collector");

    // 4. Update collector via PUT /api/collectors/{type}/{name}
    let update_body = json!({
        "type": "tcp",
        "name": "test-collector",
        "enabled": false,
        "group": "updated",
        "config": {
            "host": "192.168.1.1",
            "port": 9090,
            "interval": "60s",
            "timeout": "10s"
        }
    });

    let resp = client
        .put(format!("{}/api/collectors/tcp/test-collector", base_url))
        .json(&update_body)
        .send()
        .await
        .expect("Failed to update collector");
    assert_eq!(resp.status(), 200);

    let updated: Value = resp
        .json()
        .await
        .expect("Failed to parse updated collector");
    assert!(!updated["enabled"].as_bool().unwrap());
    assert_eq!(updated["group"], "updated");

    // 5. Delete collector via DELETE /api/collectors/{type}/{name}
    let resp = client
        .delete(format!("{}/api/collectors/tcp/test-collector", base_url))
        .send()
        .await
        .expect("Failed to delete collector");
    assert_eq!(resp.status(), StatusCode::NO_CONTENT.as_u16());

    // Verify deletion
    let resp = client
        .get(format!("{}/api/collectors/tcp/test-collector", base_url))
        .send()
        .await
        .expect("Failed to verify deletion");
    assert_eq!(resp.status(), StatusCode::NOT_FOUND.as_u16());

    handles.shutdown().await.unwrap();
}

#[tokio::test]
async fn test_collector_not_found() {
    let (base_url, handles) = start_test_server().await;
    let client = reqwest::Client::new();

    // Test GET non-existent collector
    let resp = client
        .get(format!(
            "{}/api/collectors/tcp/non-existent-collector",
            base_url
        ))
        .send()
        .await
        .expect("Failed to send request");
    assert_eq!(resp.status(), StatusCode::NOT_FOUND.as_u16());

    // Test DELETE non-existent collector
    let resp = client
        .delete(format!(
            "{}/api/collectors/tcp/non-existent-collector",
            base_url
        ))
        .send()
        .await
        .expect("Failed to send request");
    assert_eq!(resp.status(), StatusCode::NOT_FOUND.as_u16());

    handles.shutdown().await.unwrap();
}

#[tokio::test]
async fn test_collector_invalid_type() {
    let (base_url, handles) = start_test_server().await;
    let client = reqwest::Client::new();

    // Test GET with invalid collector type
    let resp = client
        .get(format!(
            "{}/api/collectors/invalid-type/some-name",
            base_url
        ))
        .send()
        .await
        .expect("Failed to send request");

    assert_eq!(resp.status(), StatusCode::BAD_REQUEST.as_u16());

    // Test POST with invalid collector type
    let create_body = json!({
        "type": "invalid-type",
        "name": "test",
        "config": {}
    });

    let resp = client
        .post(format!("{}/api/collectors", base_url))
        .json(&create_body)
        .send()
        .await
        .expect("Failed to send request");
    assert_eq!(resp.status(), StatusCode::BAD_REQUEST.as_u16());

    handles.shutdown().await.unwrap();
}

#[tokio::test]
async fn test_collector_duplicate_create() {
    let (base_url, handles) = start_test_server().await;
    let client = reqwest::Client::new();

    let create_body = json!({
        "type": "ping",
        "name": "duplicate-test",
        "enabled": true,
        "group": "test",
        "config": {
            "host": "8.8.8.8",
            "interval": "30s",
            "timeout": "5s"
        }
    });

    // First create should succeed
    let resp = client
        .post(format!("{}/api/collectors", base_url))
        .json(&create_body)
        .send()
        .await
        .expect("Failed to create collector");
    assert_eq!(resp.status(), StatusCode::CREATED.as_u16());

    // Second create with same name should return 409 Conflict
    let resp = client
        .post(format!("{}/api/collectors", base_url))
        .json(&create_body)
        .send()
        .await
        .expect("Failed to send duplicate request");
    assert_eq!(resp.status(), StatusCode::CONFLICT.as_u16());

    handles.shutdown().await.unwrap();
}