linear-tools 0.5.3

Linear issue tools via CLI + MCP
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
//! Test-only utilities for safely mutating process-global state in tests.
//!
//! # Usage
//!
//! ```rust,ignore
//! use linear_tools::test_support::EnvGuard;
//! use serial_test::serial;
//!
//! #[test]
//! #[serial(env)]
//! fn example() {
//!     let _env = EnvGuard::set("LINEAR_API_KEY", "test-key");
//!     // ... test body ...
//! }
//! ```
//!
//! # Important
//!
//! - All tests that use these guards MUST use `#[serial(env)]` to prevent concurrent
//!   execution and ensure process-global state mutations don't interfere with each other.

/// RAII guard for temporarily setting an environment variable.
///
/// The variable is automatically restored to its previous state (or removed if it
/// was not set) when the guard is dropped.
pub struct EnvGuard {
    key: &'static str,
    prev: Option<String>,
}

impl EnvGuard {
    /// Set an environment variable temporarily.
    ///
    /// The previous value (if any) is captured and will be restored when dropped.
    ///
    /// # Safety
    ///
    /// This function uses `unsafe` because `std::env::set_var` can cause data races
    /// if called concurrently with other environment variable operations. However,
    /// this is safe when used with `#[serial(env)]` which ensures no concurrent execution.
    #[must_use]
    pub fn set(key: &'static str, val: &str) -> Self {
        let prev = std::env::var(key).ok();
        // SAFETY: Safe when used with #[serial(env)] which prevents concurrent access
        unsafe { std::env::set_var(key, val) };
        Self { key, prev }
    }

    /// Remove an environment variable temporarily.
    ///
    /// The previous value (if any) is captured and will be restored when dropped.
    ///
    /// # Safety
    ///
    /// This function uses `unsafe` because `std::env::remove_var` can cause data races
    /// if called concurrently with other environment variable operations. However,
    /// this is safe when used with `#[serial(env)]` which ensures no concurrent execution.
    #[must_use]
    pub fn remove(key: &'static str) -> Self {
        let prev = std::env::var(key).ok();
        // SAFETY: Safe when used with #[serial(env)] which prevents concurrent access
        unsafe { std::env::remove_var(key) };
        Self { key, prev }
    }
}

impl Drop for EnvGuard {
    fn drop(&mut self) {
        match &self.prev {
            // SAFETY: Safe in drop because test serialization is still active
            Some(v) => unsafe { std::env::set_var(self.key, v) },
            None => unsafe { std::env::remove_var(self.key) },
        }
    }
}

// ============================================================================
// JSON fixture builders for integration tests
// ============================================================================

use serde_json::Value;
use serde_json::json;

pub fn user_node(id: &str, name: &str, display_name: &str, email: &str) -> Value {
    json!({ "id": id, "name": name, "displayName": display_name, "email": email })
}

pub fn team_node(id: &str, key: &str, name: &str) -> Value {
    json!({ "id": id, "key": key, "name": name })
}

pub fn workflow_state_node(id: &str, name: &str, state_type: &str) -> Value {
    json!({ "id": id, "name": name, "type": state_type })
}

pub fn project_node(id: &str, name: &str) -> Value {
    json!({ "id": id, "name": name })
}

pub fn parent_issue_node(id: &str, identifier: &str) -> Value {
    json!({ "id": id, "identifier": identifier })
}

/// Build a full issue node with sensible defaults. Override fields by mutating the returned Value.
pub fn issue_node(id: &str, identifier: &str, title: &str) -> Value {
    json!({
        "id": id,
        "identifier": identifier,
        "title": title,
        "description": null,
        "priority": 2.0,
        "priorityLabel": "High",
        "labelIds": [],
        "dueDate": null,
        "estimate": null,
        "parent": null,
        "startedAt": null,
        "completedAt": null,
        "canceledAt": null,
        "url": format!("https://linear.app/test/issue/{}", identifier),
        "createdAt": "2025-01-01T00:00:00Z",
        "updatedAt": "2025-01-02T00:00:00Z",
        "team": team_node("t1", "ENG", "Engineering"),
        "state": workflow_state_node("s1", "Todo", "unstarted"),
        "assignee": null,
        "creator": user_node("u0", "Creator", "Creator", "creator@example.com"),
        "project": null
    })
}

/// Build an issue node suitable for searchIssues responses (no details-only fields).
pub fn search_issue_node(id: &str, identifier: &str, title: &str) -> Value {
    json!({
        "id": id,
        "identifier": identifier,
        "title": title,
        "description": null,
        "priority": 2.0,
        "priorityLabel": "High",
        "labelIds": [],
        "dueDate": null,
        "url": format!("https://linear.app/test/issue/{}", identifier),
        "createdAt": "2025-01-01T00:00:00Z",
        "updatedAt": "2025-01-02T00:00:00Z",
        "team": team_node("t1", "ENG", "Engineering"),
        "state": workflow_state_node("s1", "Todo", "unstarted"),
        "assignee": null,
        "creator": user_node("u0", "Creator", "Creator", "creator@example.com"),
        "project": null
    })
}

pub fn issues_response(nodes: Vec<Value>, has_next_page: bool, end_cursor: Option<&str>) -> String {
    serde_json::to_string(&json!({
        "data": {
            "issues": {
                "nodes": nodes,
                "pageInfo": { "hasNextPage": has_next_page, "endCursor": end_cursor }
            }
        }
    }))
    .unwrap()
}

pub fn search_response(nodes: Vec<Value>, has_next_page: bool, end_cursor: Option<&str>) -> String {
    serde_json::to_string(&json!({
        "data": {
            "searchIssues": {
                "nodes": nodes,
                "pageInfo": { "hasNextPage": has_next_page, "endCursor": end_cursor }
            }
        }
    }))
    .unwrap()
}

pub fn issue_by_id_response(issue: Value) -> String {
    serde_json::to_string(&json!({
        "data": { "issue": issue }
    }))
    .unwrap()
}

pub fn issue_create_response(issue: Value) -> String {
    serde_json::to_string(&json!({
        "data": { "issueCreate": { "success": true, "issue": issue } }
    }))
    .unwrap()
}

pub fn issue_update_response(issue: Value) -> String {
    serde_json::to_string(&json!({
        "data": { "issueUpdate": { "success": true, "issue": issue } }
    }))
    .unwrap()
}

pub fn comment_create_response(id: &str, body: &str) -> String {
    serde_json::to_string(&json!({
        "data": {
            "commentCreate": {
                "success": true,
                "comment": { "id": id, "body": body, "createdAt": "2025-01-01T00:00:00Z" }
            }
        }
    }))
    .unwrap()
}

pub fn comment_node(id: &str, body: &str, url: &str, created_at: &str, updated_at: &str) -> Value {
    json!({
        "id": id,
        "body": body,
        "url": url,
        "createdAt": created_at,
        "updatedAt": updated_at,
        "parentId": null,
        "user": null
    })
}

pub fn issue_comments_response(
    issue_id: &str,
    identifier: &str,
    nodes: Vec<Value>,
    has_next_page: bool,
    end_cursor: Option<&str>,
) -> String {
    serde_json::to_string(&json!({
        "data": {
            "issue": {
                "id": issue_id,
                "identifier": identifier,
                "comments": {
                    "nodes": nodes,
                    "pageInfo": {
                        "hasNextPage": has_next_page,
                        "endCursor": end_cursor
                    }
                }
            }
        }
    }))
    .unwrap()
}

pub fn archive_response(success: bool) -> String {
    serde_json::to_string(&json!({
        "data": { "issueArchive": { "success": success } }
    }))
    .unwrap()
}

pub fn users_response(nodes: Vec<Value>, has_next_page: bool, end_cursor: Option<&str>) -> String {
    serde_json::to_string(&json!({
        "data": {
            "users": {
                "nodes": nodes,
                "pageInfo": { "hasNextPage": has_next_page, "endCursor": end_cursor }
            }
        }
    }))
    .unwrap()
}

pub fn teams_response(nodes: Vec<Value>, has_next_page: bool, end_cursor: Option<&str>) -> String {
    serde_json::to_string(&json!({
        "data": {
            "teams": {
                "nodes": nodes,
                "pageInfo": { "hasNextPage": has_next_page, "endCursor": end_cursor }
            }
        }
    }))
    .unwrap()
}

pub fn projects_response(
    nodes: Vec<Value>,
    has_next_page: bool,
    end_cursor: Option<&str>,
) -> String {
    serde_json::to_string(&json!({
        "data": {
            "projects": {
                "nodes": nodes,
                "pageInfo": { "hasNextPage": has_next_page, "endCursor": end_cursor }
            }
        }
    }))
    .unwrap()
}

pub fn workflow_states_response(
    nodes: Vec<Value>,
    has_next_page: bool,
    end_cursor: Option<&str>,
) -> String {
    serde_json::to_string(&json!({
        "data": {
            "workflowStates": {
                "nodes": nodes,
                "pageInfo": { "hasNextPage": has_next_page, "endCursor": end_cursor }
            }
        }
    }))
    .unwrap()
}

pub fn issue_labels_response(
    nodes: Vec<Value>,
    has_next_page: bool,
    end_cursor: Option<&str>,
) -> String {
    serde_json::to_string(&json!({
        "data": {
            "issueLabels": {
                "nodes": nodes,
                "pageInfo": { "hasNextPage": has_next_page, "endCursor": end_cursor }
            }
        }
    }))
    .unwrap()
}

pub fn issue_label_node(id: &str, name: &str, team: Option<Value>) -> Value {
    json!({ "id": id, "name": name, "team": team })
}

// ============================================================================
// Issue relation fixtures
// ============================================================================

pub fn issue_relations_response(
    relations: Vec<(&str, &str)>, // (relation_id, related_issue_id)
    inverse_relations: Vec<(&str, &str)>,
) -> String {
    serde_json::to_string(&json!({
        "data": {
            "issue": {
                "id": "source-issue-id",
                "relations": {
                    "nodes": relations.iter().map(|(rel_id, related_id)| {
                        json!({
                            "id": rel_id,
                            "relatedIssue": { "id": related_id }
                        })
                    }).collect::<Vec<_>>()
                },
                "inverseRelations": {
                    "nodes": inverse_relations.iter().map(|(rel_id, related_id)| {
                        json!({
                            "id": rel_id,
                            "relatedIssue": { "id": related_id }
                        })
                    }).collect::<Vec<_>>()
                }
            }
        }
    }))
    .unwrap()
}

pub fn issue_relation_create_response(success: bool) -> String {
    serde_json::to_string(&json!({
        "data": {
            "issueRelationCreate": {
                "success": success
            }
        }
    }))
    .unwrap()
}

pub fn issue_relation_delete_response(success: bool) -> String {
    serde_json::to_string(&json!({
        "data": {
            "issueRelationDelete": {
                "success": success
            }
        }
    }))
    .unwrap()
}

#[cfg(test)]
mod tests {
    use super::*;
    use serial_test::serial;

    #[test]
    #[serial(env)]
    fn envguard_set_and_restore_when_unset() {
        let key = "LINEAR_TEST_ENVVAR_A";
        let _r = EnvGuard::remove(key);
        {
            let _g = EnvGuard::set(key, "123");
            assert_eq!(std::env::var(key).unwrap(), "123");
        }
        assert!(std::env::var(key).is_err(), "should restore to unset");
    }

    #[test]
    #[serial(env)]
    fn envguard_restore_previous_value() {
        let key = "LINEAR_TEST_ENVVAR_B";
        let _orig = EnvGuard::set(key, "orig");
        {
            let _g = EnvGuard::set(key, "shadow");
            assert_eq!(std::env::var(key).unwrap(), "shadow");
        }
        assert_eq!(std::env::var(key).unwrap(), "orig");
    }

    #[test]
    #[serial(env)]
    fn envguard_remove_and_restore() {
        let key = "LINEAR_TEST_ENVVAR_C";
        let _orig = EnvGuard::set(key, "value");
        {
            let _g = EnvGuard::remove(key);
            assert!(std::env::var(key).is_err());
        }
        assert_eq!(std::env::var(key).unwrap(), "value");
    }
}