[VVP] add decorators to test cases
[vvp/validation-scripts.git] / ice_validator / tests / test_unique_resources_across_all_templates.py
index 13b4121..2d05147 100644 (file)
 #
 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
 #
-
+from .helpers import validates
 import yaml
+import collections
 
 
+@validates('R-16447')
 def test_unique_resources_across_all_yaml_files(yaml_files):
     '''
     Check that all instance names are unique
@@ -54,4 +56,8 @@ def test_unique_resources_across_all_yaml_files(yaml_files):
             continue
         resources_ids.extend(yml['resources'].keys())
 
-    assert len(resources_ids) == len(set(resources_ids))
+    dup_ids = [item
+               for item, count in collections.Counter(resources_ids).items()
+               if count > 1]
+
+    assert not dup_ids