blob: fc2b383e93d1e47b61247ccabf65e587e4fd9dc0 [file] [log] [blame]
/**
* Copyright (c) 2020, http://www.snakeyaml.org
*
* 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.yaml.snakeyaml.comment;
import static org.junit.Assert.assertEquals;
import java.io.IOException;
import java.io.StringWriter;
import org.junit.Test;
import org.yaml.snakeyaml.DumperOptions;
import org.yaml.snakeyaml.DumperOptions.FlowStyle;
import org.yaml.snakeyaml.DumperOptions.ScalarStyle;
import org.yaml.snakeyaml.composer.Composer;
import org.yaml.snakeyaml.emitter.Emitter;
import org.yaml.snakeyaml.nodes.Tag;
import org.yaml.snakeyaml.parser.ParserImpl;
import org.yaml.snakeyaml.reader.StreamReader;
import org.yaml.snakeyaml.resolver.Resolver;
import org.yaml.snakeyaml.serializer.Serializer;
public class EmitterWithCommentEnabledTest {
private String runEmitterWithCommentsEnabled(String data) throws IOException {
StringWriter output = new StringWriter();
Tag rootTag = null;
DumperOptions options = new DumperOptions();
options.setDefaultScalarStyle(ScalarStyle.PLAIN);
options.setDefaultFlowStyle(FlowStyle.BLOCK);
Serializer serializer = new Serializer(new Emitter(output, options), new Resolver(), options, rootTag);
serializer.open();
Composer composer = new Composer(new ParserImpl(new StreamReader(data), true), new Resolver());
while (composer.checkNode()) {
serializer.serialize(composer.getNode());
}
serializer.close();
return output.toString();
}
@Test
public void testEmpty() throws Exception {
String data = "";
String result = runEmitterWithCommentsEnabled(data);
assertEquals(data, result);
}
@Test
public void testWithOnlyComment() throws Exception {
String data = "# Comment\n\n";
String result = runEmitterWithCommentsEnabled(data);
assertEquals(data, result);
}
@Test
public void testCommentEndingALine() throws Exception {
String data = "" + //
"key: # Comment\n" + //
" value\n";
String result = runEmitterWithCommentsEnabled(data);
assertEquals(data, result);
}
@Test
public void testMultiLineComment() throws Exception {
String data = "" + //
"key: # Comment\n" + //
" # lines\n" + //
" value\n";
String result = runEmitterWithCommentsEnabled(data);
assertEquals(data, result);
}
@Test
public void testBlankLine() throws Exception {
String data = "" + //
"\n";
String result = runEmitterWithCommentsEnabled(data);
assertEquals(data, result);
}
@Test
public void testBlankLineComments() throws Exception {
String data = "" + //
"\n" + //
"abc: def # commment\n" + //
"\n" + //
"\n";
String result = runEmitterWithCommentsEnabled(data);
assertEquals(data, result);
}
@Test
public void testBlockScalar() throws Exception {
String data = "" + //
"abc: | # Comment\n" + //
" def\n" + //
" hij\n";
String result = runEmitterWithCommentsEnabled(data);
assertEquals(data, result);
}
@Test
public void testDirectiveLineEndComment() throws Exception {
String data = "%YAML 1.1 #Comment\n";
String result = runEmitterWithCommentsEnabled(data);
// We currently strip Directive comments
assertEquals("", result);
}
@Test
public void testSequence() throws Exception {
String data = "" + //
"# Comment\n" + //
"list: # InlineComment1\n" + //
" # Block Comment\n" + //
" - item # InlineComment2\n" + //
"# Comment\n";
String result = runEmitterWithCommentsEnabled(data);
assertEquals(data, result);
}
@Test
public void testAllComments1() throws Exception {
String data = "" + //
"# Block Comment1\n" + //
"# Block Comment2\n" + //
"key: # Inline Comment1a\n" + //
" # Inline Comment1b\n" + //
" # Block Comment3a\n" + //
" # Block Comment3b\n" + //
" value # Inline Comment2\n" + //
"# Block Comment4\n" + //
"list: # InlineComment3a\n" + //
" # InlineComment3b\n" + //
" # Block Comment5\n" + //
" - item1 # InlineComment4\n" + //
" - item2: [value2a, value2b] # InlineComment5\n" + //
" - item3: {key3a: [value3a1, value3a2], key3b: value3b} # InlineComment6\n" + //
"# Block Comment6\n" + //
"---\n" + //
"# Block Comment7\n" + //
"";
String result = runEmitterWithCommentsEnabled(data);
assertEquals(data, result);
}
@Test
public void testMultiDoc() throws Exception {
String data = "" + //
"key: value\n" + //
"# Block Comment\n" + //
"---\n" + //
"# Block Comment\n" + //
"key: value\n" + //
"";
String result = runEmitterWithCommentsEnabled(data);
assertEquals(data, result);
}
@Test
public void testAllComments2() throws Exception {
String data = "" + //
"# Block Comment1\n" + //
"# Block Comment2\n" + //
"- item1 # Inline Comment1a\n" + //
" # Inline Comment1b\n" + //
"# Block Comment3a\n" + //
"# Block Comment3b\n" + //
"- item2: value # Inline Comment2\n" + //
"# Block Comment4\n" + //
"";
String result = runEmitterWithCommentsEnabled(data);
assertEquals(data, result);
}
@Test
public void testAllComments3() throws Exception {
String data = "" + //
"# Block Comment1\n" + //
"[item1, {item2: value2}, {item3: value3}] # Inline Comment1\n" + //
"# Block Comment2\n" + //
"";
String result = runEmitterWithCommentsEnabled(data);
assertEquals(data, result);
}
}