Package com.jayway.jsonpath

Source Code of com.jayway.jsonpath.EscapeTest

package com.jayway.jsonpath;

import net.minidev.json.JSONStyle;
import net.minidev.json.JSONValue;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;

import static org.assertj.core.api.Assertions.assertThat;

public class EscapeTest extends BaseTest {

    private static JSONStyle style;

    @BeforeClass
    public static void before(){
        style = JSONValue.COMPRESSION;
        JSONValue.COMPRESSION = JSONStyle.LT_COMPRESS;
    }

    @AfterClass
    public static void after(){
        JSONValue.COMPRESSION = style;
    }

    @Test
    public void urls_are_not_escaped() {

        JSONStyle orig = JSONValue.COMPRESSION;



        String json = "[" +
                "\"https://a/b/1\"," +
                "\"https://a/b/2\"," +
                "\"https://a/b/3\"" +
                "]";

        String resAsString = JsonPath.using(JSON_SMART_CONFIGURATION).parse(json).read("$").toString();

        assertThat(resAsString).contains("https://a/b/1");

    }
}
TOP

Related Classes of com.jayway.jsonpath.EscapeTest

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.