test/jdk/javax/management/remote/rest/json/JsonParserTest.java
branchjmx-rest-api
changeset 56004 da55d1429860
parent 56003 4f7f76f6be2f
child 56005 90cff2ac77b8
--- a/test/jdk/javax/management/remote/rest/json/JsonParserTest.java	Tue Jan 02 13:20:18 2018 +0530
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,49 +0,0 @@
-package json;
-
-import com.oracle.jmx.remote.rest.json.JSONElement;
-import com.oracle.jmx.remote.rest.json.parser.JSONParser;
-import com.oracle.jmx.remote.rest.json.parser.ParseException;
-import com.oracle.jmx.remote.rest.json.parser.TokenMgrError;
-import org.testng.annotations.DataProvider;
-import org.testng.annotations.Test;
-
-@Test
-public class JsonParserTest {
-
-    @DataProvider(name = "getOkStrings")
-    Object[][] getOkStrings() {
-        Object[][] output = new Object[5][1];
-        output[0][0] = "\"ac" + "\nde\\bf\"";
-        output[1][0] = "\"abcd\\\"cdef\"";
-        output[2][0] = "\"abcd\\\\cdef\"";
-        output[3][0] = "\"abc\\rdcde\\f\"";
-        output[4][0] = "\"\"";
-        return output;
-    }
-
-    @DataProvider(name = "getKoStrings")
-    Object[][] getKoStrings() {
-        Object[][] output = new Object[3][1];
-        output[0][0] = "\"a\\ef\"";
-        output[1][0] = "\"abg\"cde\"";
-        output[2][0] = "\"a\\\bgcde\"";
-        return output;
-    }
-
-    @Test(dataProvider = "getOkStrings")
-    public void testOk(String input) throws ParseException {
-        JSONParser parser = new JSONParser(input);
-        System.out.println("Input: " + input + ", Output: " +parser.parse().toJsonString());
-    }
-
-    @Test(dataProvider = "getKoStrings")
-    public void testKo(String input) {
-        try{
-            JSONParser parser = new JSONParser(input);
-            JSONElement parse = parser.parse();
-            System.out.println("Input: " + input + ", Output: " + parse.toJsonString());
-            throw new RuntimeException("FAILED");
-        } catch (ParseException ex) {
-        } catch (TokenMgrError error) {}
-    }
-}