📄 abstractelementtestfixture.cs
字号:
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="Matthew Ward" email="mrward@users.sourceforge.net"/>
// <version>$Revision: 915 $</version>
// </file>
using ICSharpCode.TextEditor.Gui.CompletionWindow;
using ICSharpCode.XmlEditor;
using NUnit.Framework;
using System;
using System.IO;
namespace XmlEditor.Tests.Schema
{
/// <summary>
/// Tests elements that are abstract and require substitution groups.
/// </summary>
[TestFixture]
public class AbstractElementTestFixture : SchemaTestFixtureBase
{
ICompletionData[] itemsElementChildren;
ICompletionData[] fileElementAttributes;
ICompletionData[] fileElementChildren;
public override void FixtureInit()
{
XmlElementPath path = new XmlElementPath();
path.Elements.Add(new QualifiedName("project", "http://foo"));
path.Elements.Add(new QualifiedName("items", "http://foo"));
itemsElementChildren = SchemaCompletionData.GetChildElementCompletionData(path);
path.Elements.Add(new QualifiedName("file", "http://foo"));
fileElementAttributes = SchemaCompletionData.GetAttributeCompletionData(path);
fileElementChildren = SchemaCompletionData.GetChildElementCompletionData(path);
}
[Test]
public void ItemsElementHasTwoChildElements()
{
Assert.AreEqual(2, itemsElementChildren.Length,
"Should be 2 child elements.");
}
[Test]
public void ReferenceElementIsChildOfItemsElement()
{
Assert.IsTrue(SchemaTestFixtureBase.Contains(itemsElementChildren, "reference"));
}
[Test]
public void FileElementIsChildOfItemsElement()
{
Assert.IsTrue(SchemaTestFixtureBase.Contains(itemsElementChildren, "file"));
}
[Test]
public void FileElementHasAttributeNamedType()
{
Assert.IsTrue(SchemaTestFixtureBase.Contains(fileElementAttributes, "type"));
}
[Test]
public void FileElementHasTwoChildElements()
{
Assert.AreEqual(2, fileElementChildren.Length, "Should be 2 child elements.");
}
protected override string GetSchema()
{
return "<xs:schema targetNamespace=\"http://foo\" xmlns:foo=\"http://foo\" xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" elementFormDefault=\"qualified\">\r\n" +
" <xs:element name=\"project\">\r\n" +
" <xs:complexType>\r\n" +
" <xs:sequence>\r\n" +
" <xs:group ref=\"foo:projectItems\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\r\n" +
" </xs:sequence>\r\n" +
" </xs:complexType>\r\n" +
" </xs:element>\r\n" +
"\r\n" +
" <xs:group name=\"projectItems\">\r\n" +
" <xs:choice>\r\n" +
" <xs:element name=\"items\" type=\"foo:itemGroupType\"/>\r\n" +
" <xs:element name=\"message\" type=\"xs:string\"/>\r\n" +
" </xs:choice>\r\n" +
" </xs:group>\r\n" +
"\r\n" +
" <xs:complexType name=\"itemGroupType\">\r\n" +
" <xs:sequence minOccurs=\"0\" maxOccurs=\"unbounded\">\r\n" +
" <xs:element ref=\"foo:item\"/>\r\n" +
" </xs:sequence>\r\n" +
" <xs:attribute name=\"name\" type=\"xs:string\" use=\"optional\"/> \r\n" +
" </xs:complexType>\r\n" +
"\r\n" +
" <xs:element name=\"item\" type=\"foo:itemType\" abstract=\"true\"/>\r\n" +
"\r\n" +
"<xs:complexType name=\"itemType\">\r\n" +
" <xs:attribute name=\"name\" type=\"xs:string\" use=\"optional\"/> \r\n" +
" </xs:complexType>\r\n" +
"\r\n" +
" <xs:element name=\"reference\" substitutionGroup=\"foo:item\">\r\n" +
" <xs:complexType>\r\n" +
" <xs:complexContent>\r\n" +
" <xs:extension base=\"foo:itemType\">\r\n" +
" <xs:sequence minOccurs=\"0\" maxOccurs=\"unbounded\">\r\n" +
" <xs:choice>\r\n" +
" <xs:element name=\"name\"/>\r\n" +
" <xs:element name=\"location\"/> \r\n" +
" </xs:choice>\r\n" +
" </xs:sequence>\r\n" +
" <xs:attribute name=\"description\" type=\"xs:string\"/>\r\n" +
" </xs:extension>\r\n" +
" </xs:complexContent>\r\n" +
" </xs:complexType>\r\n" +
" </xs:element>\r\n" +
"\r\n" +
" <xs:element name=\"file\" substitutionGroup=\"foo:item\">\r\n" +
" <xs:complexType>\r\n" +
" <xs:complexContent>\r\n" +
" <xs:extension base=\"foo:itemType\">\r\n" +
" <xs:sequence minOccurs=\"0\" maxOccurs=\"unbounded\">\r\n" +
" <xs:choice>\r\n" +
" <xs:element name=\"name\"/>\r\n" +
" <xs:element name=\"attributes\"/>\r\n" +
" </xs:choice>\r\n" +
" </xs:sequence>\r\n" +
" <xs:attribute name=\"type\" type=\"xs:string\"/>\r\n" +
" </xs:extension>\r\n" +
" </xs:complexContent>\r\n" +
" </xs:complexType>\r\n" +
" </xs:element>\r\n" +
"</xs:schema>";
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -