You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
4.0 KiB
101 lines
4.0 KiB
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under MIT X11 license (for details please see \doc\license.txt) |
|
|
|
using System; |
|
using System.Linq; |
|
using System.Text.RegularExpressions; |
|
using ICSharpCode.NRefactory.PatternMatching; |
|
using NUnit.Framework; |
|
|
|
namespace ICSharpCode.NRefactory.CSharp.Parser.GeneralScope |
|
{ |
|
[TestFixture] |
|
public class AttributeSectionTests |
|
{ |
|
[Test, Ignore("Parser crash")] |
|
public void GlobalAttributeCSharp() |
|
{ |
|
string program = @"[global::Microsoft.VisualBasic.CompilerServices.DesignerGenerated()] |
|
[someprefix::DesignerGenerated()] |
|
public class Form1 { |
|
}"; |
|
|
|
TypeDeclaration decl = ParseUtilCSharp.ParseGlobal<TypeDeclaration>(program); |
|
Assert.AreEqual(2, decl.Attributes.Count); |
|
Assert.AreEqual("global::Microsoft.VisualBasic.CompilerServices.DesignerGenerated", |
|
decl.Attributes.First().Attributes.Single().Type.ToString()); |
|
Assert.AreEqual("someprefix::DesignerGenerated", decl.Attributes.Last().Attributes.Single().Type.ToString()); |
|
} |
|
|
|
[Test, Ignore("assembly/module attributes are broken")] |
|
public void AssemblyAttributeCSharp() |
|
{ |
|
string program = @"[assembly: System.Attribute()]"; |
|
AttributeSection decl = ParseUtilCSharp.ParseGlobal<AttributeSection>(program); |
|
Assert.AreEqual(new AstLocation(1, 1), decl.StartLocation); |
|
Assert.AreEqual("assembly", decl.AttributeTarget); |
|
} |
|
|
|
[Test, Ignore("assembly/module attributes are broken")] |
|
public void AssemblyAttributeCSharpWithNamedArguments() |
|
{ |
|
string program = @"[assembly: Foo(1, namedArg: 2, prop = 3)]"; |
|
AttributeSection decl = ParseUtilCSharp.ParseGlobal<AttributeSection>(program); |
|
Assert.AreEqual("assembly", decl.AttributeTarget); |
|
var a = decl.Attributes.Single(); |
|
Assert.AreEqual("Foo", a.Type); |
|
Assert.AreEqual(3, a.Arguments.Count()); |
|
|
|
Assert.IsTrue(a.Arguments.ElementAt(0).IsMatch(new PrimitiveExpression(1))); |
|
Assert.IsTrue(a.Arguments.ElementAt(1).IsMatch(new NamedArgumentExpression { |
|
Identifier = "namedArg", |
|
Expression = new PrimitiveExpression(2) |
|
})); |
|
Assert.IsTrue(a.Arguments.ElementAt(2).IsMatch(new AssignmentExpression { |
|
Left = new IdentifierExpression("prop"), |
|
Operator = AssignmentOperatorType.Assign, |
|
Right = new PrimitiveExpression(3) |
|
})); |
|
} |
|
|
|
[Test, Ignore("assembly/module attributes are broken")] |
|
public void ModuleAttributeCSharp() |
|
{ |
|
string program = @"[module: System.Attribute()]"; |
|
AttributeSection decl = ParseUtilCSharp.ParseGlobal<AttributeSection>(program); |
|
Assert.AreEqual(new AstLocation(1, 1), decl.StartLocation); |
|
Assert.AreEqual("module", decl.AttributeTarget); |
|
} |
|
|
|
[Test] |
|
public void TypeAttributeCSharp() |
|
{ |
|
string program = @"[type: System.Attribute()] class Test {}"; |
|
TypeDeclaration type = ParseUtilCSharp.ParseGlobal<TypeDeclaration>(program); |
|
AttributeSection decl = type.Attributes.Single(); |
|
Assert.AreEqual(new AstLocation(1, 1), decl.StartLocation); |
|
Assert.AreEqual("type", decl.AttributeTarget); |
|
} |
|
|
|
[Test, Ignore("Parser doesn't support attributes on type parameters")] |
|
public void AttributesOnTypeParameter() |
|
{ |
|
string program = @"class Test<[A,B]C> {}"; |
|
TypeDeclaration type = ParseUtilCSharp.ParseGlobal<TypeDeclaration>(program); |
|
Assert.IsTrue( |
|
new TypeParameterDeclaration { |
|
Attributes = { |
|
new AttributeSection { |
|
Attributes = { |
|
new Attribute { Type = new SimpleType("A") }, |
|
new Attribute { Type = new SimpleType("B") } |
|
} |
|
} |
|
}, |
|
Name = "C" |
|
}.IsMatch(type.TypeParameters.Single())); |
|
} |
|
|
|
// TODO: Tests for other contexts where attributes can appear |
|
} |
|
}
|
|
|