1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
|
// Copyright 2019 DeepMind Technologies Limited
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Xml;
using NUnit.Framework;
using UnityEngine;
using UnityEngine.TestTools;
namespace Mujoco {
[TestFixture]
public class MjDefaultSelectorsEditorTests {
private XmlElement SetUp(string mjcfString, string selector) {
var mjcf = new XmlDocument();
mjcf.LoadXml(mjcfString);
return mjcf.SelectSingleNode(selector) as XmlElement;
}
[TestCase("class")]
[TestCase("childclass")]
public void SelectingTopLevelClassDefault(string qualifier) {
var mjcfString = @"<mujoco>
<worldbody>
<modified QUALIFIER=""class""/>
</worldbody>
</mujoco>".Replace("QUALIFIER", qualifier);
var modifiedNode = SetUp(mjcfString, "/mujoco/worldbody/modified");
var classes = MjXmlModifiers.GetApplicableDefaultClasses(modifiedNode).ToArray();
Assert.That(classes.Length, Is.EqualTo(1));
Assert.That(
classes[0], Is.EqualTo("class"));
}
[TestCase("class")]
[TestCase("childclass")]
public void SelectingNestedClassDefaultWithInheritance(string qualifier) {
var mjcfString = @"<mujoco>
<worldbody>
<some_node childclass=""parent"">
<modified QUALIFIER=""child""/>
</some_node>
</worldbody>
</mujoco>".Replace("QUALIFIER", qualifier);
var modifiedNode = SetUp(mjcfString, "/mujoco/worldbody/some_node/modified");
var classes = MjXmlModifiers.GetApplicableDefaultClasses(modifiedNode).ToArray();
Assert.That(classes.Length, Is.EqualTo(2));
Assert.That(classes[0], Is.EqualTo("child"));
Assert.That(
classes[1], Is.EqualTo("parent"));
}
[TestCase("class")]
[TestCase("childclass")]
public void SelectingNestedClassDefaultWithoutInheritance(string qualifier) {
var mjcfString = @"<mujoco>
<worldbody>
<some_node class=""parent"">
<modified QUALIFIER=""child""/>
</some_node>
</worldbody>
</mujoco>".Replace("QUALIFIER", qualifier);
var modifiedNode = SetUp(mjcfString, "/mujoco/worldbody/some_node/modified");
var classes = MjXmlModifiers.GetApplicableDefaultClasses(modifiedNode).ToArray();
Assert.That(classes.Length, Is.EqualTo(1));
Assert.That(classes[0], Is.EqualTo("child"));
}
}
[TestFixture]
public class MjAttributeCopierEditorTests {
[Test]
public void CopyingXmlElementAttributes() {
var mjcfString = @"<root>
<tag_1 attr_1=""a"" attr_2=""b""/>
<tag_2/>
</root>";
var mjcf = new XmlDocument();
mjcf.LoadXml(mjcfString);
var tags = new XmlElement[] {
mjcf.SelectSingleNode("/root/tag_1") as XmlElement,
mjcf.SelectSingleNode("/root/tag_2") as XmlElement
};
MjXmlModifiers.CopyAttributes(tags[0], tags[1]);
// Reselect the element to make sure we're testing the actual part of the DOM, and not its copy.
var testedElement = mjcf.SelectSingleNode("/root/tag_2") as XmlElement;
Assert.That(testedElement.GetStringAttribute("attr_1", "unknown"), Is.EqualTo("a"));
Assert.That(testedElement.GetStringAttribute("attr_2", "unknown"), Is.EqualTo("b"));
}
[Test]
public void CopyingXmlElementAttributesWithoutOverwritingTheExistingOnes() {
var mjcfString = @"<root>
<tag_1 attr_1=""a"" attr_2=""b""/>
<tag_2 attr_1=""c""/>
</root>";
var mjcf = new XmlDocument();
mjcf.LoadXml(mjcfString);
var tags = new XmlElement[] {
mjcf.SelectSingleNode("/root/tag_1") as XmlElement,
mjcf.SelectSingleNode("/root/tag_2") as XmlElement
};
MjXmlModifiers.CopyAttributes(tags[0], tags[1]);
// Reselect the element to make sure we're testing the actual part of the DOM, and not its copy.
var testedElement = mjcf.SelectSingleNode("/root/tag_2") as XmlElement;
Assert.That(testedElement.GetStringAttribute("attr_1", "unknown"), Is.EqualTo("c"));
Assert.That(testedElement.GetStringAttribute("attr_2", "unknown"), Is.EqualTo("b"));
}
[Test]
public void CopyingXmlElementAttributesWithOverwritingTheExistingOnes() {
var mjcfString = @"<root>
<tag_1 attr_1=""a"" attr_2=""b""/>
<tag_2 attr_1=""c""/>
</root>";
var mjcf = new XmlDocument();
mjcf.LoadXml(mjcfString);
var tags = new XmlElement[] {
mjcf.SelectSingleNode("/root/tag_1") as XmlElement,
mjcf.SelectSingleNode("/root/tag_2") as XmlElement
};
MjXmlModifiers.CopyAttributesOverwriteExisting(tags[0], tags[1]);
// Reselect the element to make sure we're testing the actual part of the DOM, and not its copy.
var testedElement = mjcf.SelectSingleNode("/root/tag_2") as XmlElement;
Assert.That(testedElement.GetStringAttribute("attr_1", "unknown"), Is.EqualTo("a"));
Assert.That(testedElement.GetStringAttribute("attr_2", "unknown"), Is.EqualTo("b"));
}
}
[TestFixture]
public class MjXmlModifiersIntegrationEditorTests {
[Test]
public void ApplyingDefaultsAggregatesAttributesFromMultipleDefaults() {
var mjcfString = @"<mujoco>
<default>
<modified attrib=""a""/>
<default class=""class"">
<modified attrib=""b""/>
</default>
</default>
<worldbody>
<modified class=""class""/>
</worldbody>
</mujoco>";
var mjcf = new XmlDocument();
mjcf.LoadXml(mjcfString);
var modifiedElement = mjcf.SelectSingleNode("/mujoco/worldbody/modified") as XmlElement;
var modifiers = new MjXmlModifiers(mjcf);
modifiers.ApplyModifiersToElement(modifiedElement);
modifiedElement = mjcf.SelectSingleNode("/mujoco/worldbody/modified") as XmlElement;
Assert.That(modifiedElement.GetStringAttribute("attrib", string.Empty), Is.EqualTo("b"));
}
[Test]
public void ApplyingDefaultsDoesntOverwriteTheExistingNodeAttribute() {
var mjcfString = @"<mujoco>
<default>
<modified attrib=""b""/>
</default>
<worldbody>
<modified attrib=""a""/>
</worldbody>
</mujoco>";
var mjcf = new XmlDocument();
mjcf.LoadXml(mjcfString);
var modifiedElement = mjcf.SelectSingleNode("/mujoco/worldbody/modified") as XmlElement;
var modifiers = new MjXmlModifiers(mjcf);
modifiers.ApplyModifiersToElement(modifiedElement);
modifiedElement = mjcf.SelectSingleNode("/mujoco/worldbody/modified") as XmlElement;
Assert.That(modifiedElement.GetStringAttribute("attrib", string.Empty), Is.EqualTo("a"));
}
[Test]
public void MissingDefaultDoesntBreakInheritanceHierarchy() {
var mjcfString = @"<mujoco>
<default>
<default class=""a"">
<default class=""b"">
<geom type=""sphere""/>
</default>
</default>
</default>
<worldbody>
<body childclass=""a"">
<body childclass=""b"">
<geom name=""thingy""/>
</body>
</body>
</worldbody>
</mujoco>";
var mjcf = new XmlDocument();
mjcf.LoadXml(mjcfString);
var modifiedElement = mjcf.SelectSingleNode("descendant::body/geom") as XmlElement;
var modifiers = new MjXmlModifiers(mjcf);
modifiers.ApplyModifiersToElement(modifiedElement);
Assert.That(modifiedElement.GetStringAttribute("name", string.Empty), Is.EqualTo("thingy"));
Assert.That(modifiedElement.GetStringAttribute("type", string.Empty), Is.EqualTo("sphere"));
}
[Test]
public void PropagatePropertiesAcrossDefaultHierarchy() {
var mjcfString = @"<mujoco>
<default>
<default class=""a"">
<geom attrib1=""from_a""/>
<default class=""b"">
<geom attrib2=""from_b""/>
</default>
</default>
</default>
<worldbody>
<body>
<body>
<body>
<geom class=""b"" name=""thingy""/>
</body>
</body>
</body>
</worldbody>
</mujoco>";
var mjcf = new XmlDocument();
mjcf.LoadXml(mjcfString);
var modifiedElement = mjcf.SelectSingleNode("descendant::body/geom") as XmlElement;
var modifiers = new MjXmlModifiers(mjcf);
modifiers.ApplyModifiersToElement(modifiedElement);
Assert.That(modifiedElement.GetStringAttribute("name", string.Empty), Is.EqualTo("thingy"));
Assert.That(modifiedElement.GetStringAttribute("attrib1", string.Empty), Is.EqualTo("from_a"));
Assert.That(modifiedElement.GetStringAttribute("attrib2", string.Empty), Is.EqualTo("from_b"));
}
}
}
|