diff options
author | DR695H <dr695h@att.com> | 2019-07-19 14:29:09 -0400 |
---|---|---|
committer | DR695H <dr695h@att.com> | 2019-07-19 14:29:09 -0400 |
commit | 601ead6cc5e04f276d57d118e1d94d1366278a24 (patch) | |
tree | c62f882a6d62f1138adca38913d9c1b619c7c331 /robotframework-onap/ONAPLibrary | |
parent | 1fade32a69abdd33e9cc9449fd214d3f5b1e4677 (diff) |
moving all libs to global scope
Issue-ID: TEST-174
Change-Id: Ieae316661540206eb1e74126f8b8859e373e3786
Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/ONAPLibrary')
-rw-r--r-- | robotframework-onap/ONAPLibrary/JSON.py | 2 | ||||
-rw-r--r-- | robotframework-onap/ONAPLibrary/Kafka.py | 2 | ||||
-rw-r--r-- | robotframework-onap/ONAPLibrary/MUSIC.py | 2 | ||||
-rw-r--r-- | robotframework-onap/ONAPLibrary/OOF.py | 2 | ||||
-rw-r--r-- | robotframework-onap/ONAPLibrary/Openstack.py | 2 | ||||
-rw-r--r-- | robotframework-onap/ONAPLibrary/PreloadData.py | 2 | ||||
-rw-r--r-- | robotframework-onap/ONAPLibrary/Protobuf.py | 2 | ||||
-rw-r--r-- | robotframework-onap/ONAPLibrary/SDC.py | 2 | ||||
-rw-r--r-- | robotframework-onap/ONAPLibrary/SDNC.py | 2 | ||||
-rw-r--r-- | robotframework-onap/ONAPLibrary/SO.py | 2 | ||||
-rw-r--r-- | robotframework-onap/ONAPLibrary/ServiceMapping.py | 2 | ||||
-rw-r--r-- | robotframework-onap/ONAPLibrary/Templating.py | 2 | ||||
-rw-r--r-- | robotframework-onap/ONAPLibrary/Utilities.py | 2 |
13 files changed, 26 insertions, 0 deletions
diff --git a/robotframework-onap/ONAPLibrary/JSON.py b/robotframework-onap/ONAPLibrary/JSON.py index 1cb67dd..b3ef653 100644 --- a/robotframework-onap/ONAPLibrary/JSON.py +++ b/robotframework-onap/ONAPLibrary/JSON.py @@ -21,6 +21,8 @@ class JSON(HybridCore): """JSON is common resource for simple json helper keywords. """ + ROBOT_LIBRARY_SCOPE = "GLOBAL" + def __init__(self): self.keyword_implementors = [ JSONKeywords(), diff --git a/robotframework-onap/ONAPLibrary/Kafka.py b/robotframework-onap/ONAPLibrary/Kafka.py index 5ff8b21..e089531 100644 --- a/robotframework-onap/ONAPLibrary/Kafka.py +++ b/robotframework-onap/ONAPLibrary/Kafka.py @@ -19,6 +19,8 @@ from ONAPLibrary.KafkaKeywords import KafkaKeywords class Kafka(HybridCore): """ Utilities useful for Kafka consuming and producing """ + ROBOT_LIBRARY_SCOPE = "GLOBAL" + def __init__(self): self.keyword_implementors = [ KafkaKeywords() diff --git a/robotframework-onap/ONAPLibrary/MUSIC.py b/robotframework-onap/ONAPLibrary/MUSIC.py index 29ebd9c..88eb405 100644 --- a/robotframework-onap/ONAPLibrary/MUSIC.py +++ b/robotframework-onap/ONAPLibrary/MUSIC.py @@ -20,6 +20,8 @@ class MUSIC(HybridCore): """MUSIC is an ONAP testing library for Robot Framework that provides functionality for interacting with the music component. """ + ROBOT_LIBRARY_SCOPE = "GLOBAL" + def __init__(self): self.keyword_implementors = [ MUSICKeywords() diff --git a/robotframework-onap/ONAPLibrary/OOF.py b/robotframework-onap/ONAPLibrary/OOF.py index d1cc864..34b93ea 100644 --- a/robotframework-onap/ONAPLibrary/OOF.py +++ b/robotframework-onap/ONAPLibrary/OOF.py @@ -20,6 +20,8 @@ class OOF(HybridCore): """OOF is an ONAP testing library for Robot Framework that provides functionality for interacting with the optimiztion framework. """ + ROBOT_LIBRARY_SCOPE = "GLOBAL" + def __init__(self): self.keyword_implementors = [ SNIROKeywords() diff --git a/robotframework-onap/ONAPLibrary/Openstack.py b/robotframework-onap/ONAPLibrary/Openstack.py index 833d731..b8861b2 100644 --- a/robotframework-onap/ONAPLibrary/Openstack.py +++ b/robotframework-onap/ONAPLibrary/Openstack.py @@ -21,6 +21,8 @@ class Openstack(HybridCore): """SO is an ONAP testing library for Robot Framework that provides functionality for interacting with the serivce orchestrator. """ + ROBOT_LIBRARY_SCOPE = "GLOBAL" + def __init__(self): self.keyword_implementors = [ BaseOpenstackKeywords(), diff --git a/robotframework-onap/ONAPLibrary/PreloadData.py b/robotframework-onap/ONAPLibrary/PreloadData.py index 81ddcb8..4d24078 100644 --- a/robotframework-onap/ONAPLibrary/PreloadData.py +++ b/robotframework-onap/ONAPLibrary/PreloadData.py @@ -20,6 +20,8 @@ class PreloadData(HybridCore): """PreloadData is an ONAP testing library for Robot Framework that enables the use of a preload_data.json to dynamically add preload data to a robot test suite with out changing robot code""" + ROBOT_LIBRARY_SCOPE = "GLOBAL" + def __init__(self): self.keyword_implementors = [ PreloadDataKeywords() diff --git a/robotframework-onap/ONAPLibrary/Protobuf.py b/robotframework-onap/ONAPLibrary/Protobuf.py index c81a0a2..0dfb1c4 100644 --- a/robotframework-onap/ONAPLibrary/Protobuf.py +++ b/robotframework-onap/ONAPLibrary/Protobuf.py @@ -19,6 +19,8 @@ from ONAPLibrary.ProtobufKeywords import ProtobufKeywords class Protobuf(HybridCore): """ Utilities useful for Protobuf manipulation """ + ROBOT_LIBRARY_SCOPE = "GLOBAL" + def __init__(self): self.keyword_implementors = [ ProtobufKeywords() diff --git a/robotframework-onap/ONAPLibrary/SDC.py b/robotframework-onap/ONAPLibrary/SDC.py index d3dd9b3..f95468a 100644 --- a/robotframework-onap/ONAPLibrary/SDC.py +++ b/robotframework-onap/ONAPLibrary/SDC.py @@ -20,6 +20,8 @@ class SDC(HybridCore): """SDC is an ONAP testing library for Robot Framework that provides functionality for interacting with the serivce orchestrator. """ + ROBOT_LIBRARY_SCOPE = "GLOBAL" + def __init__(self): self.keyword_implementors = [ BaseSDCKeywords() diff --git a/robotframework-onap/ONAPLibrary/SDNC.py b/robotframework-onap/ONAPLibrary/SDNC.py index bd16ae4..a96ef5f 100644 --- a/robotframework-onap/ONAPLibrary/SDNC.py +++ b/robotframework-onap/ONAPLibrary/SDNC.py @@ -21,6 +21,8 @@ class SDNC(HybridCore): """SDNC is an ONAP testing library for Robot Framework that provides functionality for interacting with the network controller. """ + ROBOT_LIBRARY_SCOPE = "GLOBAL" + def __init__(self): self.keyword_implementors = [ BaseSDNCKeywords(), diff --git a/robotframework-onap/ONAPLibrary/SO.py b/robotframework-onap/ONAPLibrary/SO.py index b01c14f..2454e97 100644 --- a/robotframework-onap/ONAPLibrary/SO.py +++ b/robotframework-onap/ONAPLibrary/SO.py @@ -21,6 +21,8 @@ class SO(HybridCore): """SO is an ONAP testing library for Robot Framework that provides functionality for interacting with the serivce orchestrator. """ + ROBOT_LIBRARY_SCOPE = "GLOBAL" + def __init__(self): self.keyword_implementors = [ BaseSOKeywords(), diff --git a/robotframework-onap/ONAPLibrary/ServiceMapping.py b/robotframework-onap/ONAPLibrary/ServiceMapping.py index 16125c2..8eeb3c9 100644 --- a/robotframework-onap/ONAPLibrary/ServiceMapping.py +++ b/robotframework-onap/ONAPLibrary/ServiceMapping.py @@ -20,6 +20,8 @@ class ServiceMapping(HybridCore): """ServiceMapping is an ONAP testing library for Robot Framework that enables the use of a service_mapping.json to dynamically add services to a robot test suite with out changing robot code""" + ROBOT_LIBRARY_SCOPE = "GLOBAL" + def __init__(self): self.keyword_implementors = [ ServiceMappingKeywords() diff --git a/robotframework-onap/ONAPLibrary/Templating.py b/robotframework-onap/ONAPLibrary/Templating.py index 8975402..fc26829 100644 --- a/robotframework-onap/ONAPLibrary/Templating.py +++ b/robotframework-onap/ONAPLibrary/Templating.py @@ -21,6 +21,8 @@ class Templating(HybridCore): templating engine """ + ROBOT_LIBRARY_SCOPE = "GLOBAL" + def __init__(self): self.keyword_implementors = [ TemplatingKeywords() diff --git a/robotframework-onap/ONAPLibrary/Utilities.py b/robotframework-onap/ONAPLibrary/Utilities.py index f791c9a..5751e21 100644 --- a/robotframework-onap/ONAPLibrary/Utilities.py +++ b/robotframework-onap/ONAPLibrary/Utilities.py @@ -23,6 +23,8 @@ from ONAPLibrary.Base64Keywords import Base64Keywords class Utilities(HybridCore): """ Keywords are useful for helper functions requests """ + ROBOT_LIBRARY_SCOPE = "GLOBAL" + def __init__(self): self.keyword_implementors = [ DNSKeywords(), |