# or at 'http://www.apache.org/licenses/LICENSE-2.0'.
 
 import api.utilities as utilities
-import api.test_models as test_models
+import api.test_unit_models as test_models
 import api.test_policies as test_policies
 import api.test_perimeter as test_perimeter
 import api.meta_data_test as test_categories
 
 # or at 'http://www.apache.org/licenses/LICENSE-2.0'.
 
 import api.utilities as utilities
-import api.test_models as test_models
+import api.test_unit_models as test_models
 import api.test_policies as test_policies
 import api.test_perimeter as test_perimeter
 import api.meta_data_test as test_categories
 
+# Copyright 2018 Open Platform for NFV Project, Inc. and its contributors
+# This software is distributed under the terms and conditions of the 'Apache-2.0'
+# license which can be found in the file 'LICENSE' in this package distribution
+# or at 'http://www.apache.org/licenses/LICENSE-2.0'.
+
 import json
 import api.utilities as utilities
+from uuid import uuid4
 
 
 def get_policies(client):
 
 def test_add_policies():
     client = utilities.register_client()
-    req, policies = add_policies(client, "testuser")
+    policy_name = "testuser" + uuid4().hex
+    req, policies = add_policies(client, policy_name)
     assert req.status_code == 200
     assert isinstance(policies, dict)
     value = list(policies["policies"].values())[0]
     assert "policies" in policies
-    assert value['name'] == "testuser"
-    assert value["description"] == "description of {}".format("testuser")
+    assert value['name'] == policy_name
+    assert value["description"] == "description of {}".format(policy_name)
     assert value["model_id"] == "modelId"
     assert value["genre"] == "genre"
 
 
+# Copyright 2018 Open Platform for NFV Project, Inc. and its contributors
+# This software is distributed under the terms and conditions of the 'Apache-2.0'
+# license which can be found in the file 'LICENSE' in this package distribution
+# or at 'http://www.apache.org/licenses/LICENSE-2.0'.
+
 import json
 import api.utilities as utilities