Merge pull request #5 from rometools/feature/outline-category
The category attribute of outlines will now be exported
This commit is contained in:
commit
547d91e51b
3 changed files with 121 additions and 12 deletions
4
pom.xml
4
pom.xml
|
@ -76,6 +76,10 @@
|
||||||
<artifactId>junit</artifactId>
|
<artifactId>junit</artifactId>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.hamcrest</groupId>
|
||||||
|
<artifactId>hamcrest-library</artifactId>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>xmlunit</groupId>
|
<groupId>xmlunit</groupId>
|
||||||
<artifactId>xmlunit</artifactId>
|
<artifactId>xmlunit</artifactId>
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
package com.rometools.opml.io.impl;
|
package com.rometools.opml.io.impl;
|
||||||
|
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.List;
|
||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
|
|
||||||
import org.jdom2.Document;
|
import org.jdom2.Document;
|
||||||
|
@ -12,7 +14,9 @@ import com.rometools.rome.io.FeedException;
|
||||||
import com.rometools.rome.io.impl.DateParser;
|
import com.rometools.rome.io.impl.DateParser;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author cooper
|
* Generator for OPML 2.0 documents.
|
||||||
|
*
|
||||||
|
* @see <a href="http://dev.opml.org/spec2.html">http://dev.opml.org/spec2.html</a>
|
||||||
*/
|
*/
|
||||||
public class OPML20Generator extends OPML10Generator {
|
public class OPML20Generator extends OPML10Generator {
|
||||||
|
|
||||||
|
@ -41,33 +45,61 @@ public class OPML20Generator extends OPML10Generator {
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public Document generate(final WireFeed feed) throws IllegalArgumentException, FeedException {
|
public Document generate(final WireFeed feed) throws IllegalArgumentException, FeedException {
|
||||||
final Document retValue = super.generate(feed);
|
final Document document = super.generate(feed);
|
||||||
retValue.getRootElement().setAttribute("version", "2.0");
|
document.getRootElement().setAttribute("version", "2.0");
|
||||||
return retValue;
|
return document;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Element generateHead(final Opml opml) {
|
protected Element generateHead(final Opml opml) {
|
||||||
|
|
||||||
final Element docs = new Element("docs");
|
final Element docsElement = new Element("docs");
|
||||||
docs.setText(opml.getDocs());
|
docsElement.setText(opml.getDocs());
|
||||||
|
|
||||||
final Element retValue = super.generateHead(opml);
|
final Element headElement = super.generateHead(opml);
|
||||||
retValue.addContent(docs);
|
headElement.addContent(docsElement);
|
||||||
return retValue;
|
return headElement;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Element generateOutline(final Outline outline) {
|
protected Element generateOutline(final Outline outline) {
|
||||||
|
|
||||||
final Element retValue = super.generateOutline(outline);
|
final Element outlineElement = super.generateOutline(outline);
|
||||||
|
|
||||||
if (outline.getCreated() != null) {
|
if (outline.getCreated() != null) {
|
||||||
retValue.setAttribute("created", DateParser.formatRFC822(outline.getCreated(), Locale.US));
|
outlineElement.setAttribute("created", DateParser.formatRFC822(outline.getCreated(), Locale.US));
|
||||||
}
|
}
|
||||||
|
|
||||||
return retValue;
|
final List<String> categories = outline.getCategories();
|
||||||
|
final String categoryValue = generateCategoryValue(categories);
|
||||||
|
addNotNullAttribute(outlineElement, "category", categoryValue);
|
||||||
|
|
||||||
|
return outlineElement;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private String generateCategoryValue(final Collection<String> categories) {
|
||||||
|
|
||||||
|
final StringBuilder builder = new StringBuilder();
|
||||||
|
|
||||||
|
boolean first = true;
|
||||||
|
for (final String category : categories) {
|
||||||
|
if (category != null && !category.trim().isEmpty()) {
|
||||||
|
if (first) {
|
||||||
|
first = false;
|
||||||
|
} else {
|
||||||
|
builder.append(",");
|
||||||
|
}
|
||||||
|
builder.append(category.trim());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (builder.length() > 0) {
|
||||||
|
return builder.toString();
|
||||||
|
} else {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,73 @@
|
||||||
|
package com.rometools.opml.io.impl;
|
||||||
|
|
||||||
|
import static org.hamcrest.MatcherAssert.assertThat;
|
||||||
|
import static org.hamcrest.Matchers.equalTo;
|
||||||
|
import static org.hamcrest.Matchers.is;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
|
import org.custommonkey.xmlunit.XMLUnit;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.w3c.dom.Document;
|
||||||
|
import org.w3c.dom.NodeList;
|
||||||
|
|
||||||
|
import com.rometools.opml.feed.opml.Opml;
|
||||||
|
import com.rometools.opml.feed.opml.Outline;
|
||||||
|
import com.rometools.rome.io.WireFeedOutput;
|
||||||
|
|
||||||
|
public class OPML20GeneratorTest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testOutputOfNullCategory() {
|
||||||
|
assertThat(categoryOf((String) null).getLength(), is(equalTo(0)));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testOutputOfEmptyCategory() {
|
||||||
|
assertThat(categoryOf("").getLength(), is(equalTo(0)));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testOutputOfBlankCategory() {
|
||||||
|
assertThat(categoryOf(" ").getLength(), is(equalTo(0)));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testOutputOfOneCategory() {
|
||||||
|
assertThat(categoryValueOf("category1"), is(equalTo("category1")));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testOutputOfMultipleCategories() {
|
||||||
|
assertThat(categoryValueOf("category1", "category2"), is(equalTo("category1,category2")));
|
||||||
|
}
|
||||||
|
|
||||||
|
private NodeList categoryOf(final String... categories) {
|
||||||
|
|
||||||
|
try {
|
||||||
|
|
||||||
|
final Outline outline = new Outline("outline1", null);
|
||||||
|
outline.setCategories(Arrays.asList(categories));
|
||||||
|
|
||||||
|
final Opml opml = new Opml();
|
||||||
|
opml.setFeedType("opml_2.0");
|
||||||
|
opml.setTitle("title");
|
||||||
|
opml.setOutlines(Arrays.asList(outline));
|
||||||
|
|
||||||
|
final WireFeedOutput output = new WireFeedOutput();
|
||||||
|
final String xml = output.outputString(opml);
|
||||||
|
|
||||||
|
final Document document = XMLUnit.buildControlDocument(xml);
|
||||||
|
return XMLUnit.newXpathEngine().getMatchingNodes("/opml/body/outline/@category", document);
|
||||||
|
|
||||||
|
} catch (final Exception e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private String categoryValueOf(final String... categories) {
|
||||||
|
return categoryOf(categories).item(0).getNodeValue();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue