use of com.reprezen.swagedit.core.json.references.JsonReferenceFactory in project KaiZen-OpenAPI-Editor by RepreZen.
the class JsonReferenceFactoryTest method test4.
@Test
public void test4() throws URISyntaxException {
JsonReferenceFactory factory = new JsonReferenceFactory();
JsonReference result = factory.doCreate("file://path/to/file/doc.yaml#/definitions/Foo", null);
assertEquals(URI.create("file://path/to/file/doc.yaml#/definitions/Foo"), result.getUri());
assertFalse(result.isLocal());
assertTrue(result.isAbsolute());
assertEquals(JsonPointer.compile("/definitions/Foo"), result.getPointer());
}
use of com.reprezen.swagedit.core.json.references.JsonReferenceFactory in project KaiZen-OpenAPI-Editor by RepreZen.
the class JsonReferenceFactoryTest method test3.
@Test
public void test3() throws URISyntaxException {
JsonReferenceFactory factory = new JsonReferenceFactory();
JsonReference result = factory.doCreate("../doc.yaml#/definitions/Foo", null);
assertEquals(new URI(null, "../doc.yaml", "/definitions/Foo"), result.getUri());
assertFalse(result.isLocal());
assertFalse(result.isAbsolute());
assertEquals(JsonPointer.compile("/definitions/Foo"), result.getPointer());
}
use of com.reprezen.swagedit.core.json.references.JsonReferenceFactory in project KaiZen-OpenAPI-Editor by RepreZen.
the class JsonReferenceFactoryTest method test5.
@Test
public void test5() throws URISyntaxException {
JsonReferenceFactory factory = new JsonReferenceFactory();
JsonReference result = factory.doCreate("file://path/to/file/doc.yaml#", null);
assertEquals(URI.create("file://path/to/file/doc.yaml#"), result.getUri());
assertFalse(result.isLocal());
assertTrue(result.isAbsolute());
assertEquals(JsonPointer.compile(""), result.getPointer());
}
use of com.reprezen.swagedit.core.json.references.JsonReferenceFactory in project KaiZen-OpenAPI-Editor by RepreZen.
the class JsonReferenceFactoryTest method test6.
@Test
public void test6() throws URISyntaxException {
JsonReferenceFactory factory = new JsonReferenceFactory();
JsonReference result = factory.doCreate("file://path/to/file/doc.yaml", null);
assertEquals(URI.create("file://path/to/file/doc.yaml"), result.getUri());
assertFalse(result.isLocal());
assertTrue(result.isAbsolute());
assertEquals(JsonPointer.compile(""), result.getPointer());
}
use of com.reprezen.swagedit.core.json.references.JsonReferenceFactory in project KaiZen-OpenAPI-Editor by RepreZen.
the class Mocks method mockHyperlinkDetector.
public static JsonReferenceHyperlinkDetector mockHyperlinkDetector(final URI uri, final JsonNode document) {
final JsonDocumentManager manager = mock(JsonDocumentManager.class);
final IFile file = mock(IFile.class);
when(file.exists()).thenReturn(true);
when(manager.getDocument(Mockito.any(URI.class))).thenReturn(document);
when(manager.getFile(Mockito.any(URI.class))).thenReturn(file);
return new SwaggerReferenceHyperlinkDetector() {
// allow running tests as non plugin tests
protected URI getBaseURI() {
return uri;
}
protected JsonReferenceFactory getFactory() {
return new JsonReferenceFactory() {
@Override
public JsonReference createSimpleReference(URI baseURI, AbstractNode valueNode) {
JsonReference ref = super.createSimpleReference(baseURI, valueNode);
if (ref != null) {
ref.setDocumentManager(manager);
}
return ref;
}
@Override
public JsonReference create(AbstractNode node) {
JsonReference ref = super.create(node);
ref.setDocumentManager(manager);
return ref;
}
@Override
public JsonReference create(JsonNode node) {
JsonReference ref = super.create(node);
ref.setDocumentManager(manager);
return ref;
}
};
}
};
}
Aggregations