-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathCSharpRollbackProcessTests.cs
More file actions
904 lines (792 loc) · 33.5 KB
/
CSharpRollbackProcessTests.cs
File metadata and controls
904 lines (792 loc) · 33.5 KB
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
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.IO.Pipes;
using System.Linq;
using System.Reflection;
using System.Text;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Shouldly;
using Stryker.Abstractions;
using Stryker.Abstractions.Exceptions;
using Stryker.Abstractions.Mutators;
using Stryker.Core.Compiling;
using Stryker.Core.InjectedHelpers;
using Stryker.Core.Mutants;
using Stryker.Core.MutationTest;
using Stryker.Core.ProjectComponents.SourceProjects;
namespace Stryker.Core.UnitTest.Compiling
{
[TestClass]
public class CSharpRollbackProcessTests : TestBase
{
private readonly SyntaxAnnotation _ifEngineMarker = new("Injector", "IfInstrumentationEngine");
private readonly SyntaxAnnotation _conditionalEngineMarker = new("Injector", "ConditionalInstrumentationEngine");
private SyntaxAnnotation GetMutationIdMarker(int id) => new("MutationId", id.ToString());
private SyntaxAnnotation GetMutationTypeMarker(Mutator type) => new("MutationType", type.ToString());
[TestMethod]
public void RollbackProcess_ShouldRollbackError_RollbackedCompilationShouldCompile()
{
var syntaxTree = CSharpSyntaxTree.ParseText(@"using System;
namespace ExampleProject
{
public class Calculator
{
public int ActiveMutation = 1;
public string Subtract(string first, string second)
{
if(ActiveMutation == 1) {
return first - second; // this will not compile
} else {
return first + second;
}
}
}
}");
var ifStatement = syntaxTree
.GetRoot()
.DescendantNodes()
.First(x => x is IfStatementSyntax);
var annotatedSyntaxTree = syntaxTree.GetRoot()
.ReplaceNode(
ifStatement,
ifStatement.WithAdditionalAnnotations(GetMutationIdMarker(1), _ifEngineMarker)
).SyntaxTree;
var compiler = CSharpCompilation.Create("TestCompilation",
syntaxTrees: new Collection<SyntaxTree>() { annotatedSyntaxTree },
options: new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary),
references: new List<PortableExecutableReference>() {
MetadataReference.CreateFromFile(typeof(object).Assembly.Location),
MetadataReference.CreateFromFile(typeof(Environment).Assembly.Location)
});
var target = new CSharpRollbackProcess();
using (var ms = new MemoryStream())
{
var compileResult = compiler.Emit(ms);
var fixedCompilation = target.Start(compiler, compileResult.Diagnostics, false, false);
var rollbackedResult = fixedCompilation.Compilation.Emit(ms);
rollbackedResult.Success.ShouldBeTrue();
}
}
[TestMethod]
public void ShouldRollbackIssueInExpression()
{
var syntaxTree = CSharpSyntaxTree.ParseText(@"
using System;
using System.Collections.Generic;
using System.Linq;
namespace ExampleProject
{
public class Test
{
public void SomeLinq()
{
var list = new List<List<double>>();
int[] listProjected = list.Select(l => l.Count()).ToArray();
}
}
}");
var options = new StrykerOptions
{
MutationLevel = MutationLevel.Complete,
DevMode = true
};
var codeInjection = new CodeInjection();
var placer = new MutantPlacer(codeInjection);
var mutator = new CSharpMutantOrchestrator(placer, options: options);
var helpers = new List<SyntaxTree>();
foreach (var (name, code) in codeInjection.MutantHelpers)
{
helpers.Add(CSharpSyntaxTree.ParseText(code, path: name, encoding: Encoding.UTF32));
}
var mutant = mutator.Mutate(syntaxTree, null);
helpers.Add(mutant);
var references = new List<string> {
typeof(object).Assembly.Location,
typeof(List<string>).Assembly.Location,
typeof(Enumerable).Assembly.Location,
typeof(PipeStream).Assembly.Location,
};
Assembly.GetEntryAssembly().GetReferencedAssemblies().ToList().ForEach(a => references.Add(Assembly.Load(a).Location));
var input = new MutationTestInput()
{
SourceProjectInfo = new SourceProjectInfo
{
AnalyzerResult = TestHelper.SetupProjectAnalyzerResult(
properties: new Dictionary<string, string>()
{
{ "TargetDir", "" },
{ "AssemblyName", "AssemblyName"},
{ "TargetFileName", "TargetFileName.dll"},
{ "SignAssembly", "true" },
{ "AssemblyOriginatorKeyFile", Path.GetFullPath(Path.Combine("TestResources", "StrongNameKeyFile.snk")) }
},
projectFilePath: "TestResources",
// add a reference to system so the example code can compile
references: references.ToArray()
).Object
}
};
var rollbackProcess = new CSharpRollbackProcess();
var target = new CsharpCompilingProcess(input, rollbackProcess, options);
using var ms = new MemoryStream();
var result = target.Compile(helpers, ms, null);
result.RollbackedIds.Count().ShouldBe(2); // should actually be 1 but thanks to issue #1745 rollback doesn't work
}
[TestMethod]
public void ShouldRollbackAllMutationsInsideAExpressionBodyMethod()
{
var syntaxTree = CSharpSyntaxTree.ParseText(@"
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ExampleProject
{
class Fake
{
public string DisplayValue { get; set; }
public event Action ValueChanged;
}
public class Test
{
private Fake AccountNumber = new Fake();
// this line triggers a compilation error on purpose
protected override void Random() =>
AccountNumber.ValueChanged += RefreshAccountNumber;
private void RefreshAccountNumber()
{
}
}
}");
var options = new StrykerOptions
{
MutationLevel = MutationLevel.Complete,
DevMode = true
};
var codeInjection = new CodeInjection();
var placer = new MutantPlacer(codeInjection);
var mutator = new CSharpMutantOrchestrator(placer, options: options);
var helpers = new List<SyntaxTree>();
foreach (var (name, code) in codeInjection.MutantHelpers)
{
helpers.Add(CSharpSyntaxTree.ParseText(code, path: name, encoding: Encoding.UTF32));
}
var mutant = mutator.Mutate(syntaxTree, null);
helpers.Add(mutant);
var references = new List<string> {
typeof(object).Assembly.Location,
typeof(List<string>).Assembly.Location,
typeof(Enumerable).Assembly.Location,
typeof(PipeStream).Assembly.Location,
};
Assembly.GetEntryAssembly().GetReferencedAssemblies().ToList().ForEach(a => references.Add(Assembly.Load(a).Location));
var input = new MutationTestInput()
{
SourceProjectInfo = new SourceProjectInfo
{
AnalyzerResult = TestHelper.SetupProjectAnalyzerResult(
properties: new Dictionary<string, string>()
{
{ "TargetDir", "" },
{ "AssemblyName", "AssemblyName"},
{ "TargetFileName", "TargetFileName.dll"},
{ "SignAssembly", "true" },
{ "AssemblyOriginatorKeyFile", Path.GetFullPath(Path.Combine("TestResources", "StrongNameKeyFile.snk")) }
},
projectFilePath: "TestResources",
// add a reference to system so the example code can compile
references: references.ToArray()
).Object
}
};
var rollbackProcess = new CSharpRollbackProcess();
var target = new CsharpCompilingProcess(input, rollbackProcess, options);
using var ms = new MemoryStream();
Action test = () => target.Compile(helpers, ms, null);
test.ShouldThrow<CompilationException>();
}
[TestMethod]
public void RollbackProcess_ShouldRollbackAllCompileErrors()
{
var syntaxTree = CSharpSyntaxTree.ParseText(@"using System;
namespace ExampleProject
{
public class Calculator
{
public int ActiveMutation = 1;
public string Subtract(string first, string second)
{
if (ActiveMutation == 6) {
while (first.Length > 2)
{
return first - second;
}
while (first.Length < 2)
{
return second + first;
}
return null;
} else {
while (first.Length > 2)
{
return first + second;
}
while (first.Length < 2)
{
return (ActiveMutation == 7 ? second - first : second + first);
}
return null;
}
}
}
}");
var root = syntaxTree.GetRoot();
var mutantIf = root.DescendantNodes().OfType<IfStatementSyntax>().First();
root = root.ReplaceNode(
mutantIf,
mutantIf.WithAdditionalAnnotations(GetMutationIdMarker(6), _ifEngineMarker)
);
var y = root.DescendantNodes().OfType<ParenthesizedExpressionSyntax>();
var mutantCondition = root.DescendantNodes().OfType<ParenthesizedExpressionSyntax>().First(x => x.Expression is ConditionalExpressionSyntax);
root = root.ReplaceNode(
mutantCondition,
mutantCondition.WithAdditionalAnnotations(GetMutationIdMarker(7), _conditionalEngineMarker)
);
var annotatedSyntaxTree = root.SyntaxTree;
var compiler = CSharpCompilation.Create("TestCompilation",
syntaxTrees: new Collection<SyntaxTree>() { annotatedSyntaxTree },
options: new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary),
references: new List<PortableExecutableReference>() {
MetadataReference.CreateFromFile(typeof(object).Assembly.Location),
MetadataReference.CreateFromFile(typeof(Environment).Assembly.Location)
});
var target = new CSharpRollbackProcess();
using var ms = new MemoryStream();
var compileResult = compiler.Emit(ms);
var fixedCompilation = target.Start(compiler, compileResult.Diagnostics, false, false);
var rollbackedResult = fixedCompilation.Compilation.Emit(ms);
rollbackedResult.Success.ShouldBeTrue();
fixedCompilation.RollbackedIds.ShouldBe(new Collection<int> { 6, 7 });
}
[TestMethod]
public void RollbackProcess_ShouldRollbackErrorsAndKeepTheRest()
{
var syntaxTree = CSharpSyntaxTree.ParseText(@"using System;
namespace ExampleProject
{
public class StringMagic
{
public int ActiveMutation = 1;
public string AddTwoStrings(string first, string second)
{
if(ActiveMutation == 8){
while (first.Length > 2)
{
return first - second;
}
while (first.Length < 2)
{
return second + first;
}
return null;
}else{if(ActiveMutation == 7){
while (first.Length > 2)
{
return first + second;
}
while (first.Length < 2)
{
return second - first;
}
return null;
}else{if(ActiveMutation == 6){
while (first.Length == 2)
{
return first + second;
}
while (first.Length < 2)
{
return second + first;
}
return null;
}else{
while (first.Length == 2)
{
return first + second;
}
while (first.Length < 2)
{
return second + first;
}
return null;
}}}
}
}
}");
var root = syntaxTree.GetRoot();
var mutantIf1 = root.DescendantNodes().OfType<IfStatementSyntax>().First();
root = root.ReplaceNode(
mutantIf1,
mutantIf1.WithAdditionalAnnotations(GetMutationIdMarker(8), _ifEngineMarker)
);
var mutantIf2 = root.DescendantNodes().OfType<IfStatementSyntax>().ToList()[1];
root = root.ReplaceNode(
mutantIf2,
mutantIf2.WithAdditionalAnnotations(GetMutationIdMarker(7), _ifEngineMarker)
);
var annotatedSyntaxTree = root.SyntaxTree;
var compiler = CSharpCompilation.Create("TestCompilation",
syntaxTrees: new Collection<SyntaxTree>() { annotatedSyntaxTree },
options: new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary),
references: new List<PortableExecutableReference>() {
MetadataReference.CreateFromFile(typeof(object).Assembly.Location),
MetadataReference.CreateFromFile(typeof(Environment).Assembly.Location)
});
var target = new CSharpRollbackProcess();
using var ms = new MemoryStream();
var compileResult = compiler.Emit(ms);
var fixedCompilation = target.Start(compiler, compileResult.Diagnostics, false, false);
var rollbackedResult = fixedCompilation.Compilation.Emit(ms);
rollbackedResult.Success.ShouldBeTrue();
// validate that only mutation 8 and 7 were rollbacked
fixedCompilation.RollbackedIds.ShouldBe(new Collection<int> { 8, 7 });
}
[TestMethod]
public void RollbackProcess_ShouldRollbackBlockMutationWhenLocalRollbackFails()
{
var syntaxTree = CSharpSyntaxTree.ParseText(@"
namespace ExampleProject
{
public class StringMagic
{
public int ActiveMutation = 1;
public string this[string key]
{
get
{
if (ActiveMutation == 1) { ; } else {
if (ActiveMutation == 2) {
return key; // some mutation
} else {
return key + key;
}
}
}
}
}
}");
var root = syntaxTree.GetRoot();
var mutantIf1 = root.DescendantNodes().OfType<IfStatementSyntax>().First();
root = root.ReplaceNode(
mutantIf1,
mutantIf1.WithAdditionalAnnotations(GetMutationIdMarker(1), GetMutationTypeMarker(Mutator.Block), _ifEngineMarker)
);
var mutantIf2 = root.DescendantNodes().OfType<IfStatementSyntax>().ToList()[1];
root = root.ReplaceNode(
mutantIf2,
mutantIf2.WithAdditionalAnnotations(GetMutationIdMarker(2), GetMutationTypeMarker(Mutator.String), _ifEngineMarker)
);
var annotatedSyntaxTree = root.SyntaxTree;
var compiler = CSharpCompilation.Create("TestCompilation",
syntaxTrees: new Collection<SyntaxTree>() { annotatedSyntaxTree },
options: new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary),
references: new List<PortableExecutableReference>() {
MetadataReference.CreateFromFile(typeof(object).Assembly.Location),
MetadataReference.CreateFromFile(typeof(Environment).Assembly.Location)
});
var target = new CSharpRollbackProcess();
using var ms = new MemoryStream();
var compileResult = compiler.Emit(ms);
compileResult.Success.ShouldBeFalse();
compileResult.Diagnostics.ShouldHaveSingleItem();
var fixedCompilation = target.Start(compiler, compileResult.Diagnostics, false, false);
var rollbackedResult = fixedCompilation.Compilation.Emit(ms);
rollbackedResult.Success.ShouldBeTrue();
// validate that only the block mutation was rollbacked
fixedCompilation.RollbackedIds.ShouldBe(new Collection<int> { 1 });
}
[TestMethod]
public void RollbackProcess_ShouldRollbackMethodWhenLocalRollbackFailsAndNoBlockMutationsFound()
{
var syntaxTree = CSharpSyntaxTree.ParseText(@"using System;
namespace ExampleProject
{
public class StringMagic
{
public int ActiveMutation = 1;
public string AddTwoStrings(string first, string second, out string third)
{
var dummy = """";
if(ActiveMutation == 8){
while (first.Length > 2)
{
dummy = first + second;
}
while (first.Length < 2)
{
dummy = second - first;
}
}else{if(ActiveMutation == 7){
while (first.Length > 2)
{
dummy = first + second;
}
while (first.Length < 2)
{
dummy = second - first;
}
}else{if(ActiveMutation == 6){
while (first.Length == 2)
{
dummy = first + second;
}
while (first.Length < 2)
{
dummy = second + first;
}
}else{
third = ""good"";
while (first.Length == 2)
{
dummy = first + second;
}
while (first.Length < 2)
{
dummy = second + first;
}
}}}
return null;
}
}
}");
var root = syntaxTree.GetRoot();
var mutantIf1 = root.DescendantNodes().OfType<IfStatementSyntax>().First();
root = root.ReplaceNode(
mutantIf1,
mutantIf1.WithAdditionalAnnotations(GetMutationIdMarker(8), _ifEngineMarker)
);
var mutantIf2 = root.DescendantNodes().OfType<IfStatementSyntax>().ToList()[1];
root = root.ReplaceNode(
mutantIf2,
mutantIf2.WithAdditionalAnnotations(GetMutationIdMarker(7), _ifEngineMarker)
);
var mutantIf3 = root.DescendantNodes().OfType<IfStatementSyntax>().ToList()[2];
root = root.ReplaceNode(
mutantIf3,
mutantIf3.WithAdditionalAnnotations(GetMutationIdMarker(6), _ifEngineMarker)
);
var annotatedSyntaxTree = root.SyntaxTree;
var compiler = CSharpCompilation.Create("TestCompilation",
syntaxTrees: new Collection<SyntaxTree>() { annotatedSyntaxTree },
options: new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary),
references: new List<PortableExecutableReference>() {
MetadataReference.CreateFromFile(typeof(object).Assembly.Location),
MetadataReference.CreateFromFile(typeof(Environment).Assembly.Location)
});
var target = new CSharpRollbackProcess();
using var ms = new MemoryStream();
var compileResult = compiler.Emit(ms);
var fixedCompilation = target.Start(compiler, compileResult.Diagnostics, false, false);
var rollbackedResult = fixedCompilation.Compilation.Emit(ms);
rollbackedResult.Success.ShouldBeFalse();
rollbackedResult.Diagnostics.ShouldHaveSingleItem();
fixedCompilation = target.Start(fixedCompilation.Compilation, rollbackedResult.Diagnostics, false, false);
rollbackedResult = fixedCompilation.Compilation.Emit(ms);
rollbackedResult.Success.ShouldBeTrue();
// validate that all mutations are rolled back
fixedCompilation.RollbackedIds.ShouldBe(new Collection<int> { 8, 7, 6 });
}
[TestMethod]
public void RollbackProcess_ShouldRollbacConstructorWhenLocalRollbackFailsAndNoBlockMutationsFound()
{
var syntaxTree = CSharpSyntaxTree.ParseText(@"using System;
namespace ExampleProject
{
public class StringMagic
{
public int ActiveMutation = 1;
public StringMagic(string first, string second, out string third)
{
var dummy = """";
if(ActiveMutation == 8){
while (first.Length > 2)
{
dummy = first + second;
}
while (first.Length < 2)
{
dummy = second - first;
}
}else{if(ActiveMutation == 7){
while (first.Length > 2)
{
dummy = first + second;
}
while (first.Length < 2)
{
dummy = second - first;
}
}else{if(ActiveMutation == 6){
while (first.Length == 2)
{
dummy = first + second;
}
while (first.Length < 2)
{
dummy = second + first;
}
}else{
third = ""good"";
while (first.Length == 2)
{
dummy = first + second;
}
while (first.Length < 2)
{
dummy = second + first;
}
}}}
}
}
}");
var root = syntaxTree.GetRoot();
// we manually inject mutation markers
var mutantIf1 = root.DescendantNodes().OfType<IfStatementSyntax>().First();
root = root.ReplaceNode(
mutantIf1,
mutantIf1.WithAdditionalAnnotations(GetMutationIdMarker(8), _ifEngineMarker)
);
var mutantIf2 = root.DescendantNodes().OfType<IfStatementSyntax>().ToList()[1];
root = root.ReplaceNode(
mutantIf2,
mutantIf2.WithAdditionalAnnotations(GetMutationIdMarker(7), _ifEngineMarker)
);
var mutantIf3 = root.DescendantNodes().OfType<IfStatementSyntax>().ToList()[2];
root = root.ReplaceNode(
mutantIf3,
mutantIf3.WithAdditionalAnnotations(GetMutationIdMarker(6), _ifEngineMarker)
);
var annotatedSyntaxTree = root.SyntaxTree;
var compiler = CSharpCompilation.Create("TestCompilation",
syntaxTrees: new Collection<SyntaxTree>() { annotatedSyntaxTree },
options: new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary),
references: new List<PortableExecutableReference>() {
MetadataReference.CreateFromFile(typeof(object).Assembly.Location),
MetadataReference.CreateFromFile(typeof(Environment).Assembly.Location)
});
var target = new CSharpRollbackProcess();
using var ms = new MemoryStream();
var compileResult = compiler.Emit(ms);
var fixedCompilation = target.Start(compiler, compileResult.Diagnostics, false, false);
var rollbackedResult = fixedCompilation.Compilation.Emit(ms);
rollbackedResult.Success.ShouldBeFalse();
rollbackedResult.Diagnostics.ShouldHaveSingleItem();
fixedCompilation = target.Start(fixedCompilation.Compilation, rollbackedResult.Diagnostics, false, false);
rollbackedResult = fixedCompilation.Compilation.Emit(ms);
rollbackedResult.Success.ShouldBeTrue();
// validate that all mutations are rolled back
fixedCompilation.RollbackedIds.ShouldBe(new Collection<int> { 8, 7, 6 });
}
[TestMethod]
public void RollbackProcess_ShouldRollbackAccessorWhenLocalRollbackFails()
{
var syntaxTree = CSharpSyntaxTree.ParseText(@"using System;
namespace ExampleProject
{
public class StringMagic
{
public int ActiveMutation = 1;
public string AddTwoStrings
{
get
{
string first = string.Empty;
string second = string.Empty;
string third;
var dummy = """";
if(ActiveMutation == 8){
while (first.Length > 2)
{
dummy = first + second;
}
while (first.Length < 2)
{
dummy = second - first;
}
}else{if(ActiveMutation == 7){
while (first.Length > 2)
{
dummy = first + second;
}
while (first.Length < 2)
{
dummy = second - first;
}
}else{if(ActiveMutation == 6){
while (first.Length == 2)
{
dummy = first + second;
}
while (first.Length < 2)
{
dummy = second + first;
}
}else{
third = ""good"";
while (first.Length == 2)
{
dummy = first + second;
}
while (first.Length < 2)
{
dummy = second + first;
}
}}}
return third;
}
}
}
}");
var root = syntaxTree.GetRoot();
var mutantIf1 = root.DescendantNodes().OfType<IfStatementSyntax>().First();
root = root.ReplaceNode(
mutantIf1,
mutantIf1.WithAdditionalAnnotations(GetMutationIdMarker(8), _ifEngineMarker)
);
var mutantIf2 = root.DescendantNodes().OfType<IfStatementSyntax>().ToList()[1];
root = root.ReplaceNode(
mutantIf2,
mutantIf2.WithAdditionalAnnotations(GetMutationIdMarker(7), _ifEngineMarker)
);
var mutantIf3 = root.DescendantNodes().OfType<IfStatementSyntax>().ToList()[2];
root = root.ReplaceNode(
mutantIf3,
mutantIf3.WithAdditionalAnnotations(GetMutationIdMarker(6), _ifEngineMarker)
);
var annotatedSyntaxTree = root.SyntaxTree;
var compiler = CSharpCompilation.Create("TestCompilation",
syntaxTrees: new Collection<SyntaxTree>() { annotatedSyntaxTree },
options: new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary),
references: new List<PortableExecutableReference>() {
MetadataReference.CreateFromFile(typeof(object).Assembly.Location),
MetadataReference.CreateFromFile(typeof(Environment).Assembly.Location)
});
var target = new CSharpRollbackProcess();
using var ms = new MemoryStream();
var compileResult = compiler.Emit(ms);
var fixedCompilation = target.Start(compiler, compileResult.Diagnostics, false, false);
var rollbackedResult = fixedCompilation.Compilation.Emit(ms);
rollbackedResult.Success.ShouldBeFalse();
rollbackedResult.Diagnostics.ShouldHaveSingleItem();
fixedCompilation = target.Start(fixedCompilation.Compilation, rollbackedResult.Diagnostics, false, false);
rollbackedResult = fixedCompilation.Compilation.Emit(ms);
rollbackedResult.Success.ShouldBeTrue();
// validate that only mutation 8 and 7 were rolled back
fixedCompilation.RollbackedIds.ShouldBe(new Collection<int> { 8, 7, 6 });
}
[TestMethod]
public void RollbackProcess_ShouldRollbackError_RollbackedCompilationShouldCompileWhenUriIsEmpty()
{
var syntaxTree = CSharpSyntaxTree.ParseText(@"
using System;
namespace ExampleProject
{
public class Query
{
public int ActiveMutation = 1;
public void Break()
{
if(ActiveMutation == 1)
{
string someQuery = ""test"";
new Uri(new Uri(string.Empty), ""/API?"" - someQuery);
}
else
{
string someQuery = ""test"";
new System.Uri(new System.Uri(string.Empty), ""/API?"" + someQuery);
}
}
}
}");
var ifStatement = syntaxTree
.GetRoot()
.DescendantNodes()
.First(x => x is IfStatementSyntax);
var annotatedSyntaxTree = syntaxTree.GetRoot()
.ReplaceNode(
ifStatement,
ifStatement.WithAdditionalAnnotations(GetMutationIdMarker(1), _ifEngineMarker)
).SyntaxTree;
var compiler = CSharpCompilation.Create("TestCompilation",
syntaxTrees: new Collection<SyntaxTree>() { annotatedSyntaxTree },
options: new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary),
references: new List<PortableExecutableReference>() {
MetadataReference.CreateFromFile(typeof(object).Assembly.Location),
MetadataReference.CreateFromFile(typeof(Environment).Assembly.Location),
MetadataReference.CreateFromFile(typeof(Uri).Assembly.Location),
});
var target = new CSharpRollbackProcess();
using var ms = new MemoryStream();
var fixedCompilation = target.Start(compiler, compiler.Emit(ms).Diagnostics, false, false);
fixedCompilation.Compilation.Emit(ms).Success.ShouldBeTrue();
// validate that only one of the compile errors marked the mutation as rolled back.
fixedCompilation.RollbackedIds.ShouldBe([1]);
}
[TestMethod]
public void RollbackProcess_ShouldOnlyRaiseExceptionOnFinalAttempt()
{
var syntaxTree = CSharpSyntaxTree.ParseText(@"
using System;
namespace ExampleProject
{
public class Query
{
public int ActiveMutation = 1;
public void Break()
{
if(ActiveMutation == 1)
{
string someQuery = ""test"";
new Uri(new Uri(string.Empty), ""/API?"" - someQuery);
}
else
{
string someQuery = ""test"";
new System.Uri(new System.Uri(string.Empty), ""/API?"" + someQuery);
}
var error = ""a""-""b"":
}
}
}");
var ifStatement = syntaxTree
.GetRoot()
.DescendantNodes()
.First(x => x is IfStatementSyntax);
var annotatedSyntaxTree = syntaxTree.GetRoot()
.ReplaceNode(
ifStatement,
ifStatement.WithAdditionalAnnotations(GetMutationIdMarker(1), _ifEngineMarker)
).SyntaxTree;
var compiler = CSharpCompilation.Create("TestCompilation",
syntaxTrees: new Collection<SyntaxTree>() { annotatedSyntaxTree },
options: new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary),
references: new List<PortableExecutableReference>() {
MetadataReference.CreateFromFile(typeof(object).Assembly.Location),
MetadataReference.CreateFromFile(typeof(Environment).Assembly.Location),
MetadataReference.CreateFromFile(typeof(Uri).Assembly.Location),
});
var target = new CSharpRollbackProcess();
using var ms = new MemoryStream();
// first compilation will roll back the mutation
var fixedCompilation = target.Start(compiler, compiler.Emit(ms).Diagnostics, false, false);
// next attempt cannot roll back anything, so it assumes this is not fixable
Should.Throw<CompilationException>(() => target.Start(fixedCompilation.Compilation, fixedCompilation.Compilation.Emit(ms).Diagnostics, true, false));
}
}
}