forked from msysgit/git
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test-tool synthesize commits: optionally branch off of an existing rev
To emulate branching and to test merging/rebasing, it is really important that we do not necessarily synthesize only linear, disconnected branches. Signed-off-by: Johannes Schindelin <[email protected]>
- Loading branch information
Showing
1 changed file
with
38 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
#include "setup.h" | ||
#include "object-store-ll.h" | ||
#include "read-cache-ll.h" | ||
#include "unpack-trees.h" | ||
#include "object-name.h" | ||
#include "cache-tree.h" | ||
#include "blob.h" | ||
#include "commit.h" | ||
|
@@ -323,6 +325,7 @@ static void random_commit_message(struct random_context *context, | |
|
||
static int random_branch(struct repository *r, | ||
struct random_context *context, | ||
const char *start_revision, | ||
int file_count_goal, | ||
struct object_id *oid, | ||
int show_progress) | ||
|
@@ -339,7 +342,36 @@ static int random_branch(struct repository *r, | |
setenv("GIT_COMMITTER_NAME", "C O M Mitter", 1); | ||
setenv("GIT_COMMITTER_EMAIL", "[email protected]", 1); | ||
|
||
istate.cache_tree = cache_tree(); | ||
if (!start_revision) | ||
istate.cache_tree = cache_tree(); | ||
else { | ||
struct commit *commit; | ||
struct object_id tree_oid; | ||
struct tree *tree; | ||
struct unpack_trees_options opts = { 0 }; | ||
struct tree_desc t; | ||
|
||
if (repo_get_oid_committish(r, start_revision, oid)) | ||
return error("could not parse as commit '%s'", start_revision); | ||
|
||
commit = lookup_commit(r, oid); | ||
if (!commit || repo_parse_commit(r, commit) < 0) | ||
return error("could not parse commit '%s'", start_revision); | ||
tick = commit->date + random_value_in_range(context, 86400 * 3); | ||
|
||
if (repo_get_oid_treeish(r, start_revision, &tree_oid)) | ||
return error("could not parse as tree '%s'", start_revision); | ||
tree = parse_tree_indirect(&tree_oid); | ||
|
||
opts.index_only = 1; | ||
opts.head_idx = -1; | ||
opts.src_index = &istate; | ||
opts.dst_index = &istate; | ||
opts.fn = oneway_merge; | ||
init_tree_desc(&t, tree->buffer, tree->size); | ||
if (unpack_trees(1, &t, &opts)) | ||
return error("could not read %s into index", start_revision); | ||
} | ||
|
||
while (istate.cache_nr < file_count_goal) { | ||
if (show_progress) | ||
|
@@ -348,7 +380,7 @@ static int random_branch(struct repository *r, | |
if (random_work(r, context, &istate) < 0) | ||
return -1; | ||
|
||
if (count > 0) { | ||
if (count > 0 || start_revision) { | ||
parents = NULL; | ||
commit_list_insert(lookup_commit(r, oid), &parents); | ||
strbuf_reset(&msg); | ||
|
@@ -378,8 +410,11 @@ static int cmd__synthesize__commits(int argc, const char **argv, const char *pre | |
struct random_context context; | ||
struct object_id oid; | ||
int seed = 123, target_file_count = 50, show_progress = isatty(2); | ||
const char *start_revision = NULL; | ||
const char * const usage[] = { argv[0], NULL }; | ||
struct option options[] = { | ||
OPT_STRING('s', "start-revision", &start_revision, "revision", | ||
"branch off at this revision (optional)"), | ||
OPT_INTEGER(0, "seed", &seed, | ||
"seed number for the pseudo-random number generator"), | ||
OPT_INTEGER(0, "target-file-count", &target_file_count, | ||
|
@@ -395,7 +430,7 @@ static int cmd__synthesize__commits(int argc, const char **argv, const char *pre | |
|
||
setup_git_directory(); | ||
random_init(&context, seed); | ||
if (random_branch(r, &context, target_file_count, &oid, show_progress) < 0) | ||
if (random_branch(r, &context, start_revision, target_file_count, &oid, show_progress) < 0) | ||
return -1; | ||
|
||
printf("%s", oid_to_hex(&oid)); | ||
|