socket-patch-cli 3.3.0

CLI binary for socket-patch: apply, rollback, get, scan security patches
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
//! In-process e2e tests for the `scan` subcommand.
//!
//! Calls `socket_patch_cli::commands::scan::run` directly so coverage
//! is fully instrumented. Mocks the API via wiremock. Hits every flag
//! combination that the subprocess-based tests don't explicitly
//! exercise (non-JSON paths, --apply without --prune, --prune without
//! --apply, --batch-size variations, --download-mode variations).

use std::path::Path;

use serial_test::serial;
use socket_patch_cli::commands::scan::{run, ScanArgs};
use wiremock::matchers::{method, path, path_regex};
use wiremock::{Mock, MockServer, ResponseTemplate};

const ORG: &str = "test-org";
const PURL: &str = "pkg:npm/in-proc-scan@1.0.0";
const UUID: &str = "11111111-1111-4111-8111-111111111111";

fn default_args(cwd: &Path) -> ScanArgs {
    ScanArgs {
        common: socket_patch_cli::args::GlobalArgs {
            cwd: cwd.to_path_buf(),
            org: Some(ORG.to_string()),
            json: true,
            yes: true,
            global: false,
            global_prefix: None,
                        api_token: Some("fake".to_string()),
            ecosystems: None,
            download_mode: "diff".to_string(),
            dry_run: false,
            ..socket_patch_cli::args::GlobalArgs::default()
        },
        batch_size: 100,
        apply: false,
        prune: false,
        sync: false,
        all_releases: false,
        vex: Default::default(),
    }
}

fn write_root_package_json(root: &Path) {
    std::fs::write(
        root.join("package.json"),
        r#"{ "name": "in-proc-scan-test", "version": "0.0.0" }"#,
    )
    .unwrap();
}

fn write_npm_package(root: &Path, name: &str, version: &str) {
    let pkg = root.join("node_modules").join(name);
    std::fs::create_dir_all(&pkg).unwrap();
    std::fs::write(
        pkg.join("package.json"),
        format!(r#"{{ "name": "{name}", "version": "{version}" }}"#),
    )
    .unwrap();
}

async fn mock_batch_empty(server: &MockServer) {
    Mock::given(method("POST"))
        .and(path(format!("/v0/orgs/{ORG}/patches/batch")))
        .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
            "packages": [], "canAccessPaidPatches": false,
        })))
        .mount(server)
        .await;
}

async fn mock_batch_one(server: &MockServer) {
    Mock::given(method("POST"))
        .and(path(format!("/v0/orgs/{ORG}/patches/batch")))
        .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
            "packages": [{
                "purl": PURL,
                "patches": [{
                    "uuid": UUID, "purl": PURL,
                    "tier": "free", "cveIds": [], "ghsaIds": [],
                    "severity": "high", "title": "in-proc fixture"
                }]
            }],
            "canAccessPaidPatches": false,
        })))
        .mount(server)
        .await;
}

async fn mock_by_package(server: &MockServer) {
    Mock::given(method("GET"))
        .and(path_regex(format!("^/v0/orgs/{ORG}/patches/by-package/.+$")))
        .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
            "patches": [{
                "uuid": UUID, "purl": PURL,
                "publishedAt": "2024-01-01T00:00:00Z",
                "description": "x", "license": "MIT", "tier": "free",
                "vulnerabilities": {}
            }],
            "canAccessPaidPatches": false,
        })))
        .mount(server)
        .await;
}

async fn mock_view_with_blob(server: &MockServer) {
    Mock::given(method("GET"))
        .and(path(format!("/v0/orgs/{ORG}/patches/view/{UUID}")))
        .respond_with(ResponseTemplate::new(200).set_body_json(serde_json::json!({
            "uuid": UUID,
            "purl": PURL,
            "publishedAt": "2024-01-01T00:00:00Z",
            "files": {
                "package/index.js": {
                    "beforeHash": "0000000000000000000000000000000000000000000000000000000000000000",
                    "afterHash":  "1111111111111111111111111111111111111111111111111111111111111111",
                    "blobContent": "cGF0Y2hlZAo=",
                }
            },
            "vulnerabilities": {},
            "description": "x", "license": "MIT", "tier": "free",
        })))
        .mount(server)
        .await;
}

// ---------------------------------------------------------------------------
// Discovery — read-only --json mode
// ---------------------------------------------------------------------------

#[tokio::test]
#[serial]
async fn scan_empty_project_json() {
    let server = MockServer::start().await;
    mock_batch_empty(&server).await;

    let tmp = tempfile::tempdir().unwrap();
    write_root_package_json(tmp.path());
    let mut args = default_args(tmp.path());
    args.common.api_url = server.uri();

    assert_eq!(run(args).await, 0);
}

#[tokio::test]
#[serial]
async fn scan_installed_package_discovers_patch() {
    let server = MockServer::start().await;
    mock_batch_one(&server).await;

    let tmp = tempfile::tempdir().unwrap();
    write_root_package_json(tmp.path());
    write_npm_package(tmp.path(), "in-proc-scan", "1.0.0");
    let mut args = default_args(tmp.path());
    args.common.api_url = server.uri();

    assert_eq!(run(args).await, 0);
}

// ---------------------------------------------------------------------------
// --apply (without --prune)
// ---------------------------------------------------------------------------

#[tokio::test]
#[serial]
async fn scan_apply_dry_run_does_not_write() {
    let server = MockServer::start().await;
    mock_batch_one(&server).await;
    mock_by_package(&server).await;

    let tmp = tempfile::tempdir().unwrap();
    write_root_package_json(tmp.path());
    write_npm_package(tmp.path(), "in-proc-scan", "1.0.0");
    let mut args = default_args(tmp.path());
    args.common.api_url = server.uri();
    args.apply = true;
    args.common.dry_run = true;

    assert_eq!(run(args).await, 0);
    assert!(
        !tmp.path().join(".socket/manifest.json").exists(),
        "dry-run must not write manifest"
    );
}

#[tokio::test]
#[serial]
async fn scan_apply_wet_writes_manifest_and_blob() {
    let server = MockServer::start().await;
    mock_batch_one(&server).await;
    mock_by_package(&server).await;
    mock_view_with_blob(&server).await;

    let tmp = tempfile::tempdir().unwrap();
    write_root_package_json(tmp.path());
    write_npm_package(tmp.path(), "in-proc-scan", "1.0.0");
    let mut args = default_args(tmp.path());
    args.common.api_url = server.uri();
    args.apply = true;

    let code = run(args).await;
    // Apply over our handcrafted node_modules likely reports
    // partial_failure (hash mismatch on the fake "package/index.js")
    // — what matters is that download_and_apply_patches ran and the
    // blob was written.
    assert!(code == 0 || code == 1, "got {code}");
    assert!(tmp.path().join(".socket/manifest.json").exists());
    let after_hash = "1111111111111111111111111111111111111111111111111111111111111111";
    assert!(tmp.path().join(".socket/blobs").join(after_hash).exists());
}

// ---------------------------------------------------------------------------
// --prune (without --apply)
// ---------------------------------------------------------------------------

#[tokio::test]
#[serial]
async fn scan_prune_only_dry_run_reports_orphans() {
    let server = MockServer::start().await;
    mock_batch_empty(&server).await;

    let tmp = tempfile::tempdir().unwrap();
    write_root_package_json(tmp.path());
    write_npm_package(tmp.path(), "still-installed", "1.0.0");
    // Manifest has a stale entry for a package that's not installed.
    let socket = tmp.path().join(".socket");
    std::fs::create_dir_all(&socket).unwrap();
    std::fs::write(
        socket.join("manifest.json"),
        r#"{ "patches": {
            "pkg:npm/stale@1.0.0": {
                "uuid": "22222222-2222-4222-8222-222222222222",
                "exportedAt": "2024-01-01T00:00:00Z",
                "files": {}, "vulnerabilities": {},
                "description": "stale", "license": "MIT", "tier": "free"
            }
        }}"#,
    )
    .unwrap();

    let mut args = default_args(tmp.path());
    args.common.api_url = server.uri();
    args.prune = true;
    args.common.dry_run = true;

    assert_eq!(run(args).await, 0);
    // Dry-run preserves the manifest unchanged.
    let body = std::fs::read_to_string(tmp.path().join(".socket/manifest.json")).unwrap();
    assert!(body.contains("pkg:npm/stale@1.0.0"));
}

#[tokio::test]
#[serial]
async fn scan_prune_only_wet_removes_orphans() {
    let server = MockServer::start().await;
    mock_batch_empty(&server).await;

    let tmp = tempfile::tempdir().unwrap();
    write_root_package_json(tmp.path());
    write_npm_package(tmp.path(), "still-installed", "1.0.0");
    let socket = tmp.path().join(".socket");
    std::fs::create_dir_all(&socket).unwrap();
    std::fs::write(
        socket.join("manifest.json"),
        r#"{ "patches": {
            "pkg:npm/orphan@1.0.0": {
                "uuid": "33333333-3333-4333-8333-333333333333",
                "exportedAt": "2024-01-01T00:00:00Z",
                "files": {}, "vulnerabilities": {},
                "description": "orphan", "license": "MIT", "tier": "free"
            }
        }}"#,
    )
    .unwrap();

    let mut args = default_args(tmp.path());
    args.common.api_url = server.uri();
    args.prune = true;

    assert_eq!(run(args).await, 0);
    let body = std::fs::read_to_string(tmp.path().join(".socket/manifest.json")).unwrap();
    let m: serde_json::Value = serde_json::from_str(&body).unwrap();
    assert_eq!(m["patches"].as_object().unwrap().len(), 0, "orphan must be pruned");
}

// ---------------------------------------------------------------------------
// --sync (== --apply --prune)
// ---------------------------------------------------------------------------

#[tokio::test]
#[serial]
async fn scan_sync_full_cycle_against_clean_project() {
    let server = MockServer::start().await;
    mock_batch_one(&server).await;
    mock_by_package(&server).await;
    mock_view_with_blob(&server).await;

    let tmp = tempfile::tempdir().unwrap();
    write_root_package_json(tmp.path());
    write_npm_package(tmp.path(), "in-proc-scan", "1.0.0");
    let mut args = default_args(tmp.path());
    args.common.api_url = server.uri();
    args.sync = true;

    let code = run(args).await;
    assert!(code == 0 || code == 1, "got {code}");
    assert!(tmp.path().join(".socket/manifest.json").exists());
}

// ---------------------------------------------------------------------------
// --batch-size affects chunking
// ---------------------------------------------------------------------------

#[tokio::test]
#[serial]
async fn scan_small_batch_size_chunks_requests() {
    let server = MockServer::start().await;
    mock_batch_empty(&server).await;

    let tmp = tempfile::tempdir().unwrap();
    write_root_package_json(tmp.path());
    write_npm_package(tmp.path(), "pkg-a", "1.0.0");
    write_npm_package(tmp.path(), "pkg-b", "2.0.0");
    write_npm_package(tmp.path(), "pkg-c", "3.0.0");

    let mut args = default_args(tmp.path());
    args.common.api_url = server.uri();
    args.batch_size = 1; // force 3 separate API calls
    assert_eq!(run(args).await, 0);
}

// ---------------------------------------------------------------------------
// --ecosystems filter
// ---------------------------------------------------------------------------

#[tokio::test]
#[serial]
async fn scan_ecosystems_filter_excludes_others() {
    let server = MockServer::start().await;
    mock_batch_empty(&server).await;

    let tmp = tempfile::tempdir().unwrap();
    write_root_package_json(tmp.path());
    write_npm_package(tmp.path(), "npm-pkg", "1.0.0");

    let mut args = default_args(tmp.path());
    args.common.api_url = server.uri();
    args.common.ecosystems = Some(vec!["pypi".to_string()]);
    assert_eq!(run(args).await, 0);
}

// ---------------------------------------------------------------------------
// Non-JSON output (table-printing path)
// ---------------------------------------------------------------------------

#[tokio::test]
#[serial]
async fn scan_non_json_with_patches_prints_table() {
    let server = MockServer::start().await;
    mock_batch_one(&server).await;

    let tmp = tempfile::tempdir().unwrap();
    write_root_package_json(tmp.path());
    write_npm_package(tmp.path(), "in-proc-scan", "1.0.0");
    let mut args = default_args(tmp.path());
    args.common.api_url = server.uri();
    args.common.json = false;

    let code = run(args).await;
    assert!(code == 0 || code == 1, "got {code}");
}

#[tokio::test]
#[serial]
async fn scan_non_json_empty_project_friendly_message() {
    let server = MockServer::start().await;
    mock_batch_empty(&server).await;

    let tmp = tempfile::tempdir().unwrap();
    write_root_package_json(tmp.path());
    let mut args = default_args(tmp.path());
    args.common.api_url = server.uri();
    args.common.json = false;

    assert_eq!(run(args).await, 0);
}

// ---------------------------------------------------------------------------
// API error tolerance
// ---------------------------------------------------------------------------

#[tokio::test]
#[serial]
async fn scan_api_500_does_not_panic() {
    let server = MockServer::start().await;
    Mock::given(method("POST"))
        .and(path(format!("/v0/orgs/{ORG}/patches/batch")))
        .respond_with(ResponseTemplate::new(500).set_body_string("oh no"))
        .mount(&server)
        .await;

    let tmp = tempfile::tempdir().unwrap();
    write_root_package_json(tmp.path());
    write_npm_package(tmp.path(), "in-proc-scan", "1.0.0");
    let mut args = default_args(tmp.path());
    args.common.api_url = server.uri();

    let code = run(args).await;
    assert!(code == 0 || code == 1);
}

#[tokio::test]
#[serial]
async fn scan_unreachable_api_does_not_panic() {
    let tmp = tempfile::tempdir().unwrap();
    write_root_package_json(tmp.path());
    write_npm_package(tmp.path(), "in-proc-scan", "1.0.0");
    let mut args = default_args(tmp.path());
    args.common.api_url = "http://127.0.0.1:1".to_string();

    let code = run(args).await;
    assert!(code == 0 || code == 1);
}