blob: 18be6fa488031f00ba54d4194c7d99d480a856b3 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="ciFull" configfailurepolicy="continue">
<test name="Category">
<classes>
<class name="org.onap.sdc.backend.ci.tests.execute.category.CatalogDataApiTest"/>
<class name="org.onap.sdc.backend.ci.tests.execute.category.GroupingTest">
<methods>
<exclude name="createProductGroupForNonExistingCategory"/>
<exclude name="createProductGroupForNonExistingSunCategory"/>
<exclude name="getProductCategoryHierarchySuccessFlow"/>
</methods>
</class>
<class name="org.onap.sdc.backend.ci.tests.execute.category.SubCategoriesTest">
<methods>
<exclude name="createProductSubCategoryForNonExistingCategory"/>
<exclude name="createResourceSubCategoryForNonExistingCategory"/>
<exclude name="getResourceCategoryHierarchySuccessFlow"/>
</methods>
</class>
</classes>
</test> <!-- Test -->
<test name="Distribution">
<classes>
<class
name="org.onap.sdc.backend.ci.tests.execute.distribution.AuthanticationTests"/>
<class
name="org.onap.sdc.backend.ci.tests.execute.distribution.DistributionDownloadArtifactTest">
<methods>
<exclude name="downloadServiceArtifact_ServiceVersionNotFound"/>
</methods>
</class>
</classes>
</test> <!-- Test -->
<test name="General">
<classes>
<class name="org.onap.sdc.backend.ci.tests.execute.general.FeProxyTest"/>
<class name="org.onap.sdc.backend.ci.tests.execute.general.UuidTest"/>
</classes>
</test>
<test name="Resource">
<classes>
<class name="org.onap.sdc.backend.ci.tests.execute.resource.SimultaneousApiTest"/>
<class name="org.onap.sdc.backend.ci.tests.execute.resource.UpdateResourceMetadataTest">
<methods>
<exclude name="UpdateResourceCategory_negativeFlow"/>
</methods>
</class>
<class name="org.onap.sdc.backend.ci.tests.execute.resource.VFResourceInstanceNameCRUD"/>
<class name="org.onap.sdc.backend.ci.tests.execute.resource.ResourceApiTest"/>
<class
name="org.onap.sdc.backend.ci.tests.execute.resource.ValidateExtendedVfData"/>
</classes>
</test>
<test name="Product">
<classes>
<class
name="org.onap.sdc.backend.ci.tests.execute.product.ProductUndoCheckoutTest">
<methods>
<exclude name="undoCheckOutNotExist"/>
</methods>
</class>
<class
name="org.onap.sdc.backend.ci.tests.execute.product.ProductGetFollowedTest"/>
<class
name="org.onap.sdc.backend.ci.tests.execute.product.ProductToscaYamlGenerationTest"/>
<class name="org.onap.sdc.backend.ci.tests.execute.product.ProductCheckinTest">
<methods>
<exclude name="checkInProductNotExist"/>
</methods>
</class>
<class name="org.onap.sdc.backend.ci.tests.execute.product.ProductCheckoutTest"/>
<class
name="org.onap.sdc.backend.ci.tests.execute.product.ProductCreateWithValidationsTest">
<methods>
<exclude name="createProductDescriptionRemoveSpacesFromBeginning"/>
<exclude name="createProductDescriptionRemoveSpacesFromTheEnd"/>
<exclude name="createProductDescriptionValidCharacters01"/>
<exclude name="createProductDescriptionValidCharacters02"/>
</methods>
</class>
</classes>
</test>
<test name="Service">
<classes>
<class name="org.onap.sdc.backend.ci.tests.execute.service.GetAllServiceVersions"/>
</classes>
</test>
<test name="Artifacts">
<classes>
<class name="org.onap.sdc.backend.ci.tests.execute.artifacts.DownloadComponentArt"/>
<class name="org.onap.sdc.backend.ci.tests.execute.artifacts.ValidateHeatArtFieldsTypes"/>
<class name="org.onap.sdc.backend.ci.tests.execute.artifacts.PlaceHolderValidations"/>
</classes>
</test>
</suite>
|