summaryrefslogtreecommitdiffstats
path: root/sli/provider-base/src/test/java/org/onap/ccsdk/sli/core/sli/provider/base/InMemorySvcLogicStoreTest.java
blob: 5f8757aa2bd2e9fe90f44684493d9e31b2fff52b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package org.onap.ccsdk.sli.core.sli.provider.base;

import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import java.util.Properties;
import org.junit.Test;
import org.onap.ccsdk.sli.core.sli.SvcLogicGraph;

public class InMemorySvcLogicStoreTest {
    @Test
    public void simpleTest() throws Exception {
        InMemorySvcLogicStore store = new InMemorySvcLogicStore();
        store.init(new Properties());
        SvcLogicGraph graph = new SvcLogicGraph();
        String module = "TEST";
        String rpc = "NOTIFICATION";
        String mode = "sync";
        String version = "1";

        graph.setModule(module);
        graph.setRpc(rpc);
        graph.setMode(mode);
        graph.setVersion(version);

        store.store(graph);
        assertTrue(store.hasGraph(module, rpc, version, mode));
        assertNotNull(store.fetch(module, rpc, version, mode));
        store.activate(graph);
        store.activate(module, rpc, version, mode);

        store.delete(module, rpc, version, mode);
        assertNull(store.fetch(module, rpc, version, mode));
    }
}