aboutsummaryrefslogtreecommitdiffstats
path: root/mdsal-resource/provider/src/test/java/org/onap/ccsdk/sli/adaptors/resource/mdsal/TestOperationalResource.java
blob: 2e9798df12b4b7bbb386e38eaff6136792d19d97 (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
package org.onap.ccsdk.sli.adaptors.resource.mdsal;

import static org.mockito.Mockito.mock;

import org.onap.ccsdk.sli.core.sli.SvcLogicContext;

import junit.framework.TestCase;
import static org.junit.Assert.assertNotNull;

public class TestOperationalResource extends TestCase {


	public void test() throws Exception {

		RestService restService = mock(RestService.class);
		SvcLogicContext ctx = new SvcLogicContext();

		OperationalResource res = new OperationalResource(restService);

		res.delete("my-resource", null, ctx);
		res.notify("my-resource", "action", "key", ctx);
		res.query("my-resource", false, "my-select", "mykey", "pfx", null, ctx);
		res.release("my-resource", "mykey", ctx);
		res.reserve("my-resource", "my-select", "mykey", "pfx", ctx);
		res.exists("my-resource", "mykey", "pfx", ctx);
		res.isAvailable("my-resource", "mykey", "pfx", ctx);
		res.save("resource", false, false, null, null, null, ctx);
		res.update("my-resource", "mykey", null, "pfx", ctx);
		assertNotNull(restService);
	}
}