📄 encodedbytearrayconvertertest.java
字号:
package com.thoughtworks.xstream.converters.extended;import com.thoughtworks.acceptance.AbstractAcceptanceTest;import com.thoughtworks.acceptance.StandardObject;import com.thoughtworks.xstream.io.HierarchicalStreamReader;import com.thoughtworks.xstream.io.HierarchicalStreamWriter;import com.thoughtworks.xstream.io.xml.XppReader;public class EncodedByteArrayConverterTest extends AbstractAcceptanceTest { public void testMarshallsCharArrayAsSingleString() { byte[] input = {0, 120, -124, 22, 33, 0, 5}; String expected = "<byte-array>AHiEFiEABQ==</byte-array>"; assertBothWays(input, expected); } public void testUnmarshallsOldByteArraysThatHaveNotBeenEncoding() { // for backwards compatability String input = "" + "<byte-array>\n" + " <byte>0</byte>\n" + " <byte>120</byte>\n" + " <byte>-124</byte>\n" + " <byte>22</byte>\n" + " <byte>33</byte>\n" + " <byte>0</byte>\n" + " <byte>5</byte>\n" + "</byte-array>"; byte[] expected = {0, 120, -124, 22, 33, 0, 5}; assertByteArrayEquals(expected, (byte[])xstream.fromXML(input)); } public void testUnmarshallsEmptyByteArrays() { byte[] input = {}; String expected = "<byte-array></byte-array>"; assertBothWays(input, expected); } public static class TestObject extends StandardObject { private byte[] data; private boolean something; } public void testUnmarshallsEmptyByteArrayAsFieldOfAnotherObject() { // exposes a weird bug that was in the XML pull readers. TestObject in = new TestObject(); in.data = new byte[0]; xstream.alias("TestObject", TestObject.class); String expectedXml = "" + "<TestObject>\n" + " <data></data>\n" + " <something>false</something>\n" + "</TestObject>"; assertBothWays(in, expectedXml); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -