Ejemplo n.º 1
0
        public void Should_Detect_No_Conflicts()
        {
            var settings = new PlasticSCMMergeSettings()
            {
                SourceObjectSpec = "src_spec",
            };
            MergeFixture fixture = new MergeFixture("merge_with_no_conflict.txt")
            {
                Settings = settings
            };

            var result = fixture.Run();

            Assert.IsFalse(result.Data.HasConflicts);
        }
Ejemplo n.º 2
0
        public void Should_Generate_All_Arguments()
        {
            var settings = new PlasticSCMMergeSettings()
            {
                SourceObjectSpec      = "src_spec",
                DestinationObjectSpec = "dst_spec",
                IntervalChangesetSpec = "int_spec",
                Shelve               = true,
                MergeType            = PlasticSCMMergeType.OnlyDst,
                NoDestinationChanges = true,
                KeepSource           = true,
                KeepDestination      = true,
                Subtractive          = true,
                TryMerge             = false,
                ComparisonMethod     = PlasticSCMMergeComparisonMethod.IgnoreEol,
                CherryPick           = true,
                Comment              = "Esto es un comentario"
            };
            MergeFixture fixture = new MergeFixture("merge_with_dir_conflict.txt")
            {
                Settings = settings
            };

            var result = fixture.Run();

            Assert.That(result.Args, Does.StartWith("merge"));
            Assert.That(result.Args, Does.Contain(settings.SourceObjectSpec));
            Assert.That(result.Args, Does.Contain($"--to={settings.DestinationObjectSpec}"));
            Assert.That(result.Args, Does.Contain($"--interval-origin={settings.IntervalChangesetSpec}"));
            Assert.That(result.Args, Does.Contain("--shelve"));
            Assert.That(result.Args, Does.Contain("--mergetype=onlydst"));
            Assert.That(result.Args, Does.Contain("--no-dst-changes"));
            Assert.That(result.Args, Does.Contain("--ks"));
            Assert.That(result.Args, Does.Contain("--kd"));
            Assert.That(result.Args, Does.Contain("--subtractive"));
            Assert.That(result.Args, Does.Contain("--merge"));
            Assert.That(result.Args, Does.Contain("--cherrypicking"));
            Assert.That(result.Args, Does.Contain("--machinereadable"));
            Assert.That(result.Args, Does.Contain($"-c=\"{settings.Comment}\""));
        }
Ejemplo n.º 3
0
 public static PlasticSCMMergeResult PlasticSCMMerge(this ICakeContext ctx, PlasticSCMMergeSettings settings)
 {
     return(new PlasticSCMMergeExecutor(ctx.FileSystem, ctx.Environment, ctx.ProcessRunner, ctx.Tools, ctx.Log)
            .Merge(settings));
 }