Add dist mode
[vnfsdk/refrepo.git] / vnfmarket-be / vnf-sdk-marketplace / src / main / java / org / onap / vtp / manager / Manager.java
1 /**
2  * Copyright 2021 Huawei Technologies Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.vtp.manager;
17
18 import com.google.gson.JsonElement;
19 import org.onap.vtp.error.VTPError;
20 import org.onap.vtp.manager.model.Tester;
21 import org.onap.vtp.scenario.model.VTPTestCase;
22 import org.onap.vtp.scenario.model.VTPTestScenario;
23 import org.onap.vtp.scenario.model.VTPTestSuite;
24 import org.open.infc.grpc.Result;
25
26 import java.util.List;
27
28 public interface Manager {
29     Tester httpRequestTestcase(String testSuite, String scenario, String testCase);
30     void postDataToManager(String executionId, String id, String testerId);
31     JsonElement getExecutionJson(int count, int index);
32     Result getExecutionDetails(String vtpTestCenterIp, int vtpTestCenterPort, List<String> args, int timeout) throws VTPError.VTPException;
33     Tester httpRequestExecutions(String executionId);
34     VTPTestSuite.VTPTestSuiteList getSuiteListFromManager(String url);
35     VTPTestScenario.VTPTestScenarioList getScenarioListFromManager(String url);
36     VTPTestCase.VTPTestCaseList getTestCaseListFromManager(String url);
37 }