Xamarin Public Jenkins (auto-signing) 6bdd276d05 Imported Upstream version 5.0.0.42
Former-commit-id: fd56571888259555122d8a0f58c68838229cea2b
2017-04-10 11:41:01 +00:00

204 lines
6.9 KiB
C#

using System.IO;
using System.Linq;
using Mono.Cecil.Cil;
using Mono.Cecil.Pdb;
using NUnit.Framework;
namespace Mono.Cecil.Tests {
[TestFixture]
public class PdbTests : BaseTestFixture {
[Test]
public void Main ()
{
TestModule ("test.exe", module => {
var type = module.GetType ("Program");
var main = type.GetMethod ("Main");
AssertCode (@"
.locals init (System.Int32 i, System.Int32 CS$1$0000, System.Boolean CS$4$0001)
.line 6,6:2,3 'c:\sources\cecil\symbols\Mono.Cecil.Pdb\Test\Resources\assemblies\test.cs'
IL_0000: nop
.line 7,7:8,18 'c:\sources\cecil\symbols\Mono.Cecil.Pdb\Test\Resources\assemblies\test.cs'
IL_0001: ldc.i4.0
IL_0002: stloc.0
.line 16707566,16707566:0,0 'c:\sources\cecil\symbols\Mono.Cecil.Pdb\Test\Resources\assemblies\test.cs'
IL_0003: br.s IL_0012
.line 8,8:4,21 'c:\sources\cecil\symbols\Mono.Cecil.Pdb\Test\Resources\assemblies\test.cs'
IL_0005: ldarg.0
IL_0006: ldloc.0
IL_0007: ldelem.ref
IL_0008: call System.Void Program::Print(System.String)
IL_000d: nop
.line 7,7:36,39 'c:\sources\cecil\symbols\Mono.Cecil.Pdb\Test\Resources\assemblies\test.cs'
IL_000e: ldloc.0
IL_000f: ldc.i4.1
IL_0010: add
IL_0011: stloc.0
.line 7,7:19,34 'c:\sources\cecil\symbols\Mono.Cecil.Pdb\Test\Resources\assemblies\test.cs'
IL_0012: ldloc.0
IL_0013: ldarg.0
IL_0014: ldlen
IL_0015: conv.i4
IL_0016: clt
IL_0018: stloc.2
.line 16707566,16707566:0,0 'c:\sources\cecil\symbols\Mono.Cecil.Pdb\Test\Resources\assemblies\test.cs'
IL_0019: ldloc.2
IL_001a: brtrue.s IL_0005
.line 10,10:3,12 'c:\sources\cecil\symbols\Mono.Cecil.Pdb\Test\Resources\assemblies\test.cs'
IL_001c: ldc.i4.0
IL_001d: stloc.1
IL_001e: br.s IL_0020
.line 11,11:2,3 'c:\sources\cecil\symbols\Mono.Cecil.Pdb\Test\Resources\assemblies\test.cs'
IL_0020: ldloc.1
IL_0021: ret
", main);
}, readOnly: Platform.OnMono, symbolReaderProvider: typeof(PdbReaderProvider), symbolWriterProvider: typeof(PdbWriterProvider));
}
[Test]
public void DebuggerHiddenVariable ()
{
TestModule ("test.exe", module => {
var type = module.GetType ("Program");
var method = type.GetMethod ("Main");
var scope = method.DebugInformation.Scope;
Assert.IsTrue (scope.HasVariables);
var variables = scope.Variables;
Assert.AreEqual ("CS$1$0000", variables [0].Name);
Assert.IsTrue (variables [0].IsDebuggerHidden);
Assert.AreEqual ("CS$4$0001", variables [1].Name);
Assert.IsTrue (variables [1].IsDebuggerHidden);
Assert.AreEqual (1, scope.Scopes.Count);
scope = scope.Scopes [0];
variables = scope.Variables;
Assert.AreEqual ("i", variables [0].Name);
Assert.IsFalse (variables [0].IsDebuggerHidden);
}, readOnly: Platform.OnMono, symbolReaderProvider: typeof(PdbReaderProvider), symbolWriterProvider: typeof(PdbWriterProvider));
}
[Test]
public void Document ()
{
TestModule ("test.exe", module => {
var type = module.GetType ("Program");
var method = type.GetMethod ("Main");
var sequence_point = method.DebugInformation.SequencePoints.First (sp => sp != null);
var document = sequence_point.Document;
Assert.IsNotNull (document);
Assert.AreEqual (@"c:\sources\cecil\symbols\Mono.Cecil.Pdb\Test\Resources\assemblies\test.cs", document.Url);
Assert.AreEqual (DocumentType.Text, document.Type);
Assert.AreEqual (DocumentHashAlgorithm.None, document.HashAlgorithm);
Assert.AreEqual (DocumentLanguage.CSharp, document.Language);
Assert.AreEqual (DocumentLanguageVendor.Microsoft, document.LanguageVendor);
}, readOnly: Platform.OnMono, symbolReaderProvider: typeof(PdbReaderProvider), symbolWriterProvider: typeof(PdbWriterProvider));
}
[Test]
public void BasicDocument ()
{
TestModule ("VBConsApp.exe", module => {
var type = module.GetType ("VBConsApp.Program");
var method = type.GetMethod ("Main");
var sequence_point = method.DebugInformation.SequencePoints.First (sp => sp != null);
var document = sequence_point.Document;
Assert.IsNotNull (document);
Assert.AreEqual (@"c:\tmp\VBConsApp\Program.vb", document.Url);
Assert.AreEqual (DocumentType.Text, document.Type);
Assert.AreEqual (DocumentHashAlgorithm.None, document.HashAlgorithm);
Assert.AreEqual (DocumentLanguage.Basic, document.Language);
Assert.AreEqual (DocumentLanguageVendor.Microsoft, document.LanguageVendor);
}, readOnly: Platform.OnMono, symbolReaderProvider: typeof(PdbReaderProvider), symbolWriterProvider: typeof(PdbWriterProvider));
}
[Test]
public void FSharpDocument ()
{
TestModule ("fsapp.exe", module => {
var type = module.GetType ("Program");
var method = type.GetMethod ("fact");
var sequence_point = method.DebugInformation.SequencePoints.First (sp => sp != null);
var document = sequence_point.Document;
Assert.IsNotNull (document);
Assert.AreEqual (@"c:\tmp\fsapp\Program.fs", document.Url);
Assert.AreEqual (DocumentType.Text, document.Type);
Assert.AreEqual (DocumentHashAlgorithm.None, document.HashAlgorithm);
Assert.AreEqual (DocumentLanguage.FSharp, document.Language);
Assert.AreEqual (DocumentLanguageVendor.Microsoft, document.LanguageVendor);
}, readOnly: Platform.OnMono, symbolReaderProvider: typeof(PdbReaderProvider), symbolWriterProvider: typeof(PdbWriterProvider));
}
[Test]
public void CreateMethodFromScratch ()
{
IgnoreOnMono ();
var module = ModuleDefinition.CreateModule ("Pan", ModuleKind.Dll);
var type = new TypeDefinition ("Pin", "Pon", TypeAttributes.Public | TypeAttributes.Abstract | TypeAttributes.Sealed, module.ImportReference (typeof (object)));
module.Types.Add (type);
var method = new MethodDefinition ("Pang", MethodAttributes.Public | MethodAttributes.Static, module.ImportReference (typeof (string)));
type.Methods.Add (method);
var body = method.Body;
body.InitLocals = true;
var il = body.GetILProcessor ();
var temp = new VariableDefinition (module.ImportReference (typeof (string)));
body.Variables.Add (temp);
il.Emit (OpCodes.Nop);
il.Emit (OpCodes.Ldstr, "hello");
il.Emit (OpCodes.Stloc, temp);
il.Emit (OpCodes.Ldloc, temp);
il.Emit (OpCodes.Ret);
var sequence_point = new SequencePoint (body.Instructions [0], new Document (@"C:\test.cs")) {
StartLine = 0,
StartColumn = 0,
EndLine = 0,
EndColumn = 4,
};
method.DebugInformation.SequencePoints.Add (sequence_point);
method.DebugInformation.Scope = new ScopeDebugInformation (body.Instructions [0], null) {
Variables = { new VariableDebugInformation (temp, "temp") }
};
var file = Path.Combine (Path.GetTempPath (), "Pan.dll");
module.Write (file, new WriterParameters {
SymbolWriterProvider = new PdbWriterProvider (),
});
module = ModuleDefinition.ReadModule (file, new ReaderParameters {
SymbolReaderProvider = new PdbReaderProvider (),
});
method = module.GetType ("Pin.Pon").GetMethod ("Pang");
Assert.AreEqual ("temp", method.DebugInformation.Scope.Variables [0].Name);
}
}
}