Package argo.format

Source Code of argo.format.PrettyJsonFormatterTest

/*
* Copyright 2013 Mark Slater
*
* 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 argo.format;

import argo.jdom.JdomParser;
import argo.jdom.JsonNode;
import argo.jdom.JsonRootNode;
import argo.jdom.JsonStringNode;
import org.hamcrest.Matchers;
import org.junit.Test;

import java.io.File;
import java.util.Collections;
import java.util.HashMap;

import static argo.format.JsonStringResultBuilder.aJsonStringResultBuilder;
import static argo.format.PrettyJsonFormatter.fieldOrderNormalisingPrettyJsonFormatter;
import static argo.format.PrettyJsonFormatter.fieldOrderPreservingPrettyJsonFormatter;
import static argo.jdom.JsonNodeFactories.*;
import static java.util.Arrays.asList;
import static org.apache.commons.io.FileUtils.readFileToString;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.junit.Assert.assertThat;

public final class PrettyJsonFormatterTest {
    @Test
    public void formatsAJsonObject() throws Exception {
        assertThat(fieldOrderPreservingPrettyJsonFormatter().format(object(new HashMap<JsonStringNode, JsonNode>() {{
            put(string("Hello"), string("World"));
            put(string("Foo"), string("Bar"));
        }})), equalTo(
                aJsonStringResultBuilder()
                        .printLine("{")
                        .printLine("\t\"Foo\": \"Bar\",")
                        .printLine("\t\"Hello\": \"World\"")
                        .print("}")
                        .build()
        ));
    }

    @Test
    public void formatsAnEmptyJsonObject() throws Exception {
        assertThat(fieldOrderPreservingPrettyJsonFormatter().format(object(new HashMap<JsonStringNode, JsonNode>() {{
            put(string("Hello"), object(new HashMap<JsonStringNode, JsonNode>()));
        }})), equalTo(
                aJsonStringResultBuilder()
                        .printLine("{")
                        .printLine("\t\"Hello\": {}")
                        .print("}")
                        .build()
        )
        );
    }

    @Test
    public void formatsAJsonArray() throws Exception {
        assertThat(fieldOrderPreservingPrettyJsonFormatter().format(array(asList(
                string("BobBob")
                , number("23")
        ))), equalTo(
                aJsonStringResultBuilder()
                        .printLine("[")
                        .printLine("\t\"BobBob\",")
                        .printLine("\t23")
                        .print("]")
                        .build()
        )
        );
    }

    @Test
    public void formatsAnEmptyJsonArray() throws Exception {
        assertThat(fieldOrderPreservingPrettyJsonFormatter().format(array(Collections.<JsonNode>emptyList())), equalTo(
                aJsonStringResultBuilder()
                        .print("[]")
                        .build()
        )
        );
    }

    @Test
    public void formatsAJsonStringWithEscapedCharacters() throws Exception {
        assertThat(fieldOrderPreservingPrettyJsonFormatter().format(array(asList(
                (JsonNode) string("\" \\ \b \f \n \r \t")))), equalTo(
                aJsonStringResultBuilder()
                        .printLine("[")
                        .printLine("\t\"\\\" \\\\ \\b \\f \\n \\r \\t\"")
                        .print("]")
                        .build()
        )
        );
    }

    @Test
    public void formatsAStringWithinAString() throws Exception {
        assertThat(fieldOrderPreservingPrettyJsonFormatter().format(array(asList(
                (JsonNode) string("\"\\\"A String\\\" within a String\"")))), equalTo(
                aJsonStringResultBuilder()
                        .printLine("[")
                        .printLine("\t\"\\\"\\\\\\\"A String\\\\\\\" within a String\\\"\"")
                        .print("]")
                        .build()
        ));
    }

    @Test
    public void testRoundTrip() throws Exception {
        final File longJsonExample = new File(this.getClass().getResource("Sample.json").getFile());
        final String json = readFileToString(longJsonExample);
        final JdomParser jdomParser = new JdomParser();
        final JsonRootNode node = jdomParser.parse(json);
        final JsonFormatter jsonFormatter = fieldOrderPreservingPrettyJsonFormatter();
        final String expected = jsonFormatter.format(node);
        assertThat(jdomParser.parse(expected), Matchers.equalTo(node));
    }

    @Test
    public void orderPreservingFormatterPreservesFieldOrder() throws Exception {
        assertThat(fieldOrderPreservingPrettyJsonFormatter().format(object(field("b", string("A String")), field("a", string("A String")))), equalTo(
                aJsonStringResultBuilder()
                        .printLine("{")
                        .printLine("\t\"b\": \"A String\",")
                        .printLine("\t\"a\": \"A String\"")
                        .print("}")
                        .build()
        ));
    }

    @Test
    public void orderNormalisingFormatterNormalisesFieldOrder() throws Exception {
        assertThat(fieldOrderNormalisingPrettyJsonFormatter().format(object(field("b", string("A String")), field("a", string("A String")))), equalTo(
                aJsonStringResultBuilder()
                        .printLine("{")
                        .printLine("\t\"a\": \"A String\",")
                        .printLine("\t\"b\": \"A String\"")
                        .print("}")
                        .build()
        ));
    }

    @Test
    public void formatsEcmaSurrogatePairExamples() throws Exception {
        assertThat(fieldOrderPreservingPrettyJsonFormatter().format(array(asList(
                (JsonNode) string("\ud834\udd1e")))), equalTo(
                aJsonStringResultBuilder()
                        .printLine("[")
                        .printLine("\t\"\ud834\udd1e\"")
                        .print("]")
                        .build()
        )
        );
    }

}
TOP

Related Classes of argo.format.PrettyJsonFormatterTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.