use of com.google.copybara.testing.RecordsProcessCallDestination.ProcessedChange in project copybara by google.
the class GitOriginTest method autoDetectBranchAtGitOrigin.
@Test
public void autoDetectBranchAtGitOrigin() throws Exception {
Files.createDirectories(remote.resolve("include"));
Files.write(remote.resolve("include/fileA.txt"), new byte[0]);
git("add", "include/fileA.txt");
git("commit", "-m", "not include");
defaultBranch = repo.getPrimaryBranch(url);
git("checkout", defaultBranch);
Files.createDirectories(remote.resolve("include"));
Files.write(remote.resolve("include/mainline-file.txt"), new byte[0]);
git("add", "include/mainline-file.txt");
git("commit", "-m", "message_a!");
options.setForce(true);
RecordsProcessCallDestination destination = new RecordsProcessCallDestination();
options.testingOptions.destination = destination;
options.setLastRevision(firstCommitRef);
@SuppressWarnings("unchecked") Workflow<GitRevision, Revision> wf = (Workflow<GitRevision, Revision>) skylark.loadConfig("" + "core.workflow(\n" + " name = 'default',\n" + " origin = git.origin(\n" + // Intentionally pick the "wrong" ref.
" ref = '" + (defaultBranch.equals("master") ? "main" : "master") + "',\n" + " url = '" + url + "',\n" + " primary_branch_migration = True,\n" + " ),\n" + " origin_files = glob(['include/mainline-file.txt']),\n" + " destination = testing.destination(),\n" + " mode = 'ITERATIVE',\n" + " authoring = authoring.pass_thru('example <example@example.com>'),\n" + ")\n").getMigration("default");
wf.run(Files.createTempDirectory("foo"), ImmutableList.of("HEAD"));
List<ProcessedChange> changes = destination.processed;
assertThat(changes).hasSize(1);
}
use of com.google.copybara.testing.RecordsProcessCallDestination.ProcessedChange in project copybara by google.
the class GitOriginTest method branchCommitLogsOnlyCoverIncludedOriginFileRoots.
@SuppressWarnings("unchecked")
@Test
public void branchCommitLogsOnlyCoverIncludedOriginFileRoots() throws Exception {
String excludedMessage = "i hope this IS NOT included in the migrated message!";
// Make two commits on 'the-branch' branch, one being in an excluded directory, the other
// included.
git("checkout", "-b", "the-branch");
Files.write(remote.resolve("branch-file.txt"), new byte[0]);
git("add", "branch-file.txt");
git("commit", "-m", excludedMessage);
Files.createDirectories(remote.resolve("include"));
Files.write(remote.resolve("include/branch-file.txt"), new byte[0]);
git("add", "include/branch-file.txt");
git("commit", "-m", "i hope this is included@@@");
git("checkout", defaultBranch);
// Make a commit on mainline so that Git doesn't turn this into a fast-forward.
Files.createDirectories(remote.resolve("include"));
Files.write(remote.resolve("include/mainline-file.txt"), new byte[0]);
git("add", "include/mainline-file.txt");
git("commit", "-m", "mainline message!");
git("merge", "the-branch");
options.setForce(true);
RecordsProcessCallDestination destination = new RecordsProcessCallDestination();
options.testingOptions.destination = destination;
options.setLastRevision(firstCommitRef);
Workflow<GitRevision, Revision> wf = (Workflow<GitRevision, Revision>) skylark.loadConfig("" + "core.workflow(\n" + " name = 'default',\n" + " origin = git.origin(\n" + " url = '" + url + "',\n" + " include_branch_commit_logs = True,\n" + " ),\n" + " origin_files = glob(['include/**']),\n" + " destination = testing.destination(),\n" + " mode = 'ITERATIVE',\n" + " authoring = authoring.pass_thru('example <example@example.com>'),\n" + ")\n").getMigration("default");
wf.run(Files.createTempDirectory("foo"), ImmutableList.of("HEAD"));
List<ProcessedChange> changes = destination.processed;
assertThat(changes).hasSize(2);
assertThat(changes.get(0).getChangesSummary()).contains("mainline message!");
assertThat(changes.get(1).getChangesSummary()).doesNotContain(excludedMessage);
assertThat(changes.get(1).getChangesSummary()).contains("i hope this is included@@@");
}
use of com.google.copybara.testing.RecordsProcessCallDestination.ProcessedChange in project copybara by google.
the class MetadataModuleTest method testUseLastChange_defaultMessage.
@Test
public void testUseLastChange_defaultMessage() throws Exception {
// Don't get an empty migration error:
options.setForce(true);
options.setLastRevision("2");
createWorkflow(WorkflowMode.SQUASH, "metadata.use_last_change(default_message = 'Internal change\\n')").run(workdir, ImmutableList.of("2"));
ProcessedChange change = Iterables.getOnlyElement(destination.processed);
assertThat(change.getChangesSummary()).isEqualTo("Internal change\n");
assertThat(change.getAuthor()).isEqualTo(DEFAULT_AUTHOR);
}
use of com.google.copybara.testing.RecordsProcessCallDestination.ProcessedChange in project copybara by google.
the class MetadataModuleTest method testUseLastChange_noAuthor.
@Test
public void testUseLastChange_noAuthor() throws Exception {
runWorkflow(WorkflowMode.SQUASH, "metadata.use_last_change(author=False)");
ProcessedChange change = Iterables.getOnlyElement(destination.processed);
assertThat(change.getChangesSummary()).isEqualTo("" + "third commit\n" + "\n" + "Extended text");
assertThat(change.getAuthor()).isEqualTo(DEFAULT_AUTHOR);
}
use of com.google.copybara.testing.RecordsProcessCallDestination.ProcessedChange in project copybara by google.
the class MetadataModuleTest method testAddHeader.
@Test
public void testAddHeader() throws Exception {
options.setLastRevision(origin.resolve("HEAD").asString());
Workflow<?, ?> wf = createWorkflow(WorkflowMode.ITERATIVE, "metadata.add_header('[HEADER with ${LABEL}]')");
origin.addSimpleChange(0, "" + "A change\n" + "\n" + "LABEL=some label\n");
wf.run(workdir, ImmutableList.of());
ProcessedChange change = Iterables.getLast(destination.processed);
assertThat(change.getChangesSummary()).isEqualTo("" + "[HEADER with some label]\n" + "A change\n" + "\n" + "LABEL=some label\n");
}
Aggregations