/** * * Copyright 2017 Fernando Ramirez, 2021 Paul Schaub * * 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. */ package org.jivesoftware.smackx.avatar; import static org.junit.jupiter.api.Assertions.assertEquals; import org.jivesoftware.smack.test.util.SmackTestSuite; import org.jivesoftware.smack.test.util.SmackTestUtil; import org.jivesoftware.smack.util.stringencoder.Base64; import org.jivesoftware.smackx.avatar.element.DataExtension; import org.jivesoftware.smackx.avatar.provider.DataProvider; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.EnumSource; public class DataExtensionTest extends SmackTestSuite { // @formatter:off String dataExtensionExample = "" + "qANQR1DBwU4DX7jmYZnnfe32" + ""; // @formatter:on @ParameterizedTest @EnumSource(SmackTestUtil.XmlPullParserKind.class) public void checkDataExtensionParse(SmackTestUtil.XmlPullParserKind parserKind) throws Exception { byte[] data = Base64.decode("qANQR1DBwU4DX7jmYZnnfe32"); DataExtension dataExtension = new DataExtension(data); assertEquals(dataExtensionExample, dataExtension.toXML().toString()); DataExtension dataExtensionFromProvider = SmackTestUtil.parse(dataExtensionExample, DataProvider.class, parserKind); assertEquals(Base64.encodeToString(data), Base64.encodeToString(dataExtensionFromProvider.getData())); } }