aboutsummaryrefslogtreecommitdiffstats
path: root/robot/testsuites/vnf-orchestration.robot
blob: 1efe02e40b84d6ff8d85f5aaa93d98eb2e65d6f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
*** Settings ***
Documentation   Executes the VNF Orchestration Test cases including setup and teardown
...

Resource         ../resources/test_templates/vnf_orchestration_test_template.robot

Test Template         Orchestrate VNF Template

*** Variables ***
${API_TYPE}   VNF_API


*** Test Cases ***              CUSTOMER           SERVICE   PRODUCT_FAMILY
Instantiate Virtual DNS             ETE_Customer    vLB      vLB
    [Tags]    instantiateVNFAPI
Instantiate Virtual Volume Group    ETE_Customer    vVG      vVG
    [Tags]    instantiateVNFAPI
Instantiate Virtual FirewallCL      ETE_Customer    vFWCL      vFWCL
    [Tags]    instantiateVNFAPI
Instantiate Virtual DNS No Delete             ETE_Customer    vLB      vLB          KEEP
    [Tags]    instantiateNoDeleteVNFAPI
Instantiate Virtual FirewallCL No Delete      ETE_Customer    vFWCL      vFWCL         KEEP
    [Tags]    instantiateNoDeleteVNFAPI
/span> xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.openecomp.policy.common</groupId> <artifactId>integrity-monitor</artifactId> <packaging>jar</packaging> <parent> <groupId>org.openecomp.policy.common</groupId> <artifactId>common-modules</artifactId> <version>1.0.0-SNAPSHOT</version> </parent> <name>Integrity Monitor</name> <dependencies> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.persistence</groupId> <artifactId>javax.persistence</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>org.eclipse.persistence</groupId> <artifactId>eclipselink</artifactId> <version>2.6.0</version> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>[1.4.186,)</version> </dependency> <dependency> <groupId>org.openecomp.policy.common</groupId> <artifactId>ECOMP-Logging</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. --> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.jacoco</groupId> <artifactId> jacoco-maven-plugin </artifactId> <versionRange> [0.7.1.201405082137,) </versionRange> <goals> <goal>prepare-agent</goal> </goals> </pluginExecutionFilter> <action> <ignore></ignore> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>