Fix for Penetration test _ Session and cookie management
[vid.git] / vid-automation / TestNg-dev.xml
1 <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
2
3 <!-- This file is only for dev propose and has no meaning in pipeline -->
4
5 <suite verbose="1" name="VID UI Tests" annotations="JDK">
6     <listeners>
7         <listener class-name="vid.automation.test.infra.SkipTestsTestngTransformer"/>
8     </listeners>
9     <test name="test">
10         <groups>
11             <run>
12                 <!-- These tests are legacy tests that should be converted from
13                 working against IST to working against vid's 3rd party simulator-->
14                 <exclude name="shouldBeMigratedToWorkWithSimulator"/>
15
16                 <!-- These tests require the settings in asdc.properties to be like
17                 asdc.client.type=LOCAL so cannot run on pipeline-->
18                 <exclude name="worksOnlyWithLocalASDC"/>
19
20                 <!-- these tests call to MaintenanceController which is restricted to
21                 localhost, so it can not run on jenkins pipeline -->
22                 <exclude name="worksOnlyWithLocalhostVID"/>
23
24                 <!-- angular2 is not supported in CI yet. These tests can run only on
25                 developers environment -->
26                 <exclude name="Angular2Tests"/>
27                 <!-- tests and features that are still under development but are pushed to develop -->
28                 <exclude name="underDevelopment"/>
29
30             </run>
31         </groups>
32         <!--<packages>-->
33             <!--<package name="vid.automation.test.test.*"/>-->
34         <!--</packages>-->
35
36         <classes>
37             <!-- in order to test specific test class replace the following class name-->
38             <class name="vid.automation.test.test.NewServiceInstanceTest"/>
39         </classes>
40     </test>
41 </suite>