gituqueiro 0.2.0

Desktop app for monitoring GitHub Pull Requests and repository health
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
use serde_json::json;
use wiremock::matchers::{header, method, path, query_param};
use wiremock::{Mock, MockServer, ResponseTemplate};

// We test the GitHub client by pointing it at a wiremock mock server.
// The client module isn't pub, so we replicate minimal request logic here
// using the same types.

mod helpers {
    use reqwest::Client;
    use serde::de::DeserializeOwned;

    pub struct TestClient {
        pub client: Client,
        pub base_url: String,
        pub token: String,
    }

    impl TestClient {
        pub fn new(base_url: &str) -> Self {
            Self {
                client: Client::new(),
                base_url: base_url.to_string(),
                token: "test-token".to_string(),
            }
        }

        pub async fn get<T: DeserializeOwned>(&self, path: &str) -> Result<T, String> {
            let resp = self
                .client
                .get(format!("{}{}", self.base_url, path))
                .header("Authorization", format!("Bearer {}", self.token))
                .header("Accept", "application/vnd.github+json")
                .header("User-Agent", "gituqueiro")
                .send()
                .await
                .map_err(|e| e.to_string())?;

            if !resp.status().is_success() {
                return Err(format!("HTTP {}", resp.status()));
            }

            resp.json().await.map_err(|e| e.to_string())
        }
    }
}

#[tokio::test]
async fn test_fetch_pull_requests() {
    let mock_server = MockServer::start().await;

    Mock::given(method("GET"))
        .and(path("/repos/owner/repo/pulls"))
        .and(query_param("state", "open"))
        .and(header("Authorization", "Bearer test-token"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!([
            {
                "number": 42,
                "title": "Fix critical bug",
                "html_url": "https://github.com/owner/repo/pull/42",
                "state": "open",
                "draft": false,
                "created_at": "2025-01-15T10:00:00Z",
                "updated_at": "2025-01-16T10:00:00Z",
                "user": { "login": "alice" },
                "head": { "sha": "abc123def", "ref": "fix-bug" },
                "labels": [
                    { "name": "bug", "color": "d73a4a" },
                    { "name": "priority", "color": "e4e669" }
                ],
                "requested_reviewers": [
                    { "login": "bob" },
                    { "login": "charlie" }
                ],
                "additions": 25,
                "deletions": 10,
                "changed_files": 3,
                "mergeable": true
            },
            {
                "number": 43,
                "title": "Add new feature",
                "html_url": "https://github.com/owner/repo/pull/43",
                "state": "open",
                "draft": true,
                "created_at": "2025-01-10T10:00:00Z",
                "updated_at": "2025-01-14T10:00:00Z",
                "user": { "login": "bob" },
                "head": { "sha": "def456", "ref": "new-feature" },
                "labels": [],
                "requested_reviewers": [],
                "additions": 500,
                "deletions": 200,
                "changed_files": 15
            }
        ])))
        .mount(&mock_server)
        .await;

    let client = helpers::TestClient::new(&mock_server.uri());
    let prs: Vec<gituqueiro::github::types::GhPullRequest> = client
        .get("/repos/owner/repo/pulls?state=open")
        .await
        .unwrap();

    assert_eq!(prs.len(), 2);
    assert_eq!(prs[0].number, 42);
    assert_eq!(prs[0].title, "Fix critical bug");
    assert_eq!(prs[0].user.login, "alice");
    assert_eq!(prs[0].labels.len(), 2);
    assert_eq!(prs[0].requested_reviewers.len(), 2);
    assert_eq!(prs[0].additions, Some(25));

    assert_eq!(prs[1].number, 43);
    assert_eq!(prs[1].draft, Some(true));
    assert_eq!(prs[1].user.login, "bob");
}

#[tokio::test]
async fn test_fetch_check_runs() {
    let mock_server = MockServer::start().await;

    Mock::given(method("GET"))
        .and(path("/repos/owner/repo/commits/abc123/check-runs"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!({
            "total_count": 3,
            "check_runs": [
                {
                    "name": "build",
                    "status": "completed",
                    "conclusion": "success",
                    "html_url": "https://github.com/owner/repo/runs/1",
                    "details_url": null
                },
                {
                    "name": "test",
                    "status": "completed",
                    "conclusion": "failure",
                    "html_url": "https://github.com/owner/repo/runs/2",
                    "details_url": null
                },
                {
                    "name": "lint",
                    "status": "in_progress",
                    "conclusion": null,
                    "html_url": "https://github.com/owner/repo/runs/3",
                    "details_url": null
                }
            ]
        })))
        .mount(&mock_server)
        .await;

    let client = helpers::TestClient::new(&mock_server.uri());
    let resp: gituqueiro::github::types::GhCheckRunsResponse = client
        .get("/repos/owner/repo/commits/abc123/check-runs")
        .await
        .unwrap();

    assert_eq!(resp.total_count, 3);
    assert_eq!(resp.check_runs.len(), 3);

    use gituqueiro::github::types::CiStatus;
    let status = CiStatus::from_check_runs(&resp.check_runs);
    assert_eq!(status, CiStatus::Failure);
}

#[tokio::test]
async fn test_fetch_user() {
    let mock_server = MockServer::start().await;

    Mock::given(method("GET"))
        .and(path("/user"))
        .and(header("Authorization", "Bearer test-token"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!({ "login": "testuser" })))
        .mount(&mock_server)
        .await;

    let client = helpers::TestClient::new(&mock_server.uri());
    let user: gituqueiro::github::types::GhUser = client.get("/user").await.unwrap();
    assert_eq!(user.login, "testuser");
}

#[tokio::test]
async fn test_unauthorized_returns_error() {
    let mock_server = MockServer::start().await;

    Mock::given(method("GET"))
        .and(path("/user"))
        .respond_with(ResponseTemplate::new(401).set_body_json(json!({
            "message": "Bad credentials"
        })))
        .mount(&mock_server)
        .await;

    let client = helpers::TestClient::new(&mock_server.uri());
    let result: Result<gituqueiro::github::types::GhUser, String> = client.get("/user").await;
    assert!(result.is_err());
    assert!(result.unwrap_err().contains("401"));
}

#[tokio::test]
async fn test_fetch_code_scanning_alerts() {
    let mock_server = MockServer::start().await;

    Mock::given(method("GET"))
        .and(path("/repos/owner/repo/code-scanning/alerts"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!([
            {
                "number": 1,
                "state": "open",
                "rule": {
                    "severity": "critical",
                    "description": "SQL Injection vulnerability"
                },
                "html_url": "https://github.com/owner/repo/security/code-scanning/1"
            },
            {
                "number": 2,
                "state": "open",
                "rule": {
                    "severity": "low",
                    "description": "Unused variable"
                },
                "html_url": "https://github.com/owner/repo/security/code-scanning/2"
            }
        ])))
        .mount(&mock_server)
        .await;

    let client = helpers::TestClient::new(&mock_server.uri());
    let alerts: Vec<gituqueiro::github::types::GhCodeScanningAlert> = client
        .get("/repos/owner/repo/code-scanning/alerts")
        .await
        .unwrap();

    assert_eq!(alerts.len(), 2);
    assert_eq!(alerts[0].state, "open");
    assert_eq!(alerts[0].rule.severity, Some("critical".to_string()));
}

#[tokio::test]
async fn test_fetch_dependabot_alerts() {
    let mock_server = MockServer::start().await;

    Mock::given(method("GET"))
        .and(path("/repos/owner/repo/dependabot/alerts"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!([
            {
                "number": 10,
                "state": "open",
                "security_advisory": {
                    "severity": "high",
                    "summary": "Remote code execution in dependency X"
                },
                "html_url": "https://github.com/owner/repo/security/dependabot/10"
            }
        ])))
        .mount(&mock_server)
        .await;

    let client = helpers::TestClient::new(&mock_server.uri());
    let alerts: Vec<gituqueiro::github::types::GhDependabotAlert> = client
        .get("/repos/owner/repo/dependabot/alerts")
        .await
        .unwrap();

    assert_eq!(alerts.len(), 1);
    assert_eq!(alerts[0].number, 10);
    assert_eq!(
        alerts[0].security_advisory.as_ref().unwrap().severity,
        "high"
    );
}

#[tokio::test]
async fn test_code_scanning_404_not_enabled() {
    let mock_server = MockServer::start().await;

    Mock::given(method("GET"))
        .and(path("/repos/owner/repo/code-scanning/alerts"))
        .respond_with(ResponseTemplate::new(404).set_body_json(json!({
            "message": "Code scanning is not enabled"
        })))
        .mount(&mock_server)
        .await;

    let client = helpers::TestClient::new(&mock_server.uri());
    let result: Result<Vec<gituqueiro::github::types::GhCodeScanningAlert>, String> =
        client.get("/repos/owner/repo/code-scanning/alerts").await;
    // 404 should return error in our test client (the real client handles it)
    assert!(result.is_err());
}

#[tokio::test]
async fn test_empty_pr_list() {
    let mock_server = MockServer::start().await;

    Mock::given(method("GET"))
        .and(path("/repos/owner/repo/pulls"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!([])))
        .mount(&mock_server)
        .await;

    let client = helpers::TestClient::new(&mock_server.uri());
    let prs: Vec<gituqueiro::github::types::GhPullRequest> =
        client.get("/repos/owner/repo/pulls").await.unwrap();

    assert!(prs.is_empty());
}

#[tokio::test]
async fn test_pr_conversion_and_filtering() {
    use gituqueiro::github::types::*;

    let json_prs: Vec<GhPullRequest> = serde_json::from_value(json!([
        {
            "number": 1,
            "title": "PR by alice",
            "html_url": "https://github.com/o/r/pull/1",
            "state": "open",
            "created_at": "2025-01-01T00:00:00Z",
            "updated_at": "2025-01-01T00:00:00Z",
            "user": { "login": "alice" },
            "head": { "sha": "aaa" },
            "labels": [],
            "requested_reviewers": [{ "login": "charlie" }]
        },
        {
            "number": 2,
            "title": "PR by bob",
            "html_url": "https://github.com/o/r/pull/2",
            "state": "open",
            "created_at": "2025-01-01T00:00:00Z",
            "updated_at": "2025-01-01T00:00:00Z",
            "user": { "login": "bob" },
            "head": { "sha": "bbb" },
            "labels": [],
            "requested_reviewers": [{ "login": "alice" }]
        }
    ]))
    .unwrap();

    let prs: Vec<PullRequest> = json_prs
        .into_iter()
        .map(|p| PullRequest::from_gh("o/r", p))
        .collect();

    // Filter: Mine (as alice)
    let mine: Vec<_> = prs.iter().filter(|p| p.author == "alice").collect();
    assert_eq!(mine.len(), 1);
    assert_eq!(mine[0].number, 1);

    // Filter: Review requested (as alice)
    let reviews: Vec<_> = prs
        .iter()
        .filter(|p| p.requested_reviewers.contains(&"alice".to_string()))
        .collect();
    assert_eq!(reviews.len(), 1);
    assert_eq!(reviews[0].number, 2);

    // Filter: By user bob
    let bobs: Vec<_> = prs.iter().filter(|p| p.author == "bob").collect();
    assert_eq!(bobs.len(), 1);
}

// ---------------------------------------------------------------------------
// OAuth Device Flow integration tests
// ---------------------------------------------------------------------------

#[tokio::test]
async fn test_oauth_device_code_request() {
    let mock_server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/login/device/code"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!({
            "device_code": "3584d83530557fdd1f46af8289938c8ef79f9dc5",
            "user_code": "WDJB-MJHT",
            "verification_uri": "https://github.com/login/device",
            "expires_in": 900,
            "interval": 5
        })))
        .mount(&mock_server)
        .await;

    let client = helpers::TestClient::new(&mock_server.uri());
    let resp: gituqueiro::github::oauth::DeviceCodeResponse = client
        .client
        .post(format!("{}/login/device/code", mock_server.uri()))
        .header("Accept", "application/json")
        .form(&[("client_id", "test-client-id"), ("scope", "repo")])
        .send()
        .await
        .unwrap()
        .json()
        .await
        .unwrap();

    assert_eq!(resp.user_code, "WDJB-MJHT");
    assert_eq!(resp.verification_uri, "https://github.com/login/device");
    assert_eq!(resp.interval, 5);
    assert_eq!(resp.expires_in, 900);
}

#[tokio::test]
async fn test_oauth_token_success_response() {
    let mock_server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/login/oauth/access_token"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!({
            "access_token": "ghu_test_token_abc123",
            "token_type": "bearer",
            "scope": "repo"
        })))
        .mount(&mock_server)
        .await;

    let client = helpers::TestClient::new(&mock_server.uri());
    let resp: gituqueiro::github::oauth::AccessTokenResponse = client
        .client
        .post(format!("{}/login/oauth/access_token", mock_server.uri()))
        .header("Accept", "application/json")
        .form(&[
            ("client_id", "test-id"),
            ("device_code", "test-device-code"),
            ("grant_type", "urn:ietf:params:oauth:grant-type:device_code"),
        ])
        .send()
        .await
        .unwrap()
        .json()
        .await
        .unwrap();

    assert_eq!(resp.access_token, Some("ghu_test_token_abc123".to_string()));
    assert_eq!(resp.token_type, Some("bearer".to_string()));
    assert!(resp.error.is_none());
}

#[tokio::test]
async fn test_oauth_token_pending_response() {
    let mock_server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/login/oauth/access_token"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!({
            "error": "authorization_pending",
            "error_description": "The authorization request is still pending."
        })))
        .mount(&mock_server)
        .await;

    let client = helpers::TestClient::new(&mock_server.uri());
    let resp: gituqueiro::github::oauth::AccessTokenResponse = client
        .client
        .post(format!("{}/login/oauth/access_token", mock_server.uri()))
        .header("Accept", "application/json")
        .form(&[
            ("client_id", "test-id"),
            ("device_code", "test-device-code"),
            ("grant_type", "urn:ietf:params:oauth:grant-type:device_code"),
        ])
        .send()
        .await
        .unwrap()
        .json()
        .await
        .unwrap();

    assert!(resp.access_token.is_none());
    assert_eq!(resp.error, Some("authorization_pending".to_string()));
}

#[tokio::test]
async fn test_oauth_token_slow_down_response() {
    let mock_server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/login/oauth/access_token"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!({
            "error": "slow_down",
            "error_description": "Too many requests. Please wait."
        })))
        .mount(&mock_server)
        .await;

    let client = helpers::TestClient::new(&mock_server.uri());
    let resp: gituqueiro::github::oauth::AccessTokenResponse = client
        .client
        .post(format!("{}/login/oauth/access_token", mock_server.uri()))
        .header("Accept", "application/json")
        .form(&[("client_id", "test-id"), ("device_code", "dc")])
        .send()
        .await
        .unwrap()
        .json()
        .await
        .unwrap();

    assert_eq!(resp.error, Some("slow_down".to_string()));
}

#[tokio::test]
async fn test_oauth_token_expired_response() {
    let mock_server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/login/oauth/access_token"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!({
            "error": "expired_token",
            "error_description": "The device_code has expired."
        })))
        .mount(&mock_server)
        .await;

    let client = helpers::TestClient::new(&mock_server.uri());
    let resp: gituqueiro::github::oauth::AccessTokenResponse = client
        .client
        .post(format!("{}/login/oauth/access_token", mock_server.uri()))
        .header("Accept", "application/json")
        .form(&[("client_id", "test-id"), ("device_code", "dc")])
        .send()
        .await
        .unwrap()
        .json()
        .await
        .unwrap();

    assert_eq!(resp.error, Some("expired_token".to_string()));
}

#[tokio::test]
async fn test_oauth_token_access_denied_response() {
    let mock_server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/login/oauth/access_token"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!({
            "error": "access_denied",
            "error_description": "The user has denied your application access."
        })))
        .mount(&mock_server)
        .await;

    let client = helpers::TestClient::new(&mock_server.uri());
    let resp: gituqueiro::github::oauth::AccessTokenResponse = client
        .client
        .post(format!("{}/login/oauth/access_token", mock_server.uri()))
        .header("Accept", "application/json")
        .form(&[("client_id", "test-id"), ("device_code", "dc")])
        .send()
        .await
        .unwrap()
        .json()
        .await
        .unwrap();

    assert_eq!(resp.error, Some("access_denied".to_string()));
    assert!(resp.error_description.is_some());
}

#[tokio::test]
async fn test_oauth_device_code_error_response() {
    let mock_server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/login/device/code"))
        .respond_with(ResponseTemplate::new(401).set_body_json(json!({
            "message": "Not Found",
            "documentation_url": "https://docs.github.com/"
        })))
        .mount(&mock_server)
        .await;

    let resp = helpers::TestClient::new(&mock_server.uri())
        .client
        .post(format!("{}/login/device/code", mock_server.uri()))
        .header("Accept", "application/json")
        .form(&[("client_id", "bad-id")])
        .send()
        .await
        .unwrap();

    assert_eq!(resp.status().as_u16(), 401);
}

// ---------------------------------------------------------------------------
// Organization repos integration tests
// ---------------------------------------------------------------------------

#[tokio::test]
async fn test_fetch_org_repos() {
    let mock_server = MockServer::start().await;

    Mock::given(method("GET"))
        .and(path("/orgs/myorg/repos"))
        .and(header("Authorization", "Bearer test-token"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!([
            { "full_name": "myorg/repo-a", "archived": false, "disabled": false },
            { "full_name": "myorg/repo-b", "archived": false, "disabled": false },
            { "full_name": "myorg/old-repo", "archived": true, "disabled": false },
            { "full_name": "myorg/disabled-repo", "archived": false, "disabled": true }
        ])))
        .mount(&mock_server)
        .await;

    let client = helpers::TestClient::new(&mock_server.uri());
    let repos: Vec<gituqueiro::github::types::GhRepo> = client
        .get("/orgs/myorg/repos?type=all&per_page=100&page=1")
        .await
        .unwrap();

    assert_eq!(repos.len(), 4);

    // Filter out archived and disabled (as the client does)
    let active: Vec<_> = repos
        .iter()
        .filter(|r| !r.archived.unwrap_or(false) && !r.disabled.unwrap_or(false))
        .collect();
    assert_eq!(active.len(), 2);
    assert_eq!(active[0].full_name, "myorg/repo-a");
    assert_eq!(active[1].full_name, "myorg/repo-b");
}

#[tokio::test]
async fn test_fetch_org_repos_empty() {
    let mock_server = MockServer::start().await;

    Mock::given(method("GET"))
        .and(path("/orgs/empty-org/repos"))
        .respond_with(ResponseTemplate::new(200).set_body_json(json!([])))
        .mount(&mock_server)
        .await;

    let client = helpers::TestClient::new(&mock_server.uri());
    let repos: Vec<gituqueiro::github::types::GhRepo> = client
        .get("/orgs/empty-org/repos?type=all&per_page=100&page=1")
        .await
        .unwrap();

    assert!(repos.is_empty());
}

#[tokio::test]
async fn test_fetch_org_repos_not_found() {
    let mock_server = MockServer::start().await;

    Mock::given(method("GET"))
        .and(path("/orgs/nonexistent/repos"))
        .respond_with(ResponseTemplate::new(404).set_body_json(json!({
            "message": "Not Found"
        })))
        .mount(&mock_server)
        .await;

    let client = helpers::TestClient::new(&mock_server.uri());
    let result: Result<Vec<gituqueiro::github::types::GhRepo>, String> =
        client.get("/orgs/nonexistent/repos").await;

    assert!(result.is_err());
}