-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Json factory methods are very inefficient #154
Signed-off-by: Jorge Bescos Gascon <[email protected]>
- Loading branch information
Showing
3 changed files
with
242 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
136 changes: 136 additions & 0 deletions
136
tck/tck-tests/src/main/java/jakarta/jsonp/tck/api/provider/JsonProviderTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
/* | ||
* Copyright (c) 2021 Oracle and/or its affiliates. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the | ||
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
package jakarta.jsonp.tck.api.provider; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
import java.io.InputStream; | ||
import java.io.OutputStream; | ||
import java.io.Reader; | ||
import java.io.Writer; | ||
import java.util.Map; | ||
|
||
import org.junit.Test; | ||
|
||
import jakarta.json.JsonArrayBuilder; | ||
import jakarta.json.JsonBuilderFactory; | ||
import jakarta.json.JsonObjectBuilder; | ||
import jakarta.json.JsonReader; | ||
import jakarta.json.JsonReaderFactory; | ||
import jakarta.json.JsonWriter; | ||
import jakarta.json.JsonWriterFactory; | ||
import jakarta.json.spi.JsonProvider; | ||
import jakarta.json.stream.JsonGenerator; | ||
import jakarta.json.stream.JsonGeneratorFactory; | ||
import jakarta.json.stream.JsonParser; | ||
import jakarta.json.stream.JsonParserFactory; | ||
|
||
/** | ||
* Tests related to JsonProvider. | ||
* | ||
*/ | ||
public class JsonProviderTest { | ||
|
||
/** | ||
* Verifies it is possible to obtain the JsonProvider implementation from a System property. | ||
*/ | ||
@Test | ||
public void systemProperty() { | ||
System.setProperty(JsonProvider.JSONP_PROVIDER_FACTORY, DummyJsonProvider.class.getName()); | ||
JsonProvider provider = JsonProvider.provider(); | ||
assertEquals(DummyJsonProvider.class, provider.getClass()); | ||
} | ||
|
||
public static class DummyJsonProvider extends JsonProvider { | ||
|
||
@Override | ||
public JsonParser createParser(Reader reader) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public JsonParser createParser(InputStream in) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public JsonParserFactory createParserFactory(Map<String, ?> config) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public JsonGenerator createGenerator(Writer writer) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public JsonGenerator createGenerator(OutputStream out) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public JsonGeneratorFactory createGeneratorFactory(Map<String, ?> config) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public JsonReader createReader(Reader reader) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public JsonReader createReader(InputStream in) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public JsonWriter createWriter(Writer writer) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public JsonWriter createWriter(OutputStream out) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public JsonWriterFactory createWriterFactory(Map<String, ?> config) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public JsonReaderFactory createReaderFactory(Map<String, ?> config) { | ||
return null; | ||
} | ||
|
||
@Override | ||
public JsonObjectBuilder createObjectBuilder() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public JsonArrayBuilder createArrayBuilder() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public JsonBuilderFactory createBuilderFactory(Map<String, ?> config) { | ||
return null; | ||
} | ||
|
||
} | ||
} |