/** * * Copyright 2017 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.jingle; import org.jivesoftware.smack.test.util.SmackTestSuite; import org.jivesoftware.smackx.jingle.element.JingleContent; import org.junit.Test; import static junit.framework.TestCase.assertEquals; import static junit.framework.TestCase.assertNotNull; import static junit.framework.TestCase.assertNotSame; import static junit.framework.TestCase.assertNull; import static junit.framework.TestCase.fail; /** * Test the JingleContent class. */ public class JingleContentTest extends SmackTestSuite { @Test public void parserTest() { JingleContent.Builder builder = JingleContent.getBuilder(); try { builder.build(); fail(); } catch (NullPointerException e) { // Expected } builder.setCreator(JingleContent.Creator.initiator); try { builder.build(); fail(); } catch (IllegalArgumentException e) { // Expected } builder.setName("A name"); JingleContent content = builder.build(); assertNotNull(content); assertNull(content.getDescription()); assertEquals(JingleContent.Creator.initiator, content.getCreator()); assertEquals("A name", content.getName()); builder.setSenders(JingleContent.Senders.both); content = builder.build(); assertEquals(JingleContent.Senders.both, content.getSenders()); builder.setDisposition("session"); JingleContent content1 = builder.build(); assertEquals("session", content1.getDisposition()); assertNotSame(content.toXML().toString(), content1.toXML().toString()); assertEquals(content1.toXML().toString(), builder.build().toXML().toString()); assertEquals(0, content.getJingleTransportsCount()); assertNotNull(content.getJingleTransports()); String xml = "" + ""; assertEquals(xml, content1.toXML().toString()); } }