com.inrupt.client.test.JsonServices Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of inrupt-client-test Show documentation
Show all versions of inrupt-client-test Show documentation
Test cases shared across modules.
The newest version!
/*
* Copyright Inrupt Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
* Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package com.inrupt.client.test;
import static org.junit.jupiter.api.Assertions.*;
import com.inrupt.client.spi.JsonService;
import com.inrupt.client.spi.ServiceProvider;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.file.Files;
import java.util.List;
import org.junit.jupiter.api.Test;
/**
* A {@code JsonService} class tester.
*/
public class JsonServices {
private static final JsonService processor = ServiceProvider.getJsonService();
@Test
void parseJsonInput() throws IOException {
try (final var input = JsonServices.class.getResourceAsStream("/com/inrupt/client/test/json/myobject.json")) {
final var obj = processor.fromJson(input, MyObject.class);
assertEquals("Quinn", obj.name);
assertEquals(25, obj.age);
assertEquals(List.of("Dog", "Goldfish"), obj.pets);
}
}
@Test
void serializeJsonObject() throws IOException {
final var obj = new MyObject();
obj.name = "Quinn";
obj.age = 25;
obj.pets = List.of("Dog", "Goldfish");
try (final var output = new ByteArrayOutputStream()) {
processor.toJson(obj, output);
final var input = new ByteArrayInputStream(output.toByteArray());
final var roundtrip = processor.fromJson(input, MyObject.class);
assertEquals(obj.name, roundtrip.name);
assertEquals(obj.age, roundtrip.age);
assertEquals(obj.pets, roundtrip.pets);
}
}
@Test
void serializeToClosedOutputStream() throws IOException {
final var obj = new MyObject();
obj.name = "Quinn";
obj.age = 25;
obj.pets = List.of("Dog", "Goldfish");
final var tmp = Files.createTempFile(null, null).toFile();
try (final var output = new FileOutputStream(tmp)) {
output.close();
assertThrows(IOException.class, () -> processor.toJson(obj, output));
}
}
@Test
void parseInvalidJson() throws IOException {
try (final var input = JsonServices.class.getResourceAsStream("/com/inrupt/client/test/json/invalid.json")) {
assertThrows(IOException.class, () -> processor.fromJson(input, MyObject.class));
}
}
@Test
void parseMalformedJson() throws IOException {
try (final var input = JsonServices.class.getResourceAsStream("/com/inrupt/client/test/json/malformed.json")) {
assertThrows(IOException.class, () -> processor.fromJson(input, MyObject.class));
}
}
/**
* An example test class.
*/
public static class MyObject {
public String name;
public List pets;
public Integer age;
}
}