blob: a2bb72b7d1afe2a2f6a2649b5739b53a57d97ef3 [file]
/* Copyright 2004 The Apache Software Foundation
*
* 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 xmlcursor.checkin;
import org.apache.xmlbeans.XmlCursor;
import org.apache.xmlbeans.XmlCursor.XmlBookmark;
import org.apache.xmlbeans.XmlException;
import org.junit.jupiter.api.Test;
import xmlcursor.common.Common;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNull;
import static xmlcursor.common.BasicCursorTestCase.cur;
public class ClearBookmarkTest {
private static final Bookmark0 _theAnnotation0 = new Bookmark0("value0");
private static final Bookmark1 _theAnnotation1 = new Bookmark1("value1");
private static final Bookmark2 _theAnnotation2 = new Bookmark2("value2");
@Test
void testClearIndependent() throws XmlException {
try (XmlCursor m_xc = cur(Common.XML_FOO_TEXT)) {
m_xc.setBookmark(_theAnnotation0);
m_xc.setBookmark(_theAnnotation1);
m_xc.setBookmark(_theAnnotation2);
Bookmark0 ann0 = (Bookmark0) m_xc.getBookmark(Bookmark0.class);
assertEquals("value0", ann0.text);
Bookmark1 ann1 = (Bookmark1) m_xc.getBookmark(Bookmark1.class);
assertEquals("value1", ann1.text);
Bookmark2 ann2 = (Bookmark2) m_xc.getBookmark(Bookmark2.class);
assertEquals("value2", ann2.text);
// clear ann1
m_xc.clearBookmark(Bookmark1.class);
ann0 = (Bookmark0) m_xc.getBookmark(Bookmark0.class);
assertEquals("value0", ann0.text);
ann1 = (Bookmark1) m_xc.getBookmark(Bookmark1.class);
assertNull(ann1);
ann2 = (Bookmark2) m_xc.getBookmark(Bookmark2.class);
assertEquals("value2", ann2.text);
}
}
@Test
void testClearNullKey() throws XmlException {
try (XmlCursor m_xc = cur(Common.XML_FOO_TEXT)) {
m_xc.setBookmark(_theAnnotation0);
m_xc.clearBookmark(null);
Bookmark0 ann0 = (Bookmark0) m_xc.getBookmark(Bookmark0.class);
assertEquals("value0", ann0.text);
}
}
@Test
void testClearSuperClass() throws XmlException {
try (XmlCursor m_xc = cur(Common.XML_FOO_TEXT)) {
m_xc.setBookmark(_theAnnotation0);
m_xc.clearBookmark(XmlBookmark.class);
Bookmark0 ann0 = (Bookmark0) m_xc.getBookmark(Bookmark0.class);
assertEquals("value0", ann0.text);
}
}
@Test
void testClearInvalidClass() throws XmlException {
try (XmlCursor m_xc = cur(Common.XML_FOO_TEXT)) {
m_xc.setBookmark(_theAnnotation0);
m_xc.clearBookmark(this.getClass());
Bookmark0 ann0 = (Bookmark0) m_xc.getBookmark(Bookmark0.class);
assertEquals("value0", ann0.text);
}
}
public static class Bookmark0 extends XmlCursor.XmlBookmark {
public String text;
public Bookmark0(String text) {
this.text = text;
}
}
public static class Bookmark1 extends XmlCursor.XmlBookmark {
public String text;
public Bookmark1(String text) {
this.text = text;
}
}
public static class Bookmark2 extends XmlCursor.XmlBookmark {
public String text;
public Bookmark2(String text) {
this.text = text;
}
}
}