Java tutorial
/* * Copyright (C) 2012 Nicolas A. Brard-Nault * * 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.sitemap4j.dom4j; import static org.junit.Assert.assertEquals; import static org.sitemap4j.TestHelper.getSiteMapUrl; import java.io.OutputStream; import org.apache.commons.vfs2.FileObject; import org.apache.commons.vfs2.VFS; import org.junit.Test; import org.sitemap4j.dom4j.Dom4jSiteMapReader; import org.sitemap4j.dom4j.Dom4jSiteMapWriter; import org.sitemap4j.reader.RawSiteMap; import org.sitemap4j.reader.SiteMapReader; import org.sitemap4j.sitemap.ArrayListMutableSiteMap; import org.sitemap4j.sitemap.MutableSiteMap; import org.sitemap4j.writer.SiteMapWriter; public class Dom4jSiteMapWriterTest { @Test public void test() throws Exception { // Given final FileObject siteMapFile = VFS.getManager().resolveFile("ram:///sitemap.xml"); siteMapFile.createFile(); final OutputStream outputStream = siteMapFile.getContent().getOutputStream(); final MutableSiteMap siteMap = ArrayListMutableSiteMap.create(); siteMap.add(getSiteMapUrl().build()); siteMap.add(getSiteMapUrl().build()); // When final SiteMapWriter writer = Dom4jSiteMapWriter.forSiteMap(siteMap); writer.write(outputStream); // Then final SiteMapReader siteMapReader = Dom4jSiteMapReader.create(); assertEquals(siteMap, siteMapReader.read(RawSiteMap.fromInputStream(siteMapFile.getContent().getInputStream()))); } }