git2version 0.5.0

This crate provides a way to get the version of the package from git and incorporate it as a constant into your program.
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
use git2::{Commit, Repository};
use std::fs::File;
use std::io::Write;
use std::path::Path;
use std::process::Command;
use tempdir::TempDir;

use git2version::{COMMIT_ID_SHORT_HASH_LENGTH, GitInfo, TagInfo};

const FILENAME: &str = "some_file";

// TODO Use indoc! for multiline strings

fn create_repo(path: &Path) -> Repository {
    let repo = Repository::init(path).unwrap();
    repo.config()
        .unwrap()
        .set_str("user.name", "Test User")
        .unwrap();
    repo.config()
        .unwrap()
        .set_str("user.email", "test@example.com")
        .unwrap();
    repo
}

fn create_initial_commit(repo: &Repository) {
    create_change(repo);
    add_all_changes_to_index(repo);
    commit(repo, &[], "Initial commit");
}

fn create_change(repo: &Repository) -> String {
    let content = rand::random::<u64>().to_string();
    std::fs::write(repo.workdir().unwrap().join(FILENAME), &content).unwrap();
    content
}

fn add_all_changes_to_index(repo: &Repository) {
    let mut index = repo.index().unwrap();
    index
        .add_all(["*"], git2::IndexAddOption::DEFAULT, None)
        .unwrap();
    index.write().unwrap();
}

fn commit(repo: &Repository, parents: &[&Commit], description: &str) -> git2::Oid {
    let sig = repo.signature().unwrap();
    let tree_id = {
        let mut index = repo.index().unwrap();
        index.write_tree().unwrap()
    };
    let tree = repo.find_tree(tree_id).unwrap();
    repo.commit(Some("HEAD"), &sig, &sig, description, &tree, parents)
        .unwrap()
}

fn create_change_and_commit(repo: &Repository) -> git2::Oid {
    let content = create_change(repo);

    add_all_changes_to_index(repo);
    let head_commit = repo.head().unwrap().peel_to_commit().unwrap();
    commit(
        repo,
        &[&head_commit],
        &format!("Commit {FILENAME}: {content}"),
    )
}

fn create_tag(repo: &Repository, tag: &str) {
    let head_commit = repo.head().unwrap().peel(git2::ObjectType::Commit).unwrap();
    repo.tag_lightweight(tag, &head_commit, true).unwrap();
}

fn create_some_commits_but_no_tags(repo: &Repository) {
    create_initial_commit(repo);
    create_change_and_commit(repo);
    create_change_and_commit(repo);
}

fn create_some_commits_and_a_tag(repo: &Repository, tag: &str) {
    create_initial_commit(repo);
    create_change_and_commit(repo);
    create_change_and_commit(repo);
    create_tag(repo, tag);
}

fn create_some_commits_a_tag_and_some_more_commits(repo: &Repository, tag: &str) {
    create_initial_commit(repo);
    create_change_and_commit(repo);
    create_change_and_commit(repo);
    create_tag(repo, tag);
    create_change_and_commit(repo);
    create_change_and_commit(repo);
    create_change_and_commit(repo);
    create_change_and_commit(repo);
    create_change_and_commit(repo);
}

#[test]
fn no_git() {
    let project_dir = make_version_test_project();
    run_version_test_project(project_dir.path(), None);
}

#[test]
fn empty_git() {
    let project_dir = make_version_test_project();
    create_repo(project_dir.path());
    run_version_test_project(project_dir.path(), None);
}

#[test]
fn with_initial_commit_notmodified() {
    let project_dir = make_version_test_project();
    let repo = create_repo(project_dir.path());
    create_initial_commit(&repo);
    run_version_test_project(
        project_dir.path(),
        Some(GitInfo {
            tag_info: None,
            commit_id: &head_commit_id(&repo),
            modified: false,
        }),
    );
}

#[test]
fn with_initial_commit_modified() {
    let project_dir = make_version_test_project();
    let repo = create_repo(project_dir.path());
    create_initial_commit(&repo);
    create_change(&repo);
    run_version_test_project(
        project_dir.path(),
        Some(GitInfo {
            tag_info: None,
            commit_id: &head_commit_id(&repo),
            modified: true,
        }),
    );
}

#[test]
fn with_initial_commit_modified_staged() {
    let project_dir = make_version_test_project();
    let repo = create_repo(project_dir.path());
    create_initial_commit(&repo);
    create_change(&repo);
    add_all_changes_to_index(&repo);
    run_version_test_project(
        project_dir.path(),
        Some(GitInfo {
            tag_info: None,
            commit_id: &head_commit_id(&repo),
            modified: true,
        }),
    );
}

#[test]
fn with_some_commits_but_no_tags_notmodified() {
    let project_dir = make_version_test_project();
    let repo = create_repo(project_dir.path());
    create_some_commits_but_no_tags(&repo);
    run_version_test_project(
        project_dir.path(),
        Some(GitInfo {
            tag_info: None,
            commit_id: &head_commit_id(&repo),
            modified: false,
        }),
    );
}

#[test]
fn with_some_commits_but_no_tags_modified() {
    let project_dir = make_version_test_project();
    let repo = create_repo(project_dir.path());
    create_some_commits_but_no_tags(&repo);
    create_change(&repo);
    run_version_test_project(
        project_dir.path(),
        Some(GitInfo {
            tag_info: None,
            commit_id: &head_commit_id(&repo),
            modified: true,
        }),
    );
}

#[test]
fn with_some_commits_but_no_tags_modified_staged() {
    let project_dir = make_version_test_project();
    let repo = create_repo(project_dir.path());
    create_some_commits_but_no_tags(&repo);
    create_change(&repo);
    add_all_changes_to_index(&repo);
    run_version_test_project(
        project_dir.path(),
        Some(GitInfo {
            tag_info: None,
            commit_id: &head_commit_id(&repo),
            modified: true,
        }),
    );
}

#[test]
fn on_tag_notmodified() {
    let project_dir = make_version_test_project();
    let repo = create_repo(project_dir.path());
    create_some_commits_and_a_tag(&repo, "v1.2.3-alpha");
    run_version_test_project(
        project_dir.path(),
        Some(GitInfo {
            tag_info: Some(TagInfo {
                tag: "v1.2.3-alpha",
                commits_since_tag: 0,
            }),
            commit_id: &head_commit_id(&repo),
            modified: false,
        }),
    );
}

#[test]
fn on_tag_modified() {
    let project_dir = make_version_test_project();
    let repo = create_repo(project_dir.path());
    create_some_commits_and_a_tag(&repo, "v1.2.3-alpha");
    create_change(&repo);
    run_version_test_project(
        project_dir.path(),
        Some(GitInfo {
            tag_info: Some(TagInfo {
                tag: "v1.2.3-alpha",
                commits_since_tag: 0,
            }),
            commit_id: &head_commit_id(&repo),
            modified: true,
        }),
    );
}

#[test]
fn on_tag_modified_staged() {
    let project_dir = make_version_test_project();
    let repo = create_repo(project_dir.path());
    create_some_commits_and_a_tag(&repo, "v1.2.3-alpha");
    create_change(&repo);
    add_all_changes_to_index(&repo);
    run_version_test_project(
        project_dir.path(),
        Some(GitInfo {
            tag_info: Some(TagInfo {
                tag: "v1.2.3-alpha",
                commits_since_tag: 0,
            }),
            commit_id: &head_commit_id(&repo),
            modified: true,
        }),
    );
}

#[test]
fn after_tag_notmodified() {
    let project_dir = make_version_test_project();
    let repo = create_repo(project_dir.path());
    create_some_commits_a_tag_and_some_more_commits(&repo, "v1.2.3-alpha");
    run_version_test_project(
        project_dir.path(),
        Some(GitInfo {
            tag_info: Some(TagInfo {
                tag: "v1.2.3-alpha",
                commits_since_tag: 5,
            }),
            commit_id: &head_commit_id(&repo),
            modified: false,
        }),
    );
}

#[test]
fn after_tag_modified() {
    let project_dir = make_version_test_project();
    let repo = create_repo(project_dir.path());
    create_some_commits_a_tag_and_some_more_commits(&repo, "v1.2.3-alpha");
    create_change(&repo);
    run_version_test_project(
        project_dir.path(),
        Some(GitInfo {
            tag_info: Some(TagInfo {
                tag: "v1.2.3-alpha",
                commits_since_tag: 5,
            }),
            commit_id: &head_commit_id(&repo),
            modified: true,
        }),
    );
}

#[test]
fn after_tag_modified_staged() {
    let project_dir = make_version_test_project();
    let repo = create_repo(project_dir.path());
    create_some_commits_a_tag_and_some_more_commits(&repo, "v1.2.3-alpha");
    create_change(&repo);
    add_all_changes_to_index(&repo);
    run_version_test_project(
        project_dir.path(),
        Some(GitInfo {
            tag_info: Some(TagInfo {
                tag: "v1.2.3-alpha",
                commits_since_tag: 5,
            }),
            commit_id: &head_commit_id(&repo),
            modified: true,
        }),
    );
}

// TODO Test that incremental compiles pick up changes, both changes in the git repo (e.g. create tag) and in the source (e.g. .dirty)

// Edge case tests

#[test]
fn detached_head_state() {
    let project_dir = make_version_test_project();
    let repo = create_repo(project_dir.path());
    create_initial_commit(&repo);
    let first_commit_id = head_commit_id(&repo);
    create_change_and_commit(&repo);
    create_tag(&repo, "v1.0.0");
    create_change_and_commit(&repo);

    // Checkout the first commit (detached HEAD) with a clean working directory
    let first_commit = repo
        .find_commit(repo.revparse_single(&first_commit_id).unwrap().id())
        .unwrap();
    repo.set_head_detached(first_commit.id()).unwrap();
    // Reset working directory to match the commit
    repo.checkout_head(Some(git2::build::CheckoutBuilder::new().force()))
        .unwrap();

    // In detached HEAD state, the tag is ahead of us, so no tag_info
    run_version_test_project(
        project_dir.path(),
        Some(GitInfo {
            tag_info: None,
            commit_id: &first_commit_id,
            modified: false,
        }),
    );
}

#[test]
fn multiple_tags_on_same_commit() {
    let project_dir = make_version_test_project();
    let repo = create_repo(project_dir.path());
    create_some_commits_but_no_tags(&repo);
    create_tag(&repo, "v1.0.0");
    create_tag(&repo, "release-1.0");

    // When multiple tags exist on the same commit, one of them should be returned
    // (the order is implementation-defined)
    let output = _run_process(
        Command::new(env!("CARGO"))
            .arg("run")
            .current_dir(project_dir.path()),
    );
    let actual_version: Option<GitInfo> = serde_json::from_str(&output).unwrap();

    assert!(actual_version.is_some());
    let info = actual_version.unwrap();
    assert!(info.tag_info.is_some());
    let tag_info = info.tag_info.unwrap();
    // Should be one of the two tags
    assert!(
        tag_info.tag == "v1.0.0" || tag_info.tag == "release-1.0",
        "Expected tag to be 'v1.0.0' or 'release-1.0', got '{}'",
        tag_info.tag
    );
    assert_eq!(tag_info.commits_since_tag, 0);
}

#[test]
fn tag_with_special_characters() {
    let project_dir = make_version_test_project();
    let repo = create_repo(project_dir.path());
    create_some_commits_but_no_tags(&repo);
    // Tag with semver-like special characters (dashes, dots, underscores)
    create_tag(&repo, "v1.0.0-beta.1_test");
    run_version_test_project(
        project_dir.path(),
        Some(GitInfo {
            tag_info: Some(TagInfo {
                tag: "v1.0.0-beta.1_test",
                commits_since_tag: 0,
            }),
            commit_id: &head_commit_id(&repo),
            modified: false,
        }),
    );
}

#[test]
fn tag_without_v_prefix() {
    let project_dir = make_version_test_project();
    let repo = create_repo(project_dir.path());
    create_some_commits_but_no_tags(&repo);
    // Tag without the common 'v' prefix
    create_tag(&repo, "1.0.0");
    run_version_test_project(
        project_dir.path(),
        Some(GitInfo {
            tag_info: Some(TagInfo {
                tag: "1.0.0",
                commits_since_tag: 0,
            }),
            commit_id: &head_commit_id(&repo),
            modified: false,
        }),
    );
}

#[test]
fn nested_proxy_crate_in_subdirectory() {
    // Test that a proxy crate in a nested subdirectory still finds the git repo
    let dir = TempDir::new("package-version-test-nested").unwrap();
    let dir_path = dir.path();
    let path_to_git2version_crate = env!("CARGO_MANIFEST_DIR");

    // Initialize git repo at the root
    let repo = create_repo(dir_path);
    create_initial_commit(&repo);
    create_tag(&repo, "v2.0.0");

    // Create project structure with deeply nested proxy crate
    create_file(
        &dir_path.join("Cargo.toml"),
        r#"
[package]
name = "nested-version-test"
edition = "2021"
version = "0.1.0"

[workspace]

[dependencies]
version-proxy = {path = "./packages/internal/version-proxy"}
serde_json = "^1.0.96"
        "#,
    );

    create_file(
        &dir_path.join("src/main.rs"),
        r#"
fn main() {
    println!("{}", serde_json::to_string(&version_proxy::GITINFO).unwrap());
}
        "#,
    );

    create_file(
        &dir_path.join("packages/internal/version-proxy/Cargo.toml"),
        &format!(
            r#"
[package]
name = "version-proxy"
edition = "2021"
version = "0.0.0"

[dependencies]
git2version = {{path = "{path_to_git2version_crate}"}}

[build-dependencies]
git2version = {{path = "{path_to_git2version_crate}", features=["build"]}}
        "#
        ),
    );

    create_file(
        &dir_path.join("packages/internal/version-proxy/build.rs"),
        r#"
fn main() {{
    git2version::init_proxy_build!();
}}
        "#,
    );

    create_file(
        &dir_path.join("packages/internal/version-proxy/src/lib.rs"),
        r#"
            git2version::init_proxy_lib!();
        "#,
    );

    let output = _run_process(Command::new(env!("CARGO")).arg("run").current_dir(dir_path));

    let actual_version: Option<GitInfo> = serde_json::from_str(&output).unwrap();
    assert_eq!(
        actual_version,
        Some(GitInfo {
            tag_info: Some(TagInfo {
                tag: "v2.0.0",
                commits_since_tag: 0,
            }),
            commit_id: &head_commit_id(&repo),
            modified: false,
        })
    );
}

fn head_commit_id(repo: &Repository) -> String {
    let head = repo.head().unwrap().peel_to_commit().unwrap();
    let commit_id = head.id().to_string();
    commit_id[..COMMIT_ID_SHORT_HASH_LENGTH].to_string()
}

fn make_version_test_project() -> TempDir {
    let dir = TempDir::new("package-version-test").unwrap();
    let dir_path = dir.path();
    let path_to_git2version_crate = env!("CARGO_MANIFEST_DIR");

    create_file(
        &dir_path.join("Cargo.toml"),
        r#"
[package]
authors = ["Sebastian Messmer <messmer@cryfs.org>"]
name = "package-version-test"
edition = "2021"
version = "0.1.0"

[workspace]

[dependencies]
version-proxy = {path = "./version-proxy"}
serde_json = "^1.0.96"
        "#,
    );

    create_file(
        &dir_path.join("src/main.rs"),
        r#"
fn main() {
    println!("{}", serde_json::to_string(&version_proxy::GITINFO).unwrap());
}
        "#,
    );

    create_file(
        &dir_path.join("version-proxy/Cargo.toml"),
        &format!(
            r#"
[package]
name = "version-proxy"
edition = "2021"
# The version field here is ignored, no need to change it
version = "0.0.0"

[dependencies]
git2version = {{path = "{path_to_git2version_crate}"}}

[build-dependencies]
git2version = {{path = "{path_to_git2version_crate}", features=["build"]}}
        "#
        ),
    );

    create_file(
        &dir_path.join("version-proxy/build.rs"),
        r#"
fn main() {{
    git2version::init_proxy_build!();
}}
        "#,
    );

    create_file(
        &dir_path.join("version-proxy/src/lib.rs"),
        r#"
            git2version::init_proxy_lib!();
        "#,
    );

    dir
}

fn create_file(path: &Path, content: &str) {
    std::fs::create_dir_all(path.parent().unwrap()).unwrap();
    File::create(path)
        .unwrap()
        .write_all(content.as_bytes())
        .unwrap();
}

fn run_version_test_project(project_dir: &Path, expected_version: Option<GitInfo>) {
    let output = _run_process(
        Command::new(env!("CARGO"))
            .arg("run")
            .current_dir(project_dir),
    );

    let actual_version: Option<GitInfo> = serde_json::from_str(&output).unwrap();
    assert_eq!(expected_version, actual_version);
}

fn _run_process(cmd: &mut Command) -> String {
    let output = cmd.output().unwrap();
    if !output.status.success() {
        panic!(
            "Command {:?} failed with status {:?} and stdin:\n{}\n\nstderr:\n{}",
            cmd,
            output.status,
            String::from_utf8_lossy(&output.stderr),
            String::from_utf8_lossy(&output.stderr),
        );
    }
    String::from_utf8_lossy(&output.stdout).to_string()
}