blob: 03968098da3cc588e2bb164bd5eb2d45182a2e65 [file] [log] [blame]
/*
* See LICENSE file in distribution for copyright and licensing information.
*/
package org.yaml.snakeyaml.representer;
import junit.framework.TestCase;
import org.yaml.snakeyaml.Dumper;
import org.yaml.snakeyaml.DumperOptions;
import org.yaml.snakeyaml.Loader;
import org.yaml.snakeyaml.Yaml;
import org.yaml.snakeyaml.constructor.AbstractConstruct;
import org.yaml.snakeyaml.constructor.Constructor;
import org.yaml.snakeyaml.nodes.Node;
import org.yaml.snakeyaml.nodes.ScalarNode;
public class RepresentTest extends TestCase {
public void testCustomRepresenter() {
Dumper dumper = new Dumper(new MyRepresenter(), new DumperOptions());
Loader loader = new Loader(new MyConstructor());
Yaml yaml = new Yaml(loader, dumper);
CustomBean etalon = new CustomBean("A", 1);
String output = yaml.dump(etalon);
assertEquals("!!Dice 'Ad1'\n", output);
CustomBean bean = (CustomBean) yaml.load(output);
assertEquals("A", bean.getPrefix());
assertEquals(1, bean.getSuffix());
assertEquals(etalon, bean);
}
class CustomBean {
private String prefix;
private int suffix;
public CustomBean(String prefix, int suffix) {
this.prefix = prefix;
this.suffix = suffix;
}
public String getPrefix() {
return prefix;
}
public int getSuffix() {
return suffix;
}
@Override
public boolean equals(Object obj) {
CustomBean bean = (CustomBean) obj;
return prefix.equals(bean.getPrefix()) && suffix == bean.getSuffix();
}
}
class MyRepresenter extends Representer {
public MyRepresenter() {
this.representers.put(CustomBean.class, new RepresentDice());
}
private class RepresentDice implements Represent {
public Node representData(Object data) {
CustomBean coin = (CustomBean) data;
String value = coin.getPrefix() + "d" + coin.getSuffix();
return representScalar("!!Dice", value);
}
}
}
class MyConstructor extends Constructor {
public MyConstructor() {
this.yamlConstructors.put("tag:yaml.org,2002:Dice", new ConstructDice());
}
private class ConstructDice extends AbstractConstruct {
public Object construct(Node node) {
String val = (String) constructScalar((ScalarNode) node);
return new CustomBean(val.substring(0, 1), Integer.parseInt(val.substring(2)));
}
}
}
}