lineark-sdk 2.1.1

Typed, async-first Rust SDK for the Linear GraphQL API
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
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
//! Online integration tests for the lineark SDK against a real Linear workspace.
//!
//! These tests require a valid Linear API token at `~/.linear_api_token_test`.
//! When the token file is missing, tests are automatically skipped with a message.
//!
//! The token should be connected to a test workspace — never use production tokens here.

use lineark_sdk::generated::types::*;
use lineark_sdk::Client;
use lineark_test_utils::*;

fn test_client() -> Client {
    Client::from_token(test_token()).expect("failed to create test client")
}

test_with::tokio_runner!(online);

#[test_with::module]
mod online {
    // ── Viewer ──────────────────────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn viewer_returns_authenticated_user() {
        let client = test_client();
        let user = client.whoami::<User>().await.unwrap();
        assert!(user.id.is_some(), "viewer should have an id");
        assert!(user.email.is_some(), "viewer should have an email");
        assert!(user.active.is_some(), "viewer should have active status");
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn viewer_fields_deserialize_correctly() {
        let client = test_client();
        let user = client.whoami::<User>().await.unwrap();
        assert!(user.id.is_some());
        assert!(user.name.is_some());
        assert!(user.email.is_some());
        let active = user.active.expect("viewer should have active field");
        assert!(active, "test user should be active");
    }

    // ── Teams ───────────────────────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn teams_returns_at_least_one_team() {
        let client = test_client();
        let _team = create_test_team(&client).await;
        let conn = client.teams::<Team>().first(10).send().await.unwrap();
        assert!(
            !conn.nodes.is_empty(),
            "workspace should have at least one team"
        );
        let team = &conn.nodes[0];
        assert!(team.id.is_some());
        assert!(team.name.is_some());
        assert!(team.key.is_some());
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn team_by_id() {
        let client = test_client();
        let team = create_test_team(&client).await;
        let team_id = team.id.clone();
        let team = client.team::<Team>(team_id.clone()).await.unwrap();
        assert_eq!(team.id, Some(team_id));
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn team_fields_deserialize_correctly() {
        let client = test_client();
        let team = create_test_team(&client).await;
        let team_id = team.id.clone();
        let team = client.team::<Team>(team_id).await.unwrap();
        assert!(team.id.is_some());
        assert!(team.key.is_some());
        assert!(team.name.is_some());
        let key = team.key.as_ref().unwrap();
        assert!(!key.is_empty());
    }

    // ── Users ───────────────────────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn users_returns_at_least_one_user() {
        let client = test_client();
        let conn = client.users::<User>().last(10).send().await.unwrap();
        assert!(
            !conn.nodes.is_empty(),
            "workspace should have at least one user"
        );
        let user = &conn.nodes[0];
        assert!(user.id.is_some());
        assert!(user.name.is_some());
    }

    // ── Projects ────────────────────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn projects_returns_connection() {
        let client = test_client();
        let conn = client.projects::<Project>().first(10).send().await.unwrap();
        // Connection should deserialize; verify page_info is present.
        let _ = conn.page_info;
    }

    // ── Issues ──────────────────────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn issues_returns_connection() {
        let client = test_client();
        let conn = client.issues::<Issue>().first(5).send().await.unwrap();
        for issue in &conn.nodes {
            assert!(issue.id.is_some());
        }
    }

    // ── Issue Labels ────────────────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn issue_labels_returns_connection() {
        let client = test_client();
        let conn = client
            .issue_labels::<IssueLabel>()
            .first(10)
            .send()
            .await
            .unwrap();
        for label in &conn.nodes {
            assert!(label.id.is_some());
            assert!(label.name.is_some());
        }
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn issue_label_create_update_and_delete() {
        use lineark_sdk::generated::inputs::{IssueLabelCreateInput, IssueLabelUpdateInput};

        let client = test_client();

        // Create a workspace-level label with a unique name.
        let unique = format!(
            "[test] sdk-label {}",
            &uuid::Uuid::new_v4().to_string()[..8]
        );
        let input = IssueLabelCreateInput {
            name: Some(unique.clone()),
            color: Some("#eb5757".to_string()),
            ..Default::default()
        };
        let label = retry_create(|| {
            let input = input.clone();
            async { client.issue_label_create::<IssueLabel>(None, input).await }
        })
        .await;
        let label_id = label.id.clone().unwrap();
        let _label_guard = LabelGuard {
            token: test_token(),
            id: label_id.clone(),
        };
        assert!(!label_id.is_empty());
        assert_eq!(label.name, Some(unique));
        assert_eq!(label.color, Some("#eb5757".to_string()));

        // Update the label's color.
        let update_input = IssueLabelUpdateInput {
            color: Some("#4ea7fc".to_string()),
            ..Default::default()
        };
        let updated = client
            .issue_label_update::<IssueLabel>(None, update_input, label_id.clone())
            .await
            .unwrap();
        assert!(updated.id.is_some());
        assert_eq!(updated.color, Some("#4ea7fc".to_string()));

        // Delete the label.
        client.issue_label_delete(label_id).await.unwrap();
    }

    // ── Cycles ──────────────────────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn cycles_returns_connection() {
        let client = test_client();
        let conn = client.cycles::<Cycle>().first(10).send().await.unwrap();
        for cycle in &conn.nodes {
            assert!(cycle.id.is_some());
        }
    }

    // ── Workflow States ─────────────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn workflow_states_returns_connection() {
        let client = test_client();
        let conn = client
            .workflow_states::<WorkflowState>()
            .first(50)
            .send()
            .await
            .unwrap();
        assert!(
            !conn.nodes.is_empty(),
            "workspace should have workflow states"
        );
        let state = &conn.nodes[0];
        assert!(state.id.is_some());
        assert!(state.name.is_some());
    }

    // ── Search ──────────────────────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn search_issues_returns_connection() {
        let client = test_client();
        let conn = client
            .search_issues::<IssueSearchResult>("test")
            .first(5)
            .send()
            .await
            .unwrap();
        for issue in &conn.nodes {
            assert!(issue.id.is_some());
        }
    }

    // ── Builder parameter stress tests ─────────────────────────────────────
    // These verify that each builder setter actually affects the API response.

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn first_limits_result_count() {
        let client = test_client();
        // Workflow states typically have 5+ (Triage, Backlog, Todo, In Progress, Done, Canceled).
        let all = client
            .workflow_states::<WorkflowState>()
            .first(50)
            .send()
            .await
            .unwrap();
        assert!(
            all.nodes.len() >= 2,
            "need at least 2 workflow states to test first(), got {}",
            all.nodes.len()
        );
        let limited = client
            .workflow_states::<WorkflowState>()
            .first(1)
            .send()
            .await
            .unwrap();
        assert_eq!(
            limited.nodes.len(),
            1,
            "first(1) should return exactly 1 item"
        );
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn last_returns_different_item_than_first() {
        let client = test_client();
        let all = client
            .workflow_states::<WorkflowState>()
            .first(50)
            .send()
            .await
            .unwrap();
        if all.nodes.len() < 2 {
            // Can't distinguish first vs last with <2 items, skip.
            return;
        }
        let from_first = client
            .workflow_states::<WorkflowState>()
            .first(1)
            .send()
            .await
            .unwrap();
        let from_last = client
            .workflow_states::<WorkflowState>()
            .last(1)
            .send()
            .await
            .unwrap();
        assert_eq!(from_first.nodes.len(), 1);
        assert_eq!(from_last.nodes.len(), 1);
        // first(1) and last(1) should be different items (first vs last of the list).
        assert_ne!(
            from_first.nodes[0].id, from_last.nodes[0].id,
            "first(1) and last(1) should return different workflow states"
        );
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn after_cursor_paginates_to_next_page() {
        let client = test_client();
        let all = client
            .workflow_states::<WorkflowState>()
            .first(50)
            .send()
            .await
            .unwrap();
        if all.nodes.len() < 2 {
            return;
        }
        // Fetch first page of 1.
        let page1 = client
            .workflow_states::<WorkflowState>()
            .first(1)
            .send()
            .await
            .unwrap();
        assert_eq!(page1.nodes.len(), 1);
        let cursor = page1
            .page_info
            .end_cursor
            .as_ref()
            .expect("first page should have endCursor");

        // Fetch second page using after(cursor).
        let page2 = client
            .workflow_states::<WorkflowState>()
            .first(1)
            .after(cursor)
            .send()
            .await
            .unwrap();
        assert_eq!(page2.nodes.len(), 1);
        assert_ne!(
            page1.nodes[0].id, page2.nodes[0].id,
            "after(cursor) should return a different item than page 1"
        );
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn include_archived_does_not_error() {
        let client = test_client();
        // Just verify the parameter is accepted by the API without error.
        let _ = client
            .teams::<Team>()
            .first(1)
            .include_archived(true)
            .send()
            .await
            .unwrap();
        let _ = client
            .teams::<Team>()
            .first(1)
            .include_archived(false)
            .send()
            .await
            .unwrap();
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn search_issues_term_filters_results() {
        use lineark_sdk::generated::inputs::IssueCreateInput;

        let client = test_client();
        let team = create_test_team(&client).await;
        let team_id = team.id.clone();

        // Create an issue with a unique title.
        let unique = format!("[builder-test-{}]", uuid::Uuid::new_v4());
        let input = IssueCreateInput {
            title: Some(unique.clone()),
            team_id: Some(team_id),
            priority: Some(4),
            ..Default::default()
        };
        let entity = retry_create(|| {
            let input = input.clone();
            async { client.issue_create::<Issue>(input).await }
        })
        .await;
        let issue_id = entity.id.clone().unwrap();
        let _issue_guard = IssueGuard {
            token: test_token(),
            id: issue_id.clone(),
        };

        // Linear's search index is eventually consistent — retry with generous backoff.
        let search_unique = unique.clone();
        let result = retry_search(
            || {
                client
                    .search_issues::<IssueSearchResult>(&search_unique)
                    .first(5)
                    .send()
            },
            |conn| {
                conn.nodes.iter().any(|n| {
                    n.title
                        .as_deref()
                        .is_some_and(|t| t.contains(&search_unique))
                })
            },
        )
        .await;
        assert!(
            result.is_some(),
            "search_issues(term) should find the created issue"
        );

        // Search for nonsense — should NOT find it.
        let not_found = client
            .search_issues::<IssueSearchResult>("xyzzy_nonexistent_99999")
            .first(5)
            .send()
            .await
            .expect("nonsense search should not be rate-limited");
        let false_match = not_found
            .nodes
            .iter()
            .any(|n| n.title.as_deref().is_some_and(|t| t.contains(&unique)));
        assert!(
            !false_match,
            "search with different term should not find our issue"
        );

        // Clean up.
        client
            .issue_delete::<Issue>(Some(true), issue_id)
            .await
            .unwrap();
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn search_issues_team_id_filters_by_team() {
        use lineark_sdk::generated::inputs::IssueCreateInput;

        let client = test_client();
        let team = create_test_team(&client).await;
        let team_id = team.id.clone();

        // Create an issue with a unique title in the first team.
        let unique = format!("[team-filter-{}]", uuid::Uuid::new_v4());
        let input = IssueCreateInput {
            title: Some(unique.clone()),
            team_id: Some(team_id.clone()),
            priority: Some(4),
            ..Default::default()
        };
        let entity = retry_create(|| {
            let input = input.clone();
            async { client.issue_create::<Issue>(input).await }
        })
        .await;
        let issue_id = entity.id.clone().unwrap();
        let _issue_guard = IssueGuard {
            token: test_token(),
            id: issue_id.clone(),
        };

        // Linear's search index is eventually consistent — retry with generous backoff.
        let search_unique = unique.clone();
        let search_team_id = team_id.clone();
        let result = retry_search(
            || {
                client
                    .search_issues::<IssueSearchResult>(&search_unique)
                    .first(5)
                    .team_id(&search_team_id)
                    .send()
            },
            |conn| {
                conn.nodes.iter().any(|n| {
                    n.title
                        .as_deref()
                        .is_some_and(|t| t.contains(&search_unique))
                })
            },
        )
        .await;
        assert!(
            result.is_some(),
            "search with correct team_id should find the issue"
        );

        // Search with a fake team_id — should NOT find it.
        tokio::time::sleep(std::time::Duration::from_secs(2)).await;
        let with_wrong_team = client
            .search_issues::<IssueSearchResult>(&unique)
            .first(5)
            .team_id("00000000-0000-0000-0000-000000000000")
            .send()
            .await
            .expect("wrong-team search should not be rate-limited");
        let false_match = with_wrong_team
            .nodes
            .iter()
            .any(|n| n.title.as_deref().is_some_and(|t| t.contains(&unique)));
        assert!(
            !false_match,
            "search with wrong team_id should not find the issue"
        );

        // Clean up.
        client
            .issue_delete::<Issue>(Some(true), issue_id)
            .await
            .unwrap();
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn users_include_disabled_accepted() {
        let client = test_client();
        // Verify include_disabled parameter is accepted without error.
        let _ = client
            .users::<User>()
            .include_disabled(true)
            .first(5)
            .send()
            .await
            .unwrap();
        let _ = client
            .users::<User>()
            .include_disabled(false)
            .first(5)
            .send()
            .await
            .unwrap();
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn no_params_returns_defaults() {
        let client = test_client();
        // Calling send() with no setters should work (all params null = API defaults).
        let conn = client.teams::<Team>().send().await.unwrap();
        assert!(
            !conn.nodes.is_empty(),
            "teams() with no params should return results"
        );
        let conn = client.issues::<Issue>().send().await.unwrap();
        // issues() with no filter returns all non-archived issues.
        // Just verify it doesn't error.
        for issue in &conn.nodes {
            assert!(issue.id.is_some());
        }
    }

    // ── Mutations ────────────────────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn issue_create_and_delete() {
        use lineark_sdk::generated::inputs::IssueCreateInput;

        let client = test_client();

        let team = create_test_team(&client).await;
        let team_id = team.id.clone();

        // Create an issue.
        let input = IssueCreateInput {
            title: Some("[test] SDK issue_create_and_delete".to_string()),
            team_id: Some(team_id),
            description: Some("Automated test — will be deleted immediately.".to_string()),
            priority: Some(4), // Low
            ..Default::default()
        };
        let entity = retry_create(|| {
            let input = input.clone();
            async { client.issue_create::<Issue>(input).await }
        })
        .await;
        let issue_id = entity.id.clone().unwrap();
        let _issue_guard = IssueGuard {
            token: test_token(),
            id: issue_id.clone(),
        };
        assert!(!issue_id.is_empty());

        // Permanently delete the issue to keep the workspace clean.
        client
            .issue_delete::<Issue>(Some(true), issue_id)
            .await
            .unwrap();
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn issue_update() {
        use lineark_sdk::generated::inputs::{IssueCreateInput, IssueUpdateInput};

        let client = test_client();

        // Create an issue to update.
        let team = create_test_team(&client).await;
        let team_id = team.id.clone();

        let input = IssueCreateInput {
            title: Some("[test] SDK issue_update".to_string()),
            team_id: Some(team_id),
            priority: Some(4),
            ..Default::default()
        };
        let entity = retry_create(|| {
            let input = input.clone();
            async { client.issue_create::<Issue>(input).await }
        })
        .await;
        let issue_id = entity.id.clone().unwrap();
        let _issue_guard = IssueGuard {
            token: test_token(),
            id: issue_id.clone(),
        };

        // Update the issue.
        let update_input = IssueUpdateInput {
            title: Some("[test] SDK issue_update — updated".to_string()),
            priority: Some(3), // Medium
            ..Default::default()
        };
        let updated_entity = client
            .issue_update::<Issue>(update_input, issue_id.clone())
            .await
            .unwrap();
        // Verify the returned entity has an id.
        assert!(updated_entity.id.is_some());

        // Clean up: permanently delete.
        client
            .issue_delete::<Issue>(Some(true), issue_id)
            .await
            .unwrap();
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn issue_archive_and_unarchive() {
        use lineark_sdk::generated::inputs::IssueCreateInput;

        let client = test_client();

        // Create an issue to archive.
        let team = create_test_team(&client).await;
        let team_id = team.id.clone();

        let input = IssueCreateInput {
            title: Some("[test] SDK issue_archive_and_unarchive".to_string()),
            team_id: Some(team_id),
            priority: Some(4),
            ..Default::default()
        };
        let entity = retry_create(|| {
            let input = input.clone();
            async { client.issue_create::<Issue>(input).await }
        })
        .await;
        let issue_id = entity.id.clone().unwrap();
        let _issue_guard = IssueGuard {
            token: test_token(),
            id: issue_id.clone(),
        };

        // Archive the issue — success is verified by not returning an error.
        client
            .issue_archive::<Issue>(None, issue_id.clone())
            .await
            .unwrap();

        // Unarchive the issue.
        client
            .issue_unarchive::<Issue>(issue_id.clone())
            .await
            .unwrap();

        // Clean up: permanently delete.
        client
            .issue_delete::<Issue>(Some(true), issue_id)
            .await
            .unwrap();
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn comment_create() {
        use lineark_sdk::generated::inputs::{CommentCreateInput, IssueCreateInput};

        let client = test_client();

        // Create an issue to comment on.
        let team = create_test_team(&client).await;
        let team_id = team.id.clone();

        let issue_input = IssueCreateInput {
            title: Some("[test] SDK comment_create".to_string()),
            team_id: Some(team_id),
            priority: Some(4),
            ..Default::default()
        };
        let issue_entity = retry_create(|| {
            let issue_input = issue_input.clone();
            async { client.issue_create::<Issue>(issue_input).await }
        })
        .await;
        let issue_id = issue_entity.id.clone().unwrap();
        let _issue_guard = IssueGuard {
            token: test_token(),
            id: issue_id.clone(),
        };

        // Create a comment.
        let comment_input = CommentCreateInput {
            body: Some("Automated test comment from lineark SDK.".to_string()),
            issue_id: Some(issue_id.clone()),
            ..Default::default()
        };
        let comment_entity = retry_create(|| {
            let comment_input = comment_input.clone();
            async { client.comment_create::<Comment>(comment_input).await }
        })
        .await;
        assert!(comment_entity.id.is_some());

        // Clean up: permanently delete the issue.
        client
            .issue_delete::<Issue>(Some(true), issue_id)
            .await
            .unwrap();
    }

    // ── Documents ────────────────────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn documents_returns_connection() {
        let client = test_client();
        let conn = client
            .documents::<Document>()
            .first(10)
            .send()
            .await
            .unwrap();
        // Connection should deserialize; may be empty if workspace has no docs.
        let _ = conn.page_info;
        for doc in &conn.nodes {
            assert!(doc.id.is_some());
        }
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn document_create_update_and_delete() {
        use lineark_sdk::generated::inputs::{DocumentCreateInput, DocumentUpdateInput};

        let client = test_client();

        // Create a team to associate the document with (Linear requires at least one parent).
        let team = create_test_team(&client).await;
        let team_id = team.id.clone();

        // Create a document.
        let input = DocumentCreateInput {
            title: Some("[test] SDK document_create_update_and_delete".to_string()),
            content: Some("Automated test document content.".to_string()),
            team_id: Some(team_id),
            ..Default::default()
        };
        let doc_entity = retry_create(|| {
            let input = input.clone();
            async { client.document_create::<Document>(input).await }
        })
        .await;
        let doc_id = doc_entity.id.clone().unwrap();
        let _doc_guard = DocumentGuard {
            token: test_token(),
            id: doc_id.clone(),
        };
        assert!(!doc_id.is_empty());

        // Read the document by ID.
        let fetched = client.document::<Document>(doc_id.clone()).await.unwrap();
        assert_eq!(fetched.id, Some(doc_id.clone()));
        assert_eq!(
            fetched.title,
            Some("[test] SDK document_create_update_and_delete".to_string())
        );

        // Update the document.
        let update_input = DocumentUpdateInput {
            title: Some("[test] SDK document — updated".to_string()),
            content: Some("Updated content.".to_string()),
            ..Default::default()
        };
        // Just verify the update succeeded.
        client
            .document_update::<Document>(update_input, doc_id.clone())
            .await
            .unwrap();

        // Delete the document.
        client.document_delete::<Document>(doc_id).await.unwrap();
    }

    // ── Issue Relations ─────────────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn issue_relations_returns_connection() {
        let client = test_client();
        let conn = client
            .issue_relations::<IssueRelation>()
            .first(10)
            .send()
            .await
            .unwrap();
        // Connection should deserialize; may be empty.
        let _ = conn.page_info;
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn issue_relation_create_between_two_issues() {
        use lineark_sdk::generated::enums::IssueRelationType;
        use lineark_sdk::generated::inputs::{IssueCreateInput, IssueRelationCreateInput};

        let client = test_client();

        // Create a team for the test issues.
        let team = create_test_team(&client).await;
        let team_id = team.id.clone();

        // Create two issues to relate.
        let input_a = IssueCreateInput {
            title: Some("[test] relation issue A".to_string()),
            team_id: Some(team_id.clone()),
            priority: Some(4),
            ..Default::default()
        };
        let entity_a = retry_create(|| {
            let input_a = input_a.clone();
            async { client.issue_create::<Issue>(input_a).await }
        })
        .await;
        let issue_a_id = entity_a.id.clone().unwrap();
        let _issue_a_guard = IssueGuard {
            token: test_token(),
            id: issue_a_id.clone(),
        };

        let input_b = IssueCreateInput {
            title: Some("[test] relation issue B".to_string()),
            team_id: Some(team_id),
            priority: Some(4),
            ..Default::default()
        };
        let entity_b = retry_create(|| {
            let input_b = input_b.clone();
            async { client.issue_create::<Issue>(input_b).await }
        })
        .await;
        let issue_b_id = entity_b.id.clone().unwrap();
        let _issue_b_guard = IssueGuard {
            token: test_token(),
            id: issue_b_id.clone(),
        };

        // Create a "blocks" relation: A blocks B.
        let relation_input = IssueRelationCreateInput {
            issue_id: Some(issue_a_id.clone()),
            related_issue_id: Some(issue_b_id.clone()),
            r#type: Some(IssueRelationType::Blocks),
            ..Default::default()
        };
        let relation_entity = retry_create(|| {
            let relation_input = relation_input.clone();
            async {
                client
                    .issue_relation_create::<IssueRelation>(None, relation_input)
                    .await
            }
        })
        .await;
        assert!(relation_entity.id.is_some(), "relation should have an id");

        // Verify the relation is queryable.
        let relation_id = relation_entity.id.clone().unwrap();
        let fetched = client
            .issue_relation::<IssueRelation>(relation_id)
            .await
            .unwrap();
        assert!(fetched.id.is_some());

        // Clean up: delete both issues (cascades the relation).
        client
            .issue_delete::<Issue>(Some(true), issue_a_id)
            .await
            .unwrap();
        client
            .issue_delete::<Issue>(Some(true), issue_b_id)
            .await
            .unwrap();
    }

    // ── File Upload ─────────────────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn file_upload_returns_signed_url() {
        let client = test_client();

        // Request a signed upload URL for a small file.
        let entity = client
            .file_upload(
                None,
                None,
                100,
                "text/plain".to_string(),
                "test.txt".to_string(),
            )
            .await
            .unwrap();

        // Non-generic mutation returns the full payload; entity is under "uploadFile".
        let upload_file = entity.get("uploadFile").expect("should have uploadFile");
        assert!(
            upload_file.get("uploadUrl").is_some(),
            "should have uploadUrl"
        );
        assert!(
            upload_file.get("assetUrl").is_some(),
            "should have assetUrl"
        );
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn upload_file_end_to_end() {
        let client = test_client();

        // Upload a small text file.
        let content = b"lineark SDK test upload content".to_vec();
        let result = client
            .upload_file("test-upload.txt", "text/plain", content, false)
            .await
            .unwrap();

        assert!(
            !result.asset_url.is_empty(),
            "asset_url should be non-empty"
        );
        assert!(
            result.asset_url.starts_with("https://"),
            "asset_url should be an HTTPS URL, got: {}",
            result.asset_url
        );
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn upload_then_download_round_trip() {
        let client = test_client();

        // Upload a file with known content.
        let content = b"SDK round-trip test content 12345".to_vec();
        let upload_result = client
            .upload_file("round-trip.txt", "text/plain", content.clone(), false)
            .await
            .unwrap();
        assert!(!upload_result.asset_url.is_empty());

        // Download it back via download_url.
        let download_result = client.download_url(&upload_result.asset_url).await.unwrap();
        assert_eq!(
            download_result.bytes, content,
            "downloaded bytes should match uploaded content"
        );
        assert!(
            download_result
                .content_type
                .as_deref()
                .is_some_and(|ct| ct.contains("text/plain")),
            "content type should be text/plain, got: {:?}",
            download_result.content_type
        );
    }

    // ── Batch mutations ──────────────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn issue_batch_update_changes_priority() {
        use lineark_sdk::generated::inputs::{IssueCreateInput, IssueUpdateInput};

        let client = test_client();
        let team = create_test_team(&client).await;
        let team_id = team.id.clone();

        // Create two issues.
        let input_a = IssueCreateInput {
            title: Some(format!(
                "[test] SDK batch_update A {}",
                &uuid::Uuid::new_v4().to_string()[..8]
            )),
            team_id: Some(team_id.clone()),
            priority: Some(4),
            ..Default::default()
        };
        let entity_a = retry_create(|| {
            let input_a = input_a.clone();
            async { client.issue_create::<Issue>(input_a).await }
        })
        .await;
        let id_a = entity_a.id.clone().unwrap();
        let _guard_a = IssueGuard {
            token: test_token(),
            id: id_a.clone(),
        };

        let input_b = IssueCreateInput {
            title: Some(format!(
                "[test] SDK batch_update B {}",
                &uuid::Uuid::new_v4().to_string()[..8]
            )),
            team_id: Some(team_id),
            priority: Some(4),
            ..Default::default()
        };
        let entity_b = retry_create(|| {
            let input_b = input_b.clone();
            async { client.issue_create::<Issue>(input_b).await }
        })
        .await;
        let id_b = entity_b.id.clone().unwrap();
        let _guard_b = IssueGuard {
            token: test_token(),
            id: id_b.clone(),
        };

        // Batch update both issues' priority.
        let update_input = IssueUpdateInput {
            priority: Some(2),
            ..Default::default()
        };
        let result = client
            .issue_batch_update::<Issue>(update_input, vec![id_a, id_b])
            .await
            .unwrap();

        assert_eq!(result.len(), 2, "batch update should return 2 issues");
        for issue in &result {
            assert!(issue.id.is_some());
        }
    }

    // ── Error handling ──────────────────────────────────────────────────────

    // ── Team CRUD ────────────────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn team_create_update_and_delete() {
        use lineark_sdk::generated::inputs::{TeamCreateInput, TeamUpdateInput};

        let client = test_client();

        // Create a team with a unique name.
        let unique = format!("[test] sdk-team {}", &uuid::Uuid::new_v4().to_string()[..8]);
        let input = TeamCreateInput {
            name: Some(unique.clone()),
            ..Default::default()
        };
        let team = retry_create(|| {
            let input = input.clone();
            async { client.team_create::<Team>(None, input).await }
        })
        .await;
        let team_id = team.id.clone().unwrap();
        let _team_guard = TeamGuard {
            token: test_token(),
            id: team_id.clone(),
        };
        assert!(!team_id.is_empty());
        assert_eq!(team.name, Some(unique));

        // Update the team's description.
        let update_input = TeamUpdateInput {
            description: Some("Updated by SDK test.".to_string()),
            ..Default::default()
        };
        let updated = client
            .team_update::<Team>(None, update_input, team_id.clone())
            .await
            .unwrap();
        assert!(updated.id.is_some());

        // Verify the update by reading the team.
        let fetched = client.team::<Team>(team_id.clone()).await.unwrap();
        assert_eq!(
            fetched.description,
            Some("Updated by SDK test.".to_string())
        );

        // Delete the team.
        client.team_delete(team_id).await.unwrap();
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn team_membership_create_and_delete() {
        use lineark_sdk::generated::inputs::{TeamCreateInput, TeamMembershipCreateInput};

        let client = test_client();

        // Create a team (the authenticated user becomes creator + auto-member).
        let unique = format!(
            "[test] sdk-member {}",
            &uuid::Uuid::new_v4().to_string()[..8]
        );
        let input = TeamCreateInput {
            name: Some(unique),
            ..Default::default()
        };
        let team = retry_create(|| {
            let input = input.clone();
            async { client.team_create::<Team>(None, input).await }
        })
        .await;
        let team_id = team.id.clone().unwrap();
        let _team_guard = TeamGuard {
            token: test_token(),
            id: team_id.clone(),
        };

        // Discover a different user to add as a member.
        let viewer = client.whoami::<User>().await.unwrap();
        let my_id = viewer.id.clone().unwrap();
        let all_users = client.users::<User>().last(250).send().await.unwrap();
        let other_user = all_users
            .nodes
            .iter()
            .find(|u| u.id.as_deref() != Some(&my_id))
            .expect("workspace must have at least two users to run this test");
        let other_user_id = other_user.id.clone().unwrap();

        // Add the other user as a member — must succeed cleanly.
        let membership_input = TeamMembershipCreateInput {
            team_id: Some(team_id.clone()),
            user_id: Some(other_user_id),
            ..Default::default()
        };
        let membership = retry_create(|| {
            let membership_input = membership_input.clone();
            async {
                client
                    .team_membership_create::<TeamMembership>(membership_input)
                    .await
            }
        })
        .await;
        let membership_id = membership.id.clone().unwrap();
        assert!(!membership_id.is_empty());

        // Delete the membership.
        client
            .team_membership_delete(None, membership_id)
            .await
            .unwrap();

        // Clean up: delete the team.
        client.team_delete(team_id).await.unwrap();
    }

    // ── Comment Update ────────────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn comment_update_changes_body() {
        use lineark_sdk::generated::inputs::{
            CommentCreateInput, CommentUpdateInput, IssueCreateInput,
        };

        let client = test_client();
        let team = create_test_team(&client).await;
        let team_id = team.id.clone();

        // Create an issue to comment on.
        let issue_input = IssueCreateInput {
            title: Some(format!(
                "[test] SDK comment_update_changes_body {}",
                &uuid::Uuid::new_v4().to_string()[..8]
            )),
            team_id: Some(team_id),
            priority: Some(4),
            ..Default::default()
        };
        let issue_entity = retry_create(|| {
            let issue_input = issue_input.clone();
            async { client.issue_create::<Issue>(issue_input).await }
        })
        .await;
        let issue_id = issue_entity.id.clone().unwrap();
        let _issue_guard = IssueGuard {
            token: test_token(),
            id: issue_id.clone(),
        };

        // Create a comment with the original body.
        let comment_input = CommentCreateInput {
            body: Some("Original body".to_string()),
            issue_id: Some(issue_id.clone()),
            ..Default::default()
        };
        let comment_entity = retry_create(|| {
            let comment_input = comment_input.clone();
            async { client.comment_create::<Comment>(comment_input).await }
        })
        .await;
        let comment_id = comment_entity.id.clone().unwrap();
        assert_eq!(comment_entity.body.as_deref(), Some("Original body"));

        // Update the comment body.
        let update_input = CommentUpdateInput {
            body: Some("Updated body".to_string()),
            ..Default::default()
        };
        let updated = client
            .comment_update::<Comment>(None, update_input, comment_id)
            .await
            .unwrap();
        assert_eq!(updated.body.as_deref(), Some("Updated body"));

        // Clean up: permanently delete the issue (cascades the comment).
        client
            .issue_delete::<Issue>(Some(true), issue_id)
            .await
            .unwrap();
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn comment_resolve_and_unresolve() {
        use lineark_sdk::generated::inputs::{CommentCreateInput, IssueCreateInput};

        let client = test_client();
        let team = create_test_team(&client).await;
        let team_id = team.id.clone();

        // Create an issue to comment on.
        let issue_input = IssueCreateInput {
            title: Some(format!(
                "[test] SDK comment_resolve_and_unresolve {}",
                &uuid::Uuid::new_v4().to_string()[..8]
            )),
            team_id: Some(team_id),
            priority: Some(4),
            ..Default::default()
        };
        let issue_entity = retry_create(|| {
            let issue_input = issue_input.clone();
            async { client.issue_create::<Issue>(issue_input).await }
        })
        .await;
        let issue_id = issue_entity.id.clone().unwrap();
        let _issue_guard = IssueGuard {
            token: test_token(),
            id: issue_id.clone(),
        };

        // Create a comment.
        let comment_input = CommentCreateInput {
            body: Some("Thread to resolve".to_string()),
            issue_id: Some(issue_id.clone()),
            ..Default::default()
        };
        let comment_entity = retry_create(|| {
            let comment_input = comment_input.clone();
            async { client.comment_create::<Comment>(comment_input).await }
        })
        .await;
        let comment_id = comment_entity.id.clone().unwrap();
        assert!(
            comment_entity.resolved_at.is_none(),
            "new comment should not be resolved"
        );

        // Resolve the comment thread.
        let resolved = client
            .comment_resolve::<Comment>(None, comment_id.clone())
            .await
            .unwrap();
        assert!(
            resolved.resolved_at.is_some(),
            "comment should have resolvedAt after resolve"
        );

        // Unresolve the comment thread.
        let unresolved = client
            .comment_unresolve::<Comment>(comment_id)
            .await
            .unwrap();
        assert!(
            unresolved.resolved_at.is_none(),
            "comment should not have resolvedAt after unresolve"
        );

        // Clean up: permanently delete the issue.
        client
            .issue_delete::<Issue>(Some(true), issue_id)
            .await
            .unwrap();
    }

    // ── Issue VCS Branch Search ─────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn issue_vcs_branch_search_found() {
        use lineark_sdk::generated::inputs::IssueCreateInput;

        let client = test_client();
        let team = create_test_team(&client).await;
        let team_id = team.id.clone();

        // Create an issue so we can look up its branchName.
        let uid = &uuid::Uuid::new_v4().to_string()[..8];
        let input = IssueCreateInput {
            title: Some(format!("[test] SDK branch search {uid}")),
            team_id: Some(team_id),
            priority: Some(4),
            ..Default::default()
        };
        let entity = retry_create(|| {
            let input = input.clone();
            async { client.issue_create::<Issue>(input).await }
        })
        .await;
        let issue_id = entity.id.clone().unwrap();
        let _issue_guard = IssueGuard {
            token: test_token(),
            id: issue_id.clone(),
        };

        // Read the issue to get its branchName field.
        let branch_name = entity
            .branch_name
            .clone()
            .expect("newly created issue should have a branchName");

        let result = client
            .issue_vcs_branch_search::<Issue>(branch_name)
            .await
            .unwrap();

        assert!(result.is_some(), "should find issue by branch name");
        let found = result.unwrap();
        assert_eq!(found.id, Some(issue_id));
    }

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn issue_vcs_branch_search_not_found() {
        let client = test_client();

        let result = client
            .issue_vcs_branch_search::<Issue>("nonexistent-branch-xyz-999".to_string())
            .await
            .unwrap();

        assert!(
            result.is_none(),
            "should return None for nonexistent branch"
        );
    }

    // ── Error handling ──────────────────────────────────────────────────────

    #[test_with::runtime_ignore_if(no_online_test_token)]
    async fn invalid_token_returns_auth_error() {
        let client = Client::from_token("lin_api_invalid_token_12345").unwrap();
        let result = client.whoami::<User>().await;
        assert!(result.is_err(), "invalid token should produce an error");
    }
}