summaryrefslogtreecommitdiffstats
path: root/robotframework-onap/tests/ONAPLibrary/UUIDKeywordsTest.py
diff options
context:
space:
mode:
authorDR695H <dr695h@att.com>2019-07-18 18:08:56 -0400
committerDR695H <dr695h@att.com>2019-07-18 18:08:56 -0400
commit1fade32a69abdd33e9cc9449fd214d3f5b1e4677 (patch)
treed6839a851cc78f1c67e1022a8983db38f7691158 /robotframework-onap/tests/ONAPLibrary/UUIDKeywordsTest.py
parenteb594307f4350b686263cae2355dcbb910ec9403 (diff)
fix uuid reimplemntation
Change-Id: I2a3fea06b026a450b3c334706c386424e00f07e0 Issue-ID: TEST-174 Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/tests/ONAPLibrary/UUIDKeywordsTest.py')
-rw-r--r--robotframework-onap/tests/ONAPLibrary/UUIDKeywordsTest.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/robotframework-onap/tests/ONAPLibrary/UUIDKeywordsTest.py b/robotframework-onap/tests/ONAPLibrary/UUIDKeywordsTest.py
new file mode 100644
index 0000000..ae8e86a
--- /dev/null
+++ b/robotframework-onap/tests/ONAPLibrary/UUIDKeywordsTest.py
@@ -0,0 +1,32 @@
+# Copyright 2019 AT&T Intellectual Property. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+from unittest import TestCase
+
+from ONAPLibrary.UUIDKeywords import UUIDKeywords
+
+
+class UUIDKeywordsTest(TestCase):
+
+ def test_uuid4(self):
+ uuid = UUIDKeywords()
+ self.assertGreater(len(uuid.generate_uuid4()), 0)
+
+ def test_uuid1(self):
+ uuid = UUIDKeywords()
+ self.assertGreater(len(uuid.generate_uuid1()), 0)
+
+ def test_timestamp(self):
+ uuid = UUIDKeywords()
+ self.assertGreater(uuid.generate_timestamp(), 0)