rvpm 1.1.1

Fast Neovim plugin manager with pre-compiled loader and merge optimization
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
use anyhow::Result;
use std::path::Path;
use tokio::process::Command;

pub struct Repo<'a> {
    pub url: &'a str,
    pub dst: &'a Path,
    pub rev: Option<&'a str>,
}

#[derive(Debug, PartialEq, Eq)]
pub enum RepoStatus {
    NotInstalled,
    Clean,
    Modified,
    Error(String),
}

impl<'a> Repo<'a> {
    pub fn new(url: &'a str, dst: &'a Path, rev: Option<&'a str>) -> Self {
        Self { url, dst, rev }
    }

    pub async fn sync(&self) -> Result<()> {
        let url = if !self.url.contains("://")
            && !self.url.contains("@")
            && !self.url.contains(":\\")
            && !self.url.starts_with("/")
        {
            format!("https://github.com/{}", self.url)
        } else {
            self.url.to_string()
        };

        let mut is_new_clone = false;

        if self.dst.exists() {
            let mut args = vec!["pull"];
            if let Some(rev) = self.rev {
                // 特定の rev の場合は pull ではなく fetch して checkout するのが安全なため、
                // ここでは一旦 origin を fetch して checkout するロジックにする(後述)
                args = vec!["fetch", "--depth", "1", "origin", rev];
            }

            let output = Command::new("git")
                .args(&args)
                .current_dir(self.dst)
                .output()
                .await?;
            if !output.status.success() {
                anyhow::bail!(
                    "git pull/fetch failed: {}",
                    String::from_utf8_lossy(&output.stderr)
                );
            }
        } else {
            if let Some(parent) = self.dst.parent() {
                std::fs::create_dir_all(parent)?;
            }

            // rev が指定されている場合は、最初からそのブランチやタグを狙ってクローンする(最速)
            // ※ ただしハッシュだった場合は clone --branch は失敗するので、汎用的なフォールバックが必要だが、
            // 今回は TDD なので、まずは --branch に渡してみて、失敗したら通常のクローンをする等工夫する。
            // 簡易的に:
            let mut args = vec!["clone", "--depth", "1"];
            if let Some(rev) = self.rev {
                args.push("--branch");
                args.push(rev);
            }
            args.push(&url);
            args.push(self.dst.to_str().unwrap());

            let output = Command::new("git").args(&args).output().await?;

            if !output.status.success() {
                // ハッシュ指定で --branch が失敗した可能性もあるため、通常クローンにフォールバック
                if self.rev.is_some()
                    && String::from_utf8_lossy(&output.stderr).contains("not found in upstream")
                {
                    let output = Command::new("git")
                        .args(["clone", &url, self.dst.to_str().unwrap()]) // depth 1 は諦める
                        .output()
                        .await?;
                    if !output.status.success() {
                        anyhow::bail!(
                            "git clone fallback failed: {}",
                            String::from_utf8_lossy(&output.stderr)
                        );
                    }
                } else {
                    anyhow::bail!(
                        "git clone failed: {}",
                        String::from_utf8_lossy(&output.stderr)
                    );
                }
            }
            is_new_clone = true;
        }

        // rev が指定されており、かつ新たにクローンした(もしくは fetch した)場合、その rev に checkout する
        if let Some(rev) = self.rev {
            let output = Command::new("git")
                .args(["checkout", rev])
                .current_dir(self.dst)
                .output()
                .await?;
            if !output.status.success() {
                // 新規クローン時に checkout が失敗した場合は不完全なディレクトリを削除する
                if is_new_clone {
                    let _ = std::fs::remove_dir_all(self.dst);
                }
                anyhow::bail!(
                    "git checkout failed for rev '{}': {}",
                    rev,
                    String::from_utf8_lossy(&output.stderr)
                );
            }
        }

        Ok(())
    }

    pub async fn update(&self) -> Result<()> {
        if !self.dst.exists() {
            anyhow::bail!("Plugin not installed: {}", self.dst.display());
        }
        let args: Vec<&str> = if let Some(rev) = self.rev {
            vec!["fetch", "--depth", "1", "origin", rev]
        } else {
            vec!["pull"]
        };
        let output = Command::new("git")
            .args(&args)
            .current_dir(self.dst)
            .output()
            .await?;
        if !output.status.success() {
            anyhow::bail!(
                "git pull/fetch failed: {}",
                String::from_utf8_lossy(&output.stderr)
            );
        }
        if let Some(rev) = self.rev {
            let output = Command::new("git")
                .args(["checkout", rev])
                .current_dir(self.dst)
                .output()
                .await?;
            if !output.status.success() {
                anyhow::bail!(
                    "git checkout failed: {}",
                    String::from_utf8_lossy(&output.stderr)
                );
            }
        }
        Ok(())
    }

    pub async fn get_status(&self) -> RepoStatus {
        if !self.dst.exists() {
            return RepoStatus::NotInstalled;
        }

        let status_output = Command::new("git")
            .args(["status", "--porcelain"])
            .current_dir(self.dst)
            .output()
            .await;

        match status_output {
            Ok(output) if output.status.success() => {
                let stdout = String::from_utf8_lossy(&output.stdout);
                if !stdout.trim().is_empty() {
                    return RepoStatus::Modified;
                }
            }
            _ => return RepoStatus::Error("Failed to run git status".to_string()),
        }

        // rev が指定されている場合、そのref がローカルに存在するか確認する
        // 存在しない場合は sync 失敗後にディレクトリだけ残った可能性がある
        if let Some(rev) = self.rev {
            let verify = Command::new("git")
                .args(["rev-parse", "--verify", rev])
                .current_dir(self.dst)
                .output()
                .await;
            match verify {
                Ok(output) if output.status.success() => {}
                _ => return RepoStatus::Error(format!("rev '{}' not found in local repo", rev)),
            }
        }

        RepoStatus::Clean
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::fs;
    use tempfile::tempdir;

    #[tokio::test]
    async fn test_sync_cleans_up_on_invalid_rev() {
        let root = tempdir().unwrap();
        let src = root.path().join("src");
        let dst = root.path().join("dst");

        fs::create_dir_all(&src).unwrap();
        Command::new("git")
            .args(["init"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        Command::new("git")
            .args(["config", "user.email", "test@test.com"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        Command::new("git")
            .args(["config", "user.name", "Test"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        fs::write(src.join("hello.txt"), "hello").unwrap();
        Command::new("git")
            .args(["add", "."])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        Command::new("git")
            .args(["commit", "-m", "init"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();

        let repo = Repo::new(src.to_str().unwrap(), &dst, Some("nonexistent-rev"));
        let result = repo.sync().await;

        assert!(result.is_err(), "存在しない rev は sync エラーになるべき");
        assert!(!dst.exists(), "失敗後にディレクトリが残ってはいけない");
    }

    #[tokio::test]
    async fn test_get_status_errors_on_invalid_rev() {
        let root = tempdir().unwrap();
        let src = root.path().join("src");

        fs::create_dir_all(&src).unwrap();
        Command::new("git")
            .args(["init"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        Command::new("git")
            .args(["config", "user.email", "test@test.com"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        Command::new("git")
            .args(["config", "user.name", "Test"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        fs::write(src.join("hello.txt"), "hello").unwrap();
        Command::new("git")
            .args(["add", "."])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        Command::new("git")
            .args(["commit", "-m", "init"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();

        // 存在しない rev を指定
        let repo = Repo::new(src.to_str().unwrap(), &src, Some("nonexistent-rev"));
        let status = repo.get_status().await;

        assert!(
            matches!(status, RepoStatus::Error(_)),
            "存在しない rev は get_status が Error を返すべき、実際: {:?}",
            status
        );
    }

    #[tokio::test]
    async fn test_git_update_method_pulls_latest() {
        let root = tempdir().unwrap();
        let src = root.path().join("src");
        let dst = root.path().join("dst");

        fs::create_dir_all(&src).unwrap();
        Command::new("git")
            .args(["init"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        Command::new("git")
            .args(["config", "user.email", "test@test.com"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        Command::new("git")
            .args(["config", "user.name", "Test"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        fs::write(src.join("hello.txt"), "v1").unwrap();
        Command::new("git")
            .args(["add", "."])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        Command::new("git")
            .args(["commit", "-m", "v1"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();

        // 最初に clone
        let repo = Repo::new(src.to_str().unwrap(), &dst, None);
        repo.sync().await.unwrap();

        // src に更新を追加
        fs::write(src.join("hello.txt"), "v2").unwrap();
        Command::new("git")
            .args(["add", "."])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        Command::new("git")
            .args(["commit", "-m", "v2"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();

        // update のみ実行
        repo.update().await.unwrap();
        let content = fs::read_to_string(dst.join("hello.txt")).unwrap();
        assert_eq!(content, "v2");
    }

    #[tokio::test]
    async fn test_git_update_method_fails_when_not_installed() {
        let root = tempdir().unwrap();
        let dst = root.path().join("nonexistent");
        let repo = Repo::new("dummy/repo", &dst, None);
        let result = repo.update().await;
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("not installed"));
    }

    #[tokio::test]
    async fn test_git_update() {
        let root = tempdir().unwrap();
        let src = root.path().join("src");
        let dst = root.path().join("dst");

        fs::create_dir_all(&src).unwrap();
        Command::new("git")
            .args(["init"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        fs::write(src.join("hello.txt"), "hello").unwrap();
        Command::new("git")
            .args(["add", "."])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        Command::new("git")
            .args(["commit", "-m", "init"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();

        let repo = Repo::new(src.to_str().unwrap(), &dst, None);
        repo.sync().await.unwrap();

        fs::write(src.join("hello.txt"), "updated").unwrap();
        Command::new("git")
            .args(["add", "."])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        Command::new("git")
            .args(["commit", "-m", "update"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();

        repo.sync().await.unwrap();

        let content = fs::read_to_string(dst.join("hello.txt")).unwrap();
        assert_eq!(content, "updated");
    }

    #[tokio::test]
    async fn test_git_status() {
        let root = tempdir().unwrap();
        let src = root.path().join("src");

        fs::create_dir_all(&src).unwrap();
        Command::new("git")
            .args(["init"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        fs::write(src.join("hello.txt"), "hello").unwrap();
        Command::new("git")
            .args(["add", "."])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        Command::new("git")
            .args(["commit", "-m", "init"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();

        let repo = Repo::new(src.to_str().unwrap(), &src, None);

        // Clean state
        assert_eq!(repo.get_status().await, RepoStatus::Clean);

        // Modified state
        fs::write(src.join("hello.txt"), "modified").unwrap();
        assert_eq!(repo.get_status().await, RepoStatus::Modified);
    }

    #[tokio::test]
    async fn test_git_rev_checkout() {
        let root = tempdir().unwrap();
        let src = root.path().join("src");
        let dst = root.path().join("dst");

        // 1. ダミーのリポジトリを作成し、2回コミットする
        fs::create_dir_all(&src).unwrap();
        Command::new("git")
            .args(["init"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();

        fs::write(src.join("hello.txt"), "v1").unwrap();
        Command::new("git")
            .args(["add", "."])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        Command::new("git")
            .args(["commit", "-m", "v1"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();

        // tag "v1.0" を打つ
        Command::new("git")
            .args(["tag", "v1.0"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();

        fs::write(src.join("hello.txt"), "v2").unwrap();
        Command::new("git")
            .args(["add", "."])
            .current_dir(&src)
            .output()
            .await
            .unwrap();
        Command::new("git")
            .args(["commit", "-m", "v2"])
            .current_dir(&src)
            .output()
            .await
            .unwrap();

        // 2. v1.0 タグを指定してクローン
        let repo = Repo::new(src.to_str().unwrap(), &dst, Some("v1.0"));
        repo.sync().await.unwrap();

        // 3. v1 の内容になっているか確認
        let content = fs::read_to_string(dst.join("hello.txt")).unwrap();
        assert_eq!(content, "v1");
    }
}