【问题标题】:Testing with GraphAware Timetree使用 GraphAware Timetree 进行测试
【发布时间】:2016-11-06 08:24:25
【问题描述】:

我已经开始为 neo4j 使用 GraphAware 时间树,到目前为止效果还不错。现在我正在尝试研究如何对使用 neo4j 时间树的代码进行单元/集成测试。

我已经整理了一些代码如下......但我仍然收到消息:

org.neo4j.ogm.exception.CypherException: Error executing Cypher "Neo.ClientError.Procedure.ProcedureNotFound"; Code: Neo.ClientError.Procedure.ProcedureNotFound; Description: There is no procedure with the name `ga.timetree.events.attach` registered for this database instance. Please ensure you've spelled the procedure name correctly and that the procedure is properly deployed.

我在正确的轨道上吗?

package myproject.core;

import java.util.ArrayList;
import java.util.HashMap;

import javax.inject.Inject;

import org.junit.After;
import org.junit.runner.RunWith;
import org.neo4j.graphdb.DynamicLabel;
import org.neo4j.graphdb.GraphDatabaseService;
import org.neo4j.graphdb.Node;
import org.neo4j.ogm.session.Session;
import org.neo4j.ogm.session.SessionFactory;
import org.neo4j.ogm.testutil.MultiDriverTestClass;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.neo4j.template.Neo4jOperations;
import org.springframework.test.context.junit4.SpringRunner;

import com.graphaware.common.policy.NodeInclusionPolicy;
import com.graphaware.module.timetree.module.TimeTreeConfiguration;
import com.graphaware.module.timetree.module.TimeTreeModule;
import com.graphaware.runtime.GraphAwareRuntime;
import com.graphaware.runtime.GraphAwareRuntimeFactory;

import myproject.core.context.TestPersistenceContext;

@RunWith(SpringRunner.class)
@SpringBootTest(classes = TestPersistenceContext.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class AbstractTest extends MultiDriverTestClass {

    @Inject
    private Neo4jOperations neo4jOperations;

    public AbstractTest() {
        new SessionFactory("myproject.model.pojos").openSession();

        TimeTreeConfiguration timeTreeConfiguration = TimeTreeConfiguration.defaultConfiguration();
        TimeTreeModule timeTreeModule = new TimeTreeModule("TT.1", timeTreeConfiguration, super.getGraphDatabaseService());

        GraphAwareRuntime runtime = GraphAwareRuntimeFactory.createRuntime(super.getGraphDatabaseService());
        runtime.registerModule(timeTreeModule);
        runtime.start();
    }

    @After
    public void clearDatabase() {
        neo4jOperations.query("match (n) detach delete n;", new HashMap<>());
        neo4jOperations.clear();

    }

}

【问题讨论】:

    标签: neo4j spring-data-neo4j-4 graphaware


    【解决方案1】:

    请将您的 AbstractTest() 构造函数更改为如下所示:

    public AbstractTest() {
        new SessionFactory("myproject.model.pojos").openSession();
    
        TimeTreeConfiguration timeTreeConfiguration = TimeTreeConfiguration.defaultConfiguration();
        TimeTreeModule timeTreeModule = new TimeTreeModule("TT.1", timeTreeConfiguration, super.getGraphDatabaseService());
    
        TimeTreeProcedures.register(super.getGraphDatabaseService());
    
        GraphAwareRuntime runtime = GraphAwareRuntimeFactory.createRuntime(super.getGraphDatabaseService());
        runtime.registerModule(timeTreeModule);
        runtime.start();
    }
    

    注意添加的行:TimeTreeProcedures.register(super.getGraphDatabaseService());

    【讨论】:

    • 像魅力一样工作!谢谢!
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2021-04-03
    • 1970-01-01
    • 2013-02-05
    • 2011-10-10
    • 2023-03-23
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多