use of org.neo4j.kernel.api.proc.CallableProcedure in project neo4j by neo4j.
the class ProcedureJarLoaderTest method shouldLoadProcedureWithArgumentFromJar.
@Test
public void shouldLoadProcedureWithArgumentFromJar() throws Throwable {
// Given
URL jar = createJarFor(ClassWithProcedureWithArgument.class);
// When
List<CallableProcedure> procedures = jarloader.loadProcedures(jar).procedures();
// Then
List<ProcedureSignature> signatures = procedures.stream().map(CallableProcedure::signature).collect(toList());
assertThat(signatures, contains(procedureSignature("org", "neo4j", "kernel", "impl", "proc", "myProcedure").in("value", NTInteger).out("someNumber", NTInteger).build()));
assertThat(asList(procedures.get(0).apply(new BasicContext(), new Object[] { 42L })), contains(IsEqual.equalTo(new Object[] { 42L })));
}
use of org.neo4j.kernel.api.proc.CallableProcedure in project neo4j by neo4j.
the class ReflectiveProcedureTest method shouldSupportProcedureDeprecation.
@Test
public void shouldSupportProcedureDeprecation() throws Throwable {
// Given
Log log = mock(Log.class);
ReflectiveProcedureCompiler procedureCompiler = new ReflectiveProcedureCompiler(new TypeMappers(), components, components, log, ProcedureConfig.DEFAULT);
// When
List<CallableProcedure> procs = procedureCompiler.compileProcedure(ProcedureWithDeprecation.class, Optional.empty(), true);
// Then
verify(log).warn("Use of @Procedure(deprecatedBy) without @Deprecated in badProc");
verifyNoMoreInteractions(log);
for (CallableProcedure proc : procs) {
String name = proc.signature().name().name();
proc.apply(new BasicContext(), new Object[0]);
switch(name) {
case "newProc":
assertFalse("Should not be deprecated", proc.signature().deprecated().isPresent());
break;
case "oldProc":
case "badProc":
assertTrue("Should be deprecated", proc.signature().deprecated().isPresent());
assertThat(proc.signature().deprecated().get(), equalTo("newProc"));
break;
default:
fail("Unexpected procedure: " + name);
}
}
}
use of org.neo4j.kernel.api.proc.CallableProcedure in project neo4j by neo4j.
the class ReflectiveProcedureTest method shouldAllowOverridingProcedureName.
@Test
public void shouldAllowOverridingProcedureName() throws Throwable {
// When
CallableProcedure proc = compile(ProcedureWithOverriddenName.class).get(0);
// Then
assertEquals("org.mystuff.thisisActuallyTheName", proc.signature().name().toString());
}
use of org.neo4j.kernel.api.proc.CallableProcedure in project neo4j by neo4j.
the class ReflectiveProcedureTest method shouldNotLoadAnyProcedureIfConfigIsEmpty.
@Test
public void shouldNotLoadAnyProcedureIfConfigIsEmpty() throws Throwable {
// Given
ProcedureConfig config = new ProcedureConfig(Config.defaults().with(genericMap(procedure_whitelist.name(), "")));
Log log = mock(Log.class);
ReflectiveProcedureCompiler procedureCompiler = new ReflectiveProcedureCompiler(new TypeMappers(), components, components, log, config);
// When
List<CallableProcedure> proc = procedureCompiler.compileProcedure(SingleReadOnlyProcedure.class, Optional.empty(), false);
// Then
verify(log).warn("The procedure 'org.neo4j.kernel.impl.proc.listCoolPeople' is not on the whitelist and won't be loaded.");
assertThat(proc.isEmpty(), is(true));
}
use of org.neo4j.kernel.api.proc.CallableProcedure in project neo4j by neo4j.
the class ReflectiveProcedureTest method shouldIgnoreWhiteListingIfFullAccess.
@Test
public void shouldIgnoreWhiteListingIfFullAccess() throws Throwable {
// Given
ProcedureConfig config = new ProcedureConfig(Config.defaults().with(genericMap(procedure_whitelist.name(), "empty")));
Log log = mock(Log.class);
ReflectiveProcedureCompiler procedureCompiler = new ReflectiveProcedureCompiler(new TypeMappers(), components, components, log, config);
// When
CallableProcedure proc = procedureCompiler.compileProcedure(SingleReadOnlyProcedure.class, Optional.empty(), true).get(0);
// Then
RawIterator<Object[], ProcedureException> result = proc.apply(new BasicContext(), new Object[0]);
assertEquals(result.next()[0], "Bonnie");
}
Aggregations