l10n: vi(4185t): Updated Vietnamese translation for v2.20.0
[git.git] / t / helper / test-repository.c
blob6a84a53efbf6919c83d3f1fd73786acd92ee7abf
1 #include "test-tool.h"
2 #include "cache.h"
3 #include "commit-graph.h"
4 #include "commit.h"
5 #include "config.h"
6 #include "object-store.h"
7 #include "object.h"
8 #include "repository.h"
9 #include "tree.h"
11 static void test_parse_commit_in_graph(const char *gitdir, const char *worktree,
12 const struct object_id *commit_oid)
14 struct repository r;
15 struct commit *c;
16 struct commit_list *parent;
18 setup_git_env(gitdir);
20 if (repo_init(&r, gitdir, worktree))
21 die("Couldn't init repo");
23 c = lookup_commit(&r, commit_oid);
25 if (!parse_commit_in_graph(&r, c))
26 die("Couldn't parse commit");
28 printf("%"PRItime, c->date);
29 for (parent = c->parents; parent; parent = parent->next)
30 printf(" %s", oid_to_hex(&parent->item->object.oid));
31 printf("\n");
33 repo_clear(&r);
36 static void test_get_commit_tree_in_graph(const char *gitdir,
37 const char *worktree,
38 const struct object_id *commit_oid)
40 struct repository r;
41 struct commit *c;
42 struct tree *tree;
44 setup_git_env(gitdir);
46 if (repo_init(&r, gitdir, worktree))
47 die("Couldn't init repo");
49 c = lookup_commit(&r, commit_oid);
52 * get_commit_tree_in_graph does not automatically parse the commit, so
53 * parse it first.
55 if (!parse_commit_in_graph(&r, c))
56 die("Couldn't parse commit");
57 tree = get_commit_tree_in_graph(&r, c);
58 if (!tree)
59 die("Couldn't get commit tree");
61 printf("%s\n", oid_to_hex(&tree->object.oid));
63 repo_clear(&r);
66 int cmd__repository(int argc, const char **argv)
68 if (argc < 2)
69 die("must have at least 2 arguments");
70 if (!strcmp(argv[1], "parse_commit_in_graph")) {
71 struct object_id oid;
72 if (argc < 5)
73 die("not enough arguments");
74 if (parse_oid_hex(argv[4], &oid, &argv[4]))
75 die("cannot parse oid '%s'", argv[4]);
76 test_parse_commit_in_graph(argv[2], argv[3], &oid);
77 } else if (!strcmp(argv[1], "get_commit_tree_in_graph")) {
78 struct object_id oid;
79 if (argc < 5)
80 die("not enough arguments");
81 if (parse_oid_hex(argv[4], &oid, &argv[4]))
82 die("cannot parse oid '%s'", argv[4]);
83 test_get_commit_tree_in_graph(argv[2], argv[3], &oid);
84 } else {
85 die("unrecognized '%s'", argv[1]);
87 return 0;