📄 restrictionelementtestfixture.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 complex content restriction elements.
/// </summary>
[TestFixture]
public class RestrictionElementTestFixture : SchemaTestFixtureBase
{
ICompletionData[] childElements;
ICompletionData[] attributes;
ICompletionData[] annotationChildElements;
ICompletionData[] choiceChildElements;
public override void FixtureInit()
{
XmlElementPath path = new XmlElementPath();
path.Elements.Add(new QualifiedName("group", "http://www.w3.org/2001/XMLSchema"));
childElements = SchemaCompletionData.GetChildElementCompletionData(path);
attributes = SchemaCompletionData.GetAttributeCompletionData(path);
// Get annotation child elements.
path.Elements.Add(new QualifiedName("annotation", "http://www.w3.org/2001/XMLSchema"));
annotationChildElements = SchemaCompletionData.GetChildElementCompletionData(path);
// Get choice child elements.
path.Elements.RemoveLast();
path.Elements.Add(new QualifiedName("choice", "http://www.w3.org/2001/XMLSchema"));
choiceChildElements = SchemaCompletionData.GetChildElementCompletionData(path);
}
[Test]
public void GroupChildElementIsAnnotation()
{
Assert.IsTrue(SchemaTestFixtureBase.Contains(childElements, "annotation"),
"Should have a child element called annotation.");
}
[Test]
public void GroupChildElementIsChoice()
{
Assert.IsTrue(SchemaTestFixtureBase.Contains(childElements, "choice"),
"Should have a child element called choice.");
}
[Test]
public void GroupChildElementIsSequence()
{
Assert.IsTrue(SchemaTestFixtureBase.Contains(childElements, "sequence"),
"Should have a child element called sequence.");
}
[Test]
public void GroupAttributeIsName()
{
Assert.IsTrue(SchemaTestFixtureBase.Contains(attributes, "name"),
"Should have an attribute called name.");
}
[Test]
public void AnnotationChildElementIsAppInfo()
{
Assert.IsTrue(SchemaTestFixtureBase.Contains(annotationChildElements, "appinfo"),
"Should have a child element called appinfo.");
}
[Test]
public void AnnotationChildElementIsDocumentation()
{
Assert.IsTrue(SchemaTestFixtureBase.Contains(annotationChildElements, "documentation"),
"Should have a child element called appinfo.");
}
[Test]
public void ChoiceChildElementIsSequence()
{
Assert.IsTrue(SchemaTestFixtureBase.Contains(choiceChildElements, "element"),
"Should have a child element called element.");
}
protected override string GetSchema()
{
return "<xs:schema targetNamespace=\"http://www.w3.org/2001/XMLSchema\" blockDefault=\"#all\" elementFormDefault=\"qualified\" version=\"1.0\" xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xml:lang=\"EN\" xmlns:hfp=\"http://www.w3.org/2001/XMLSchema-hasFacetAndProperty\">\r\n" +
"\r\n" +
" <xs:element name=\"group\" type=\"xs:namedGroup\" id=\"group\">\r\n" +
" </xs:element>\r\n" +
"\r\n" +
" <xs:element name=\"annotation\" id=\"annotation\">\r\n" +
" <xs:complexType>\r\n" +
" <xs:choice minOccurs=\"0\" maxOccurs=\"unbounded\">\r\n" +
" <xs:element name=\"appinfo\"/>\r\n" +
" <xs:element name=\"documentation\"/>\r\n" +
" </xs:choice>\r\n" +
" <xs:attribute name=\"id\" type=\"xs:ID\"/>\r\n" +
" </xs:complexType>\r\n" +
" </xs:element>\r\n" +
"\r\n" +
"\r\n" +
" <xs:complexType name=\"namedGroup\">\r\n" +
" <xs:complexContent>\r\n" +
" <xs:restriction base=\"xs:realGroup\">\r\n" +
" <xs:sequence>\r\n" +
" <xs:element ref=\"xs:annotation\" minOccurs=\"0\"/>\r\n" +
" <xs:choice minOccurs=\"1\" maxOccurs=\"1\">\r\n" +
" <xs:element ref=\"xs:choice\"/>\r\n" +
" <xs:element name=\"sequence\"/>\r\n" +
" </xs:choice>\r\n" +
" </xs:sequence>\r\n" +
" <xs:attribute name=\"name\" use=\"required\" type=\"xs:NCName\"/>\r\n" +
" <xs:attribute name=\"ref\" use=\"prohibited\"/>\r\n" +
" <xs:attribute name=\"minOccurs\" use=\"prohibited\"/>\r\n" +
" <xs:attribute name=\"maxOccurs\" use=\"prohibited\"/>\r\n" +
" <xs:anyAttribute namespace=\"##other\" processContents=\"lax\"/>\r\n" +
" </xs:restriction>\r\n" +
" </xs:complexContent>\r\n" +
" </xs:complexType>\r\n" +
"\r\n" +
" <xs:complexType name=\"realGroup\">\r\n" +
" <xs:sequence>\r\n" +
" <xs:element ref=\"xs:annotation\" minOccurs=\"0\"/>\r\n" +
" <xs:choice minOccurs=\"0\" maxOccurs=\"1\">\r\n" +
" <xs:element name=\"all\"/>\r\n" +
" <xs:element ref=\"xs:choice\"/>\r\n" +
" <xs:element name=\"sequence\"/>\r\n" +
" </xs:choice>\r\n" +
" </xs:sequence>\r\n" +
" <xs:anyAttribute namespace=\"##other\" processContents=\"lax\"/>\r\n" +
" </xs:complexType>\r\n" +
"\r\n" +
" <xs:element name=\"choice\" id=\"choice\">\r\n" +
" <xs:complexType>\r\n" +
" <xs:choice minOccurs=\"0\" maxOccurs=\"1\">\r\n" +
" <xs:element name=\"element\"/>\r\n" +
" <xs:element name=\"sequence\"/>\r\n" +
" </xs:choice>\r\n" +
" </xs:complexType>\r\n" +
" </xs:element>\r\n" +
"</xs:schema>";
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -