blob: 2b6fbbd3b85c9c6f04ed5c41adacd3ac5eb86f74 [file] [log] [blame]
/**
* Copyright (c) 2008-2011, 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.issues.issue137;
import junit.framework.TestCase;
import org.yaml.snakeyaml.Yaml;
/**
* http://java.sun.com/developer/technicalArticles/Intl/Supplementary/
*/
public class SupplementaryCharactersTest extends TestCase {
public void testSupplementaryCharacter() {
Yaml yaml = new Yaml();
String parsed = (String) yaml.load("\"\\U0001f648\"");
assertEquals("\ud83d\ude48", parsed);
// System.out.println(data);
}
public void testBasicMultilingualPlane() {
Yaml yaml = new Yaml();
String parsed = (String) yaml.load("\"\\U00000041\"");
assertEquals("A", parsed);
}
public void testDumpSupplementaryCharacter() {
Yaml yaml = new Yaml();
String output = yaml.dump("\ud83d\ude48");
assertEquals("\"\ud83d\ude48\"\n", output);
}
public void testLoadSupplementaryCharacter() {
try {
new Yaml().load("\"\ud83d\ude48\"\n");
fail("Are Supplementary Characters printable ?");
} catch (Exception e) {
assertEquals("special characters are not allowed", e.getMessage());
}
}
}