Merge "Added description to package"
[osm/N2VC.git] / tests / base.py
index ce95056..c7dad6d 100644 (file)
@@ -1,4 +1,18 @@
 #!/usr/bin/env python3
+# Copyright 2019 Canonical Ltd.
+#
+# 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.
+
 import asyncio
 import datetime
 import logging
@@ -118,6 +132,7 @@ def get_n2vc(loop=None):
     vca_user = os.getenv('VCA_USER', 'admin')
     vca_charms = os.getenv('VCA_CHARMS', None)
     vca_secret = os.getenv('VCA_SECRET', None)
+    vca_cacert = os.getenv('VCA_CACERT', None)
 
     # Get the Juju Public key
     juju_public_key = get_juju_public_key()
@@ -148,6 +163,7 @@ def get_n2vc(loop=None):
         artifacts=vca_charms,
         loop=loop,
         juju_public_key=juju_public_key,
+        ca_cert=vca_cacert,
     )
     return client