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

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);
	}
}