abstractelementtestfixture.cs
来自「c#源代码」· CS 代码 · 共 152 行
CS
152 行
//
// SharpDevelop Xml Editor
//
// Copyright (C) 2005 Matthew Ward
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// Matthew Ward (mrward@users.sourceforge.net)
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 + =
减小字号Ctrl + -
显示快捷键?