blob: b38f3234554aa3f12cbca7b932e746cbadfe4940 [file] [log] [blame]
# Copyright 2017-present Open Networking Foundation
#
# 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 __future__ import print_function
from testconfig import USERNAME, PASSWORD
import grpc_client
import random
import string
import sys
sys.path.append("..")
SLICE_NAME = "mysite_" + "".join(
random.choice(string.ascii_uppercase + string.digits) for _ in range(10)
)
TOSCA_RECIPE = (
"""tosca_definitions_version: tosca_simple_yaml_1_0
description: Just some test...
imports:
- custom_types/xos.yaml
topology_template:
node_templates:
mysite:
type: tosca.nodes.Site
%s:
type: tosca.nodes.Slice
requirements:
- slice:
node: mysite
relationship: tosca.relationships.MemberOfSite
"""
% SLICE_NAME
)
print("tosca_test")
c = grpc_client.SecureClient("xos-core.cord.lab", username=USERNAME, password=PASSWORD)
request = grpc_client.ToscaRequest()
request.recipe = TOSCA_RECIPE
print("Execute")
response = c.utility.RunTosca(request)
if response.status == response.SUCCESS:
print(" success")
else:
print(" failure")
for line in response.messages.split("\n"):
print(" %s" % line)
print("Destroy")
response = c.utility.DestroyTosca(request)
if response.status == response.SUCCESS:
print(" success")
else:
print(" failure")
for line in response.messages.split("\n"):
print(" %s" % line)
print("Done")