|
| 1 | +using System.Reflection; |
| 2 | +using Draco.Compiler.Internal; |
| 3 | + |
| 4 | +namespace Draco.Compiler.Tests.CodeGeneration; |
| 5 | + |
| 6 | +public sealed class MsilStructureTests |
| 7 | +{ |
| 8 | + private readonly struct RelayDisposable(Action dispose) : IDisposable |
| 9 | + { |
| 10 | + public void Dispose() => dispose(); |
| 11 | + } |
| 12 | + |
| 13 | + private const BindingFlags AllBindingFlags = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Static; |
| 14 | + |
| 15 | + private string? CurrentNamespace => this.namespaceStack.Count == 0 |
| 16 | + ? null |
| 17 | + : string.Join(".", this.namespaceStack.Reverse()); |
| 18 | + private Type CurrentType => this.typeStack.Peek(); |
| 19 | + |
| 20 | + private Assembly assembly = null!; |
| 21 | + private readonly Stack<Type> typeStack = new(); |
| 22 | + private readonly Stack<string> namespaceStack = new(); |
| 23 | + |
| 24 | + private void Compile(string source) |
| 25 | + { |
| 26 | + this.assembly = TestUtilities.CompileToAssembly(source); |
| 27 | + } |
| 28 | + |
| 29 | + private RelayDisposable Ns(string name) |
| 30 | + { |
| 31 | + this.namespaceStack.Push(name); |
| 32 | + return new RelayDisposable(() => this.namespaceStack.Pop()); |
| 33 | + } |
| 34 | + |
| 35 | + private RelayDisposable C(string name, Func<Type, bool> predicate) |
| 36 | + { |
| 37 | + var type = this.typeStack.Count == 0 |
| 38 | + // Look up in root assembly |
| 39 | + ? this.assembly.GetType(name) |
| 40 | + // Look up in current type |
| 41 | + : this.CurrentType.GetNestedType(name, AllBindingFlags); |
| 42 | + |
| 43 | + Assert.NotNull(type); |
| 44 | + Assert.Equal(this.CurrentNamespace, type.Namespace); |
| 45 | + Assert.True(predicate(type)); |
| 46 | + this.typeStack.Push(type); |
| 47 | + |
| 48 | + return new RelayDisposable(() => this.typeStack.Pop()); |
| 49 | + } |
| 50 | + |
| 51 | + private RelayDisposable StaticC(string name, Func<Type, bool> predicate) => |
| 52 | + this.C(name, t => t.IsAbstract && t.IsSealed && predicate(t)); |
| 53 | + |
| 54 | + private void M(string name, Func<MethodInfo, bool> predicate) |
| 55 | + { |
| 56 | + var method = this.CurrentType.GetMethod(name, AllBindingFlags); |
| 57 | + Assert.NotNull(method); |
| 58 | + Assert.True(predicate(method)); |
| 59 | + } |
| 60 | + |
| 61 | + [Fact] |
| 62 | + public void HelloWorld() |
| 63 | + { |
| 64 | + this.Compile(""" |
| 65 | + import System.Console; |
| 66 | +
|
| 67 | + func main() { |
| 68 | + WriteLine("Hello, World!"); |
| 69 | + } |
| 70 | + """); |
| 71 | + |
| 72 | + using (this.StaticC(CompilerConstants.DefaultModuleName, t => !t.IsPublic)) |
| 73 | + { |
| 74 | + this.M("main", m => !m.IsPublic && m.IsStatic); |
| 75 | + } |
| 76 | + } |
| 77 | +} |
0 commit comments