diff options
author | JulienBe <julien.bertozzi@intl.att.com> | 2020-08-25 22:20:30 +0200 |
---|---|---|
committer | Christophe Closset <christophe.closset@intl.att.com> | 2020-09-02 06:55:42 +0000 |
commit | 930ed2515529bd7ff054b083816587b6d46f56b5 (patch) | |
tree | f6609e186e4c15c6149ebc1196c89fa1175c978d /integration-tests/src/test/resources/ci/testSuites | |
parent | 6912567fc8eb045cc10868a01fb62dfbb2cd9937 (diff) |
Add sdc startup in IT
Add the UI part with the latest selenium and firefox driver in headless
Issue-ID: SDC-3232
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Change-Id: I5c5da5a26eda3042d94995f67937c105edef74c0
Signed-off-by: JulienBe <julien.bertozzi@intl.att.com>
Diffstat (limited to 'integration-tests/src/test/resources/ci/testSuites')
17 files changed, 377 insertions, 0 deletions
diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/PortMirroring.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/PortMirroring.xml new file mode 100644 index 0000000000..36c149a282 --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/PortMirroring.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> +<suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="2"> + <test name="PortMirroringTests"> + <classes> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.PortMirroring"/> + </classes> + </test> +</suite>
\ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/andreyPara.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/andreyPara.xml new file mode 100644 index 0000000000..59bb6f9db9 --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/andreyPara.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> + <suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="2" data-provider-thread-count="2"> + +<listeners> + <listener class-name="com.att.automation.common.report_portal_integration.listeners.ReportPortalListener"/> +</listeners> + + <test name="VF1"> + <classes> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.Vf"> + <methods> + <include name="updateVF"/> + </methods> + </class> + + </classes> + </test> <!-- uitests --> + + <test name="VF2"> + <classes> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.Vf"> + <methods> + <include name="addUpdateDeleteDeploymentArtifactToVfTest"/> + <include name="addPropertiesToVfcInstanceInVfTest"/> + </methods> + </class> + + </classes> + </test> <!-- uitests --> +</suite> <!-- uisuite -->
\ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/archiveRestoreSanity.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/archiveRestoreSanity.xml new file mode 100644 index 0000000000..52f8b102df --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/archiveRestoreSanity.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> +<suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="4" data-provider-thread-count="2"> + <parameter name="makeDistribution" value="true"/> + + <test name="uiSanity"> + <classes> + + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.ArchiveRestoreTest"/> + <!-- <class name="Product"/> --> + + + </classes> + </test> <!-- uitests --> +</suite> <!-- uisuite -->
\ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/arifactsSanity.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/arifactsSanity.xml new file mode 100644 index 0000000000..1c99899de3 --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/arifactsSanity.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> +<suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="4" data-provider-thread-count="2"> + <parameter name="makeDistribution" value="true"/> + + <test name="uiSanity"> + <classes> + + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.VFCArtifacts"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.VfArtifacts"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.VfDeploymentInformationalArtifacts"/> + <class name="org.onap.sdc.frontend.ci.tests.US.ImportUpdateInformationalDeploymentArtifacts"/> + <class name="org.onap.sdc.frontend.ci.tests.US.MIBsArtifactsOnResourceInstance"/> + <class name="org.onap.sdc.frontend.ci.tests.US.NewArtifactTypeGuide"/> + <class name="org.onap.sdc.frontend.ci.tests.US.RemoveRestrictionOfDeploymentArtifacts"/> + + </classes> + </test> <!-- uitests --> +</suite> <!-- uisuite -->
\ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/complexServiceSanity.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/complexServiceSanity.xml new file mode 100644 index 0000000000..1268569f7d --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/complexServiceSanity.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> +<suite name="systemtests" configfailurepolicy="continue" parallel="methods" thread-count="2" data-provider-thread-count="2"> + <parameter name="makeDistribution" value="true"/> + <test name="complexServiceSanity"> + <classes> + <class name="org.onap.sdc.frontend.ci.tests.execute.AmdocsComplexService.CreatePath"/> + </classes> + </test> <!-- uitests --> +</suite> <!-- uisuite -->
\ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/devOnboardE2EOneFileSanity.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/devOnboardE2EOneFileSanity.xml new file mode 100644 index 0000000000..4459b42e6e --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/devOnboardE2EOneFileSanity.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> +<suite name="uitests" configfailurepolicy="continue"> + <test name="uitests"> + <classes> + <!--onboard--> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.OnboardingFlowsUi"> + <methods> + <include name="onboardVNFTestSanityOneFile"/> + </methods> + </class> + </classes> + </test> <!-- uitests --> +</suite> <!-- uisuite -->
\ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/extendedSanity.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/extendedSanity.xml new file mode 100644 index 0000000000..b3b6edb65c --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/extendedSanity.xml @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> +<suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="4" data-provider-thread-count="2"> + <parameter name="makeDistribution" value="true"/> + + <test name="uiSanity"> + <classes> + + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.ToscaValidationTest"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.OnboardingFlowsUi"> + <methods> + <exclude name="onboardVNFTestSanity"/> + <exclude name="onboardVNFShotFlow"/> + <exclude name="onboardVNFTest"/> + <exclude name="onboardVNFTestSanityOneFile"/> + </methods> + </class> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.CatalogLeftPanelTest"/> + <!--<class name="Vf"/>--> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.VfAPI"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.Service"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.ImportVFCAsset"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.ImportDCAE"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.DeploymentViewTests"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.VFCArtifacts"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.VfArtifacts"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.VfDeploymentInformationalArtifacts"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.AdminUserManagment"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.PNF"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.PropertiesAssignment"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.PropertiesAssignmentUpdateFlow"> + <methods> + <exclude name="updatePropertyChangeVfiVersionTest"/> + <exclude name="deletePropertyChangeVfiVersionTest"/> + </methods> + </class> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.ArchiveRestoreTest"/> + <!-- <class name="Product"/> --> + + <class name="org.onap.sdc.frontend.ci.tests.US.ImportUpdateInformationalDeploymentArtifacts"/> + <class name="org.onap.sdc.frontend.ci.tests.US.MIBsArtifactsOnResourceInstance"/> + <class name="org.onap.sdc.frontend.ci.tests.US.NewArtifactTypeGuide"/> + <class name="org.onap.sdc.frontend.ci.tests.US.RemoveRestrictionOfDeploymentArtifacts"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.OnboardingFlowsThroughAPI"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.PortMirroring"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.Annotation"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.UpgradeServices"/> + <!-- <class name="AddComponentInstancesArtifactsInCsar"/> --> + + </classes> + </test> <!-- uitests --> +</suite> <!-- uisuite -->
\ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/fullCI.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/fullCI.xml new file mode 100644 index 0000000000..30d9b7b72e --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/fullCI.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> +<suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="2" data-provider-thread-count="2"> + <test name="uiSanity"> + <classes> + + <class name="org.openecomp.sdc.ci.tests.execute.sanity.Onboard"> + <methods> + <exclude name="onboardVNFTestSanity"/> + </methods> + </class> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.CatalogLeftPanelTest"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.Vf"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.Service"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.ImportVFCAsset"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.ImportDCAE"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.DeploymentViewTests"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.VFCArtifacts"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.VfArtifacts"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.VfDeploymentInformationalArtifacts"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.Product"/> + + <class name="org.onap.sdc.frontend.ci.tests.US.ImportUpdateInformationalDeploymentArtifacts"/> + <class name="org.onap.sdc.frontend.ci.tests.US.MIBsArtifactsOnResourceInstance"/> + <class name="org.onap.sdc.frontend.ci.tests.US.NewArtifactTypeGuide"/> + <class name="org.onap.sdc.frontend.ci.tests.US.RemoveRestrictionOfDeploymentArtifacts"/> + + + + + + </classes> + </test> <!-- uitests --> +</suite> <!-- uisuite -->
\ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/gabSanity.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/gabSanity.xml new file mode 100644 index 0000000000..efe7c2017b --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/gabSanity.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> +<suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="1" + data-provider-thread-count="1"> + + <parameter name="makeDistribution" value="false"/> + + <test name="uiSanity"> + <classes> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.GAB"/> + </classes> + </test> +</suite> diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/onapUiSanity.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/onapUiSanity.xml new file mode 100644 index 0000000000..a9d56619da --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/onapUiSanity.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> +<suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="1" + data-provider-thread-count="1"> + + <parameter name="makeDistribution" value="false"/> + + <test name="uiSanity"> + <classes> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.Vf"> + <methods> + <include name="changeInstanceNameInVfTest"/> + </methods> + </class> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.Service"> + <methods> + <include name="updateService"/> + </methods> + </class> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.OnboardingFlowsUi"> + <methods> + <include name="onapOnboardVNFflow"/> + <include name="onapOnboardVSPValidationsSanityFlow"/> + <include name="onboardPNFSoftwareInformationFlow"/> + </methods> + </class> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.GAB"/> + </classes> + </test> +</suite> diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/onboardVNFWithoutDistribution.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/onboardVNFWithoutDistribution.xml new file mode 100644 index 0000000000..54c4ea854b --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/onboardVNFWithoutDistribution.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> +<suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="1" data-provider-thread-count="1"> + <parameter name="makeDistribution" value="false"/> + <parameter name="eraseAfterTests" value="false"/> + + <test name="uiSanity"> + <classes> + <class name="org.openecomp.sdc.ci.tests.execute.sanity.Onboard"> + <methods> + <include name="onboardVNFTestSanity"/> + </methods> + </class> + </classes> + </test> <!-- uitests --> +</suite> <!-- uisuite -->
\ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/onboardingVNFs.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/onboardingVNFs.xml new file mode 100644 index 0000000000..c55da4274c --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/onboardingVNFs.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> +<suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="2" data-provider-thread-count="2"> + <parameter name="makeDistribution" value="true"/> + + <test name="uiSanity"> + <classes> + + <class name="org.openecomp.sdc.ci.tests.execute.sanity.Onboard"> + <methods> + <exclude name="onboardVNFTestSanity"/> + <exclude name="onboardVNFShotFlow"/> + <exclude name="onboardRandomVNFsTest"/> + </methods> + </class> + + + </classes> + </test> <!-- uitests --> +</suite> <!-- uisuite -->
\ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/onboardingVNFsShortFlow.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/onboardingVNFsShortFlow.xml new file mode 100644 index 0000000000..4a4628a9ed --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/onboardingVNFsShortFlow.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> +<suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="2" data-provider-thread-count="2"> + <parameter name="makeDistribution" value="true"/> + + <test name="uiSanity"> + <classes> + + <class name="org.openecomp.sdc.ci.tests.execute.sanity.Onboard"> + <methods> + <include name="onboardVNFShotFlow"/> + </methods> + </class> + + + </classes> + </test> <!-- uitests --> +</suite> <!-- uisuite -->
\ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/propertyAssignmentSanity.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/propertyAssignmentSanity.xml new file mode 100644 index 0000000000..576267f8f9 --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/propertyAssignmentSanity.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> +<suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="1" data-provider-thread-count="1"> + <parameter name="makeDistribution" value="true"/> + + <test name="uiSanity"> + <classes> + + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.PropertiesAssignment"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.PropertiesAssignmentUpdateFlow"> + <methods> + <exclude name="updatePropertyChangeVfiVersionTest"/> + <exclude name="deletePropertyChangeVfiVersionTest"/> + </methods> + </class> + + </classes> + </test> <!-- uitests --> +</suite> <!-- uisuite -->
\ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/sanity.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/sanity.xml new file mode 100644 index 0000000000..9933fbaf2b --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/sanity.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> +<suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="4" data-provider-thread-count="2"> + <test name="uiSanity"> + <classes> + + <class name="org.openecomp.sdc.ci.tests.execute.sanity.Onboard"> + <methods> + <include name="onboardVNFTestSanity"/> + </methods> + </class> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.CatalogLeftPanelTest"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.Vf"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.Service"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.ImportVFCAsset"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.ImportDCAE"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.DeploymentViewTests"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.VFCArtifacts"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.VfArtifacts"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.VfDeploymentInformationalArtifacts"/> + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.AdminUserManagment"/> + <!-- <class name="Product"/> --> + + + + + + </classes> + </test> <!-- uitests --> +</suite> <!-- uisuite -->
\ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/toscaValidationSuite.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/toscaValidationSuite.xml new file mode 100644 index 0000000000..d4fceab501 --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/toscaValidationSuite.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> +<suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="2" data-provider-thread-count="2"> + <parameter name="makeDistribution" value="false"/> + + <test name="OnbordingDataProviders"> + <classes> + + <class name="org.onap.sdc.frontend.ci.tests.dataProvider.OnbordingDataProviders"> + <methods> + <include name="OnbordingDataProviders"/> + <!-- <exclude name="onboardVNFShotFlow"/> + <exclude name="onboardRandomVNFsTest"/> --> + </methods> + </class> + <!-- <class name="org.openecomp.sdc.ci.tests.execute.sanity.Onboard"> + <methods> + <include name="onboardRandomVNFsTest"/> + </methods> + </class> --> + + </classes> + </test> <!-- uitests --> +</suite> <!-- uisuite -->
\ No newline at end of file diff --git a/integration-tests/src/test/resources/ci/testSuites/frontend/vspValidationAllFlows.xml b/integration-tests/src/test/resources/ci/testSuites/frontend/vspValidationAllFlows.xml new file mode 100644 index 0000000000..5012c0d86f --- /dev/null +++ b/integration-tests/src/test/resources/ci/testSuites/frontend/vspValidationAllFlows.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> +<suite name="uitests" configfailurepolicy="continue" parallel="methods" thread-count="1" data-provider-thread-count="1"> + + <parameter name="makeDistribution" value="false"/> + + <test name="vspValidationAllFlows"> + <classes> + + <class name="org.onap.sdc.frontend.ci.tests.execute.sanity.OnboardingFlowsUi"> + <methods> + <include name="onapOnboardVSPValidationsSanityFlow"/> + <include name="onapOnboardVSPValidationsConfigurationChangeCheck"/> + <include name="onapOnboardVSPCertificationQueryFlow"/> + <include name="onapOnboardVSPComplianceCheckFlow"/> + <include name="onapOnboardVSPComplianceCheckOperations"/> + <include name="onapOnboardVSPCertificationQueryOperations"/> + </methods> + </class> + + </classes> + </test> <!-- uitests --> +</suite> <!-- uisuite -->
\ No newline at end of file |