| |
| # 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. |
| |
| |
| import unittest |
| import os |
| from xosgenx.generator import XOSGenerator |
| from helpers import FakeArgs, XProtoTestHelpers |
| |
| class XProtoPackageTest(unittest.TestCase): |
| def test_package_fqn(self): |
| args = FakeArgs() |
| target = XProtoTestHelpers.write_tmp_target( |
| """ |
| {% for m in proto.messages %} |
| {{ m.name }},{{ m.package }},{{ m.fqn }} |
| {% endfor %} |
| """) |
| |
| xproto =\ |
| """ |
| package xos.core; |
| |
| message Port (PlCoreBase,ParameterMixin) { |
| required manytoone network->Network:links = 1 [db_index = True, null = False, blank = False]; |
| optional manytoone instance->Instance:ports = 2 [db_index = True, null = True, blank = True]; |
| optional string ip = 3 [max_length = 39, content_type = "ip", blank = True, help_text = "Instance ip address", null = True, db_index = False]; |
| optional string port_id = 4 [help_text = "Neutron port id", max_length = 256, null = True, db_index = False, blank = True]; |
| optional string mac = 5 [help_text = "MAC address associated with this port", max_length = 256, null = True, db_index = False, blank = True]; |
| required bool xos_created = 6 [default = False, null = False, db_index = False, blank = True]; |
| } |
| """ |
| args = FakeArgs() |
| args.inputs = xproto |
| args.target = target |
| |
| output = XOSGenerator.generate(args) |
| |
| self.assertIn('Port,xos.core,xos.core.Port', output) |
| |
| def test_cross_model(self): |
| target = XProtoTestHelpers.write_tmp_target( \ |
| """ |
| {% for m in proto.messages %} |
| {{ m.fqn }} { |
| {%- for l in m.links %} |
| {%- if proto.message_table[l.peer.fqn] %} |
| {{ l.peer.name }} { |
| {%- set model = proto.message_table[l.peer.fqn] %} |
| {% for f in model.fields %} |
| {{ f.type }} {{ f.name }}; |
| {% endfor %} |
| } |
| {%- endif -%} |
| {%- if proto.message_table[m.package + '.' + l.peer.name] %} |
| {{ l.peer.name }} { |
| {%- set model = proto.message_table[m.package + '.' + l.peer.name] %} |
| {% for f in model.fields %} |
| {{ f.type }} {{ f.name }}; |
| {% endfor %} |
| } |
| {%- endif -%} |
| {% endfor %} |
| } |
| {% endfor %} |
| """) |
| |
| xproto = \ |
| """ |
| package xos.network; |
| |
| message Port (PlCoreBase,ParameterMixin){ |
| required manytoone network->Network:links = 1 [db_index = True, null = False, blank = False]; |
| optional manytoone instance->xos.core.Instance:ports = 2 [db_index = True, null = True, blank = True]; |
| optional string ip = 3 [max_length = 39, content_type = "ip", blank = True, help_text = "Instance ip address", null = True, db_index = False]; |
| optional string port_id = 4 [help_text = "Neutron port id", max_length = 256, null = True, db_index = False, blank = True]; |
| optional string mac = 5 [help_text = "MAC address associated with this port", max_length = 256, null = True, db_index = False, blank = True]; |
| required bool xos_created = 6 [default = False, null = False, db_index = False, blank = True]; |
| } |
| |
| |
| package xos.core; |
| |
| message Instance (PlCoreBase){ |
| optional string instance_id = 1 [max_length = 200, content_type = "stripped", blank = True, help_text = "Nova instance id", null = True, db_index = False]; |
| optional string instance_uuid = 2 [max_length = 200, content_type = "stripped", blank = True, help_text = "Nova instance uuid", null = True, db_index = False]; |
| required string name = 3 [max_length = 200, content_type = "stripped", blank = False, help_text = "Instance name", null = False, db_index = False]; |
| optional string instance_name = 4 [max_length = 200, content_type = "stripped", blank = True, help_text = "OpenStack generated name", null = True, db_index = False]; |
| optional string ip = 5 [max_length = 39, content_type = "ip", blank = True, help_text = "Instance ip address", null = True, db_index = False]; |
| required manytoone image->Image:instances = 6 [db_index = True, null = False, blank = False]; |
| optional manytoone creator->User:instances = 7 [db_index = True, null = True, blank = True]; |
| required manytoone slice->Slice:instances = 8 [db_index = True, null = False, blank = False]; |
| required manytoone deployment->Deployment:instance_deployment = 9 [db_index = True, null = False, blank = False]; |
| required manytoone node->Node:instances = 10 [db_index = True, null = False, blank = False]; |
| required int32 numberCores = 11 [help_text = "Number of cores for instance", default = 0, null = False, db_index = False, blank = False]; |
| required manytoone flavor->Flavor:instance = 12 [help_text = "Flavor of this instance", default = "get_default_flavor()", null = False, db_index = True, blank = False]; |
| optional string userData = 13 [help_text = "user_data passed to instance during creation", null = True, db_index = False, blank = True]; |
| required string isolation = 14 [default = "vm", choices = "(('vm', 'Virtual Machine'), ('container', 'Container'), ('container_vm', 'Container In VM'))", max_length = 30, blank = False, null = False, db_index = False]; |
| optional string volumes = 15 [help_text = "Comma-separated list of directories to expose to parent context", null = True, db_index = False, blank = True]; |
| optional manytoone parent->Instance:instance = 16 [help_text = "Parent Instance for containers nested inside of VMs", null = True, db_index = True, blank = True]; |
| required manytomany tags->Tag = 17 [db_index = False, null = False, blank = True]; |
| } |
| |
| package xos.network; |
| |
| message Network (PlCoreBase,ParameterMixin) { |
| required string name = 1 [db_index = False, max_length = 32, null = False, blank = False]; |
| required manytoone template->NetworkTemplate:network = 2 [db_index = True, null = False, blank = False]; |
| required string subnet = 3 [db_index = False, max_length = 32, null = False, blank = True]; |
| required string start_ip = 4 [db_index = False, max_length = 32, null = False, blank = True]; |
| required string end_ip = 5 [db_index = False, max_length = 32, null = False, blank = True]; |
| optional string ports = 6 [db_index = False, max_length = 1024, null = True, blank = True]; |
| optional string labels = 7 [db_index = False, max_length = 1024, null = True, blank = True]; |
| required manytoone owner->Slice:ownedNetworks = 8 [help_text = "Slice that owns control of this Network", null = False, db_index = True, blank = False]; |
| required int32 guaranteed_bandwidth = 9 [default = 0, null = False, db_index = False, blank = False]; |
| required bool permit_all_slices = 10 [default = False, null = False, db_index = False, blank = True]; |
| optional string topology_parameters = 11 [db_index = False, null = True, blank = True]; |
| optional string controller_url = 12 [db_index = False, max_length = 1024, null = True, blank = True]; |
| optional string controller_parameters = 13 [db_index = False, null = True, blank = True]; |
| optional string network_id = 14 [help_text = "Quantum network", max_length = 256, null = True, db_index = False, blank = True]; |
| optional string router_id = 15 [help_text = "Quantum router id", max_length = 256, null = True, db_index = False, blank = True]; |
| optional string subnet_id = 16 [help_text = "Quantum subnet id", max_length = 256, null = True, db_index = False, blank = True]; |
| required bool autoconnect = 17 [help_text = "This network can be autoconnected to the slice that owns it", default = True, null = False, db_index = False, blank = True]; |
| required manytomany permitted_slices->Slice/Network_permitted_slices:availableNetworks = 18 [db_index = False, null = False, blank = True]; |
| required manytomany slices->Slice/NetworkSlice:networks = 19 [db_index = False, null = False, blank = True]; |
| required manytomany instances->xos.core.Instance/xos.network.Port:networks = 20 [db_index = False, null = False, blank = True]; |
| } |
| |
| message Slice (PlCoreBase){ |
| required string name = 1 [max_length = 80, content_type = "stripped", blank = False, help_text = "The Name of the Slice", null = False, db_index = False]; |
| required bool enabled = 2 [help_text = "Status for this Slice", default = True, null = False, db_index = False, blank = True]; |
| required bool omf_friendly = 3 [default = False, null = False, db_index = False, blank = True]; |
| required string description = 4 [help_text = "High level description of the slice and expected activities", max_length = 1024, null = False, db_index = False, blank = True]; |
| required string slice_url = 5 [db_index = False, max_length = 512, null = False, content_type = "url", blank = True]; |
| required manytoone site->Site:slices = 6 [help_text = "The Site this Slice belongs to", null = False, db_index = True, blank = False]; |
| required int32 max_instances = 7 [default = 10, null = False, db_index = False, blank = False]; |
| optional manytoone service->Service:slices = 8 [db_index = True, null = True, blank = True]; |
| optional string network = 9 [blank = True, max_length = 256, null = True, db_index = False, choices = "((None, 'Default'), ('host', 'Host'), ('bridged', 'Bridged'), ('noauto', 'No Automatic Networks'))"]; |
| optional string exposed_ports = 10 [db_index = False, max_length = 256, null = True, blank = True]; |
| optional manytoone serviceClass->ServiceClass:slices = 11 [db_index = True, null = True, blank = True]; |
| optional manytoone creator->User:slices = 12 [db_index = True, null = True, blank = True]; |
| optional manytoone default_flavor->Flavor:slices = 13 [db_index = True, null = True, blank = True]; |
| optional manytoone default_image->Image:slices = 14 [db_index = True, null = True, blank = True]; |
| optional manytoone default_node->Node:slices = 15 [db_index = True, null = True, blank = True]; |
| optional string mount_data_sets = 16 [default = "GenBank", max_length = 256, content_type = "stripped", blank = True, null = True, db_index = False]; |
| required string default_isolation = 17 [default = "vm", choices = "(('vm', 'Virtual Machine'), ('container', 'Container'), ('container_vm', 'Container In VM'))", max_length = 30, blank = False, null = False, db_index = False]; |
| required manytomany tags->Tag = 18 [db_index = False, null = False, blank = True]; |
| } |
| """ |
| args = FakeArgs() |
| args.inputs = xproto |
| args.target = target |
| output = XOSGenerator.generate(args) |
| |
| self.assertIn('numberCores', output) # Instance showed up via cross-package call |
| self.assertIn('ip;', output) # Network showed up via cross-package call |
| self.assertIn('max_instances', output) # Slice showed up via implicit in-package call |
| |
| def test_base_class_fields(self): |
| target = XProtoTestHelpers.write_tmp_target( |
| """ |
| {% for m in proto.messages %} |
| {{ m.name }} { |
| {%- for b in m.bases %} |
| {%- if proto.message_table[b.fqn] -%} |
| {%- set model = proto.message_table[b.fqn] %} |
| {% for f in model.fields %} |
| {{ f.type }} {{ f.name }}; |
| {% endfor %} |
| {%- endif -%} |
| {% endfor %} |
| } |
| {% endfor %} |
| """) |
| |
| xproto =\ |
| """ |
| package xos.network; |
| |
| message Port (PlCoreBase,ParameterMixin){ |
| required manytoone network->Network:links = 1 [db_index = True, null = False, blank = False]; |
| optional manytoone instance->Instance:ports = 2 [db_index = True, null = True, blank = True]; |
| optional string ip = 3 [max_length = 39, content_type = "ip", blank = True, help_text = "Instance ip address", null = True, db_index = False]; |
| optional string port_id = 4 [help_text = "Neutron port id", max_length = 256, null = True, db_index = False, blank = True]; |
| optional string mac = 5 [help_text = "MAC address associated with this port", max_length = 256, null = True, db_index = False, blank = True]; |
| required bool xos_created = 6 [default = False, null = False, db_index = False, blank = True]; |
| } |
| |
| package xos.someotherpackage; |
| |
| message Instance (xos.network.Port){ |
| optional string instance_id = 1 [max_length = 200, content_type = "stripped", blank = True, help_text = "Nova instance id", null = True, db_index = False]; |
| optional string instance_uuid = 2 [max_length = 200, content_type = "stripped", blank = True, help_text = "Nova instance uuid", null = True, db_index = False]; |
| required string name = 3 [max_length = 200, content_type = "stripped", blank = False, help_text = "Instance name", null = False, db_index = False]; |
| optional string instance_name = 4 [max_length = 200, content_type = "stripped", blank = True, help_text = "OpenStack generated name", null = True, db_index = False]; |
| optional string ip = 5 [max_length = 39, content_type = "ip", blank = True, help_text = "Instance ip address", null = True, db_index = False]; |
| required manytoone image->Image:instances = 6 [db_index = True, null = False, blank = False]; |
| optional manytoone creator->User:instances = 7 [db_index = True, null = True, blank = True]; |
| required manytoone slice->Slice:instances = 8 [db_index = True, null = False, blank = False]; |
| required manytoone deployment->Deployment:instance_deployment = 9 [db_index = True, null = False, blank = False]; |
| required manytoone node->Node:instances = 10 [db_index = True, null = False, blank = False]; |
| required int32 numberCores = 11 [help_text = "Number of cores for instance", default = 0, null = False, db_index = False, blank = False]; |
| required manytoone flavor->Flavor:instance = 12 [help_text = "Flavor of this instance", default = "get_default_flavor()", null = False, db_index = True, blank = False]; |
| optional string userData = 13 [help_text = "user_data passed to instance during creation", null = True, db_index = False, blank = True]; |
| required string isolation = 14 [default = "vm", choices = "(('vm', 'Virtual Machine'), ('container', 'Container'), ('container_vm', 'Container In VM'))", max_length = 30, blank = False, null = False, db_index = False]; |
| optional string volumes = 15 [help_text = "Comma-separated list of directories to expose to parent context", null = True, db_index = False, blank = True]; |
| optional manytoone parent->Instance:instance = 16 [help_text = "Parent Instance for containers nested inside of VMs", null = True, db_index = True, blank = True]; |
| required manytomany tags->Tag = 17 [db_index = False, null = False, blank = True]; |
| } |
| """ |
| args = FakeArgs() |
| args.inputs = xproto |
| args.target = target |
| output = XOSGenerator.generate(args) |
| |
| self.assertIn('xos_created', output) |
| |
| def test_from_base(self): |
| target = XProtoTestHelpers.write_tmp_target( \ |
| """ |
| {% for f in xproto_base_fields(proto.messages.3, proto.message_table) %} |
| {{ f.type }} {{ f.name }}; |
| {% endfor %} |
| """) |
| |
| xproto =\ |
| """ |
| option app_name = "firstapp"; |
| |
| message Port (PlCoreBase,ParameterMixin){ |
| required string easter_egg = 1; |
| required manytoone network->Network:links = 1 [db_index = True, null = False, blank = False]; |
| optional manytoone instance->Instance:ports = 2 [db_index = True, null = True, blank = True]; |
| optional string ip = 3 [max_length = 39, content_type = "ip", blank = True, help_text = "Instance ip address", null = True, db_index = False]; |
| optional string port_id = 4 [help_text = "Neutron port id", max_length = 256, null = True, db_index = False, blank = True]; |
| optional string mac = 5 [help_text = "MAC address associated with this port", max_length = 256, null = True, db_index = False, blank = True]; |
| required bool xos_created = 6 [default = False, null = False, db_index = False, blank = True]; |
| } |
| |
| package A; |
| |
| message Instance (Port){ |
| optional string instance_id = 1 [max_length = 200, content_type = "stripped", blank = True, help_text = "Nova instance id", null = True, db_index = False]; |
| optional string instance_uuid = 2 [max_length = 200, content_type = "stripped", blank = True, help_text = "Nova instance uuid", null = True, db_index = False]; |
| required string name = 3 [max_length = 200, content_type = "stripped", blank = False, help_text = "Instance name", null = False, db_index = False]; |
| optional string instance_name = 4 [max_length = 200, content_type = "stripped", blank = True, help_text = "OpenStack generated name", null = True, db_index = False]; |
| optional string ip = 5 [max_length = 39, content_type = "ip", blank = True, help_text = "Instance ip address", null = True, db_index = False]; |
| required manytoone image->Image:instances = 6 [db_index = True, null = False, blank = False]; |
| optional manytoone creator->User:instances = 7 [db_index = True, null = True, blank = True]; |
| required manytoone slice->Slice:instances = 8 [db_index = True, null = False, blank = False]; |
| required manytoone deployment->Deployment:instance_deployment = 9 [db_index = True, null = False, blank = False]; |
| required manytoone node->Node:instances = 10 [db_index = True, null = False, blank = False]; |
| required int32 numberCores = 11 [help_text = "Number of cores for instance", default = 0, null = False, db_index = False, blank = False]; |
| required manytoone flavor->Flavor:instance = 12 [help_text = "Flavor of this instance", default = "get_default_flavor()", null = False, db_index = True, blank = False]; |
| optional string userData = 13 [help_text = "user_data passed to instance during creation", null = True, db_index = False, blank = True]; |
| required string isolation = 14 [default = "vm", choices = "(('vm', 'Virtual Machine'), ('container', 'Container'), ('container_vm', 'Container In VM'))", max_length = 30, blank = False, null = False, db_index = False]; |
| optional string volumes = 15 [help_text = "Comma-separated list of directories to expose to parent context", null = True, db_index = False, blank = True]; |
| optional manytoone parent->Instance:instance = 16 [help_text = "Parent Instance for containers nested inside of VMs", null = True, db_index = True, blank = True]; |
| required manytomany tags->Tag = 17 [db_index = False, null = False, blank = True]; |
| } |
| |
| package B; |
| |
| option app_name="networkapp"; |
| |
| message Network (A.Instance) { |
| required string name = 1 [db_index = False, max_length = 32, null = False, blank = False]; |
| required manytoone template->NetworkTemplate:network = 2 [db_index = True, null = False, blank = False]; |
| required string subnet = 3 [db_index = False, max_length = 32, null = False, blank = True]; |
| required string start_ip = 4 [db_index = False, max_length = 32, null = False, blank = True]; |
| required string end_ip = 5 [db_index = False, max_length = 32, null = False, blank = True]; |
| optional string ports = 6 [db_index = False, max_length = 1024, null = True, blank = True]; |
| optional string labels = 7 [db_index = False, max_length = 1024, null = True, blank = True]; |
| required manytoone owner->Slice:ownedNetworks = 8 [help_text = "Slice that owns control of this Network", null = False, db_index = True, blank = False]; |
| required int32 guaranteed_bandwidth = 9 [default = 0, null = False, db_index = False, blank = False]; |
| required bool permit_all_slices = 10 [default = False, null = False, db_index = False, blank = True]; |
| optional string topology_parameters = 11 [db_index = False, null = True, blank = True]; |
| optional string controller_url = 12 [db_index = False, max_length = 1024, null = True, blank = True]; |
| optional string controller_parameters = 13 [db_index = False, null = True, blank = True]; |
| optional string network_id = 14 [help_text = "Quantum network", max_length = 256, null = True, db_index = False, blank = True]; |
| optional string router_id = 15 [help_text = "Quantum router id", max_length = 256, null = True, db_index = False, blank = True]; |
| optional string subnet_id = 16 [help_text = "Quantum subnet id", max_length = 256, null = True, db_index = False, blank = True]; |
| required bool autoconnect = 17 [help_text = "This network can be autoconnected to the slice that owns it", default = True, null = False, db_index = False, blank = True]; |
| required manytomany permitted_slices->Slice/Network_permitted_slices:availableNetworks = 18 [db_index = False, null = False, blank = True]; |
| required manytomany slices->Slice/NetworkSlice:networks = 19 [db_index = False, null = False, blank = True]; |
| required manytomany instances->Instance/Port:networks = 20 [db_index = False, null = False, blank = True]; |
| } |
| |
| option app_name="sliceapp"; |
| |
| message Slice (Network){ |
| required string name = 1 [max_length = 80, content_type = "stripped", blank = False, help_text = "The Name of the Slice", null = False, db_index = False]; |
| required bool enabled = 2 [help_text = "Status for this Slice", default = True, null = False, db_index = False, blank = True]; |
| required bool omf_friendly = 3 [default = False, null = False, db_index = False, blank = True]; |
| required string description = 4 [help_text = "High level description of the slice and expected activities", max_length = 1024, null = False, db_index = False, blank = True]; |
| required string slice_url = 5 [db_index = False, max_length = 512, null = False, content_type = "url", blank = True]; |
| required manytoone site->Site:slices = 6 [help_text = "The Site this Slice belongs to", null = False, db_index = True, blank = False]; |
| required int32 max_instances = 7 [default = 10, null = False, db_index = False, blank = False]; |
| optional manytoone service->Service:slices = 8 [db_index = True, null = True, blank = True]; |
| optional string network = 9 [blank = True, max_length = 256, null = True, db_index = False, choices = "((None, 'Default'), ('host', 'Host'), ('bridged', 'Bridged'), ('noauto', 'No Automatic Networks'))"]; |
| optional string exposed_ports = 10 [db_index = False, max_length = 256, null = True, blank = True]; |
| optional manytoone serviceClass->ServiceClass:slices = 11 [db_index = True, null = True, blank = True]; |
| optional manytoone creator->User:slices = 12 [db_index = True, null = True, blank = True]; |
| optional manytoone default_flavor->Flavor:slices = 13 [db_index = True, null = True, blank = True]; |
| optional manytoone default_image->Image:slices = 14 [db_index = True, null = True, blank = True]; |
| optional manytoone default_node->Node:slices = 15 [db_index = True, null = True, blank = True]; |
| optional string mount_data_sets = 16 [default = "GenBank", max_length = 256, content_type = "stripped", blank = True, null = True, db_index = False]; |
| required string default_isolation = 17 [default = "vm", choices = "(('vm', 'Virtual Machine'), ('container', 'Container'), ('container_vm', 'Container In VM'))", max_length = 30, blank = False, null = False, db_index = False]; |
| required manytomany tags->Tag = 18 [db_index = False, null = False, blank = True]; |
| } |
| """ |
| args = FakeArgs() |
| args.inputs = xproto |
| args.target = target |
| output = XOSGenerator.generate(args) |
| |
| self.assertIn('easter_egg', output) |
| |
| def test_model_options(self): |
| target = XProtoTestHelpers.write_tmp_target( |
| """ |
| Options: |
| |
| {{ proto.options }} |
| {% for m in proto.messages %} |
| {{ m.options.app_name }} |
| {% endfor %} |
| """) |
| |
| xproto =\ |
| """ |
| option app_name = "firstapp"; |
| |
| message Port (PlCoreBase,ParameterMixin){ |
| required string easter_egg = 1; |
| required manytoone network->Network:links = 1 [db_index = True, null = False, blank = False]; |
| optional manytoone instance->Instance:ports = 2 [db_index = True, null = True, blank = True]; |
| optional string ip = 3 [max_length = 39, content_type = "ip", blank = True, help_text = "Instance ip address", null = True, db_index = False]; |
| optional string port_id = 4 [help_text = "Neutron port id", max_length = 256, null = True, db_index = False, blank = True]; |
| optional string mac = 5 [help_text = "MAC address associated with this port", max_length = 256, null = True, db_index = False, blank = True]; |
| required bool xos_created = 6 [default = False, null = False, db_index = False, blank = True]; |
| } |
| |
| package A; |
| |
| message Instance (Port){ |
| optional string instance_id = 1 [max_length = 200, content_type = "stripped", blank = True, help_text = "Nova instance id", null = True, db_index = False]; |
| optional string instance_uuid = 2 [max_length = 200, content_type = "stripped", blank = True, help_text = "Nova instance uuid", null = True, db_index = False]; |
| required string name = 3 [max_length = 200, content_type = "stripped", blank = False, help_text = "Instance name", null = False, db_index = False]; |
| optional string instance_name = 4 [max_length = 200, content_type = "stripped", blank = True, help_text = "OpenStack generated name", null = True, db_index = False]; |
| optional string ip = 5 [max_length = 39, content_type = "ip", blank = True, help_text = "Instance ip address", null = True, db_index = False]; |
| required manytoone image->Image:instances = 6 [db_index = True, null = False, blank = False]; |
| optional manytoone creator->User:instances = 7 [db_index = True, null = True, blank = True]; |
| required manytoone slice->Slice:instances = 8 [db_index = True, null = False, blank = False]; |
| required manytoone deployment->Deployment:instance_deployment = 9 [db_index = True, null = False, blank = False]; |
| required manytoone node->Node:instances = 10 [db_index = True, null = False, blank = False]; |
| required int32 numberCores = 11 [help_text = "Number of cores for instance", default = 0, null = False, db_index = False, blank = False]; |
| required manytoone flavor->Flavor:instance = 12 [help_text = "Flavor of this instance", default = "get_default_flavor()", null = False, db_index = True, blank = False]; |
| optional string userData = 13 [help_text = "user_data passed to instance during creation", null = True, db_index = False, blank = True]; |
| required string isolation = 14 [default = "vm", choices = "(('vm', 'Virtual Machine'), ('container', 'Container'), ('container_vm', 'Container In VM'))", max_length = 30, blank = False, null = False, db_index = False]; |
| optional string volumes = 15 [help_text = "Comma-separated list of directories to expose to parent context", null = True, db_index = False, blank = True]; |
| optional manytoone parent->Instance:instance = 16 [help_text = "Parent Instance for containers nested inside of VMs", null = True, db_index = True, blank = True]; |
| required manytomany tags->Tag = 17 [db_index = False, null = False, blank = True]; |
| } |
| |
| package B; |
| |
| option app_name = "networkapp"; |
| |
| message Network (A.Instance) { |
| required string name = 1 [db_index = False, max_length = 32, null = False, blank = False]; |
| required manytoone template->NetworkTemplate:network = 2 [db_index = True, null = False, blank = False]; |
| required string subnet = 3 [db_index = False, max_length = 32, null = False, blank = True]; |
| required string start_ip = 4 [db_index = False, max_length = 32, null = False, blank = True]; |
| required string end_ip = 5 [db_index = False, max_length = 32, null = False, blank = True]; |
| optional string ports = 6 [db_index = False, max_length = 1024, null = True, blank = True]; |
| optional string labels = 7 [db_index = False, max_length = 1024, null = True, blank = True]; |
| required manytoone owner->Slice:ownedNetworks = 8 [help_text = "Slice that owns control of this Network", null = False, db_index = True, blank = False]; |
| required int32 guaranteed_bandwidth = 9 [default = 0, null = False, db_index = False, blank = False]; |
| required bool permit_all_slices = 10 [default = False, null = False, db_index = False, blank = True]; |
| optional string topology_parameters = 11 [db_index = False, null = True, blank = True]; |
| optional string controller_url = 12 [db_index = False, max_length = 1024, null = True, blank = True]; |
| optional string controller_parameters = 13 [db_index = False, null = True, blank = True]; |
| optional string network_id = 14 [help_text = "Quantum network", max_length = 256, null = True, db_index = False, blank = True]; |
| optional string router_id = 15 [help_text = "Quantum router id", max_length = 256, null = True, db_index = False, blank = True]; |
| optional string subnet_id = 16 [help_text = "Quantum subnet id", max_length = 256, null = True, db_index = False, blank = True]; |
| required bool autoconnect = 17 [help_text = "This network can be autoconnected to the slice that owns it", default = True, null = False, db_index = False, blank = True]; |
| required manytomany permitted_slices->Slice/Network_permitted_slices:availableNetworks = 18 [db_index = False, null = False, blank = True]; |
| required manytomany slices->Slice/NetworkSlice:networks = 19 [db_index = False, null = False, blank = True]; |
| required manytomany instances->Instance/Port:networks = 20 [db_index = False, null = False, blank = True]; |
| } |
| |
| |
| option app_name = "networkapp"; |
| |
| message Slice (Network){ |
| required string name = 1 [max_length = 80, content_type = "stripped", blank = False, help_text = "The Name of the Slice", null = False, db_index = False]; |
| required bool enabled = 2 [help_text = "Status for this Slice", default = True, null = False, db_index = False, blank = True]; |
| required bool omf_friendly = 3 [default = False, null = False, db_index = False, blank = True]; |
| required string description = 4 [help_text = "High level description of the slice and expected activities", max_length = 1024, null = False, db_index = False, blank = True]; |
| required string slice_url = 5 [db_index = False, max_length = 512, null = False, content_type = "url", blank = True]; |
| required manytoone site->Site:slices = 6 [help_text = "The Site this Slice belongs to", null = False, db_index = True, blank = False]; |
| required int32 max_instances = 7 [default = 10, null = False, db_index = False, blank = False]; |
| optional manytoone service->Service:slices = 8 [db_index = True, null = True, blank = True]; |
| optional string network = 9 [blank = True, max_length = 256, null = True, db_index = False, choices = "((None, 'Default'), ('host', 'Host'), ('bridged', 'Bridged'), ('noauto', 'No Automatic Networks'))"]; |
| optional string exposed_ports = 10 [db_index = False, max_length = 256, null = True, blank = True]; |
| optional manytoone serviceClass->ServiceClass:slices = 11 [db_index = True, null = True, blank = True]; |
| optional manytoone creator->User:slices = 12 [db_index = True, null = True, blank = True]; |
| optional manytoone default_flavor->Flavor:slices = 13 [db_index = True, null = True, blank = True]; |
| optional manytoone default_image->Image:slices = 14 [db_index = True, null = True, blank = True]; |
| optional manytoone default_node->Node:slices = 15 [db_index = True, null = True, blank = True]; |
| optional string mount_data_sets = 16 [default = "GenBank", max_length = 256, content_type = "stripped", blank = True, null = True, db_index = False]; |
| required string default_isolation = 17 [default = "vm", choices = "(('vm', 'Virtual Machine'), ('container', 'Container'), ('container_vm', 'Container In VM'))", max_length = 30, blank = False, null = False, db_index = False]; |
| required manytomany tags->Tag = 18 [db_index = False, null = False, blank = True]; |
| } |
| """ |
| |
| args = FakeArgs() |
| args.inputs = xproto |
| args.target = target |
| output = XOSGenerator.generate(args) |
| |
| self.assertEqual(output.count('firstapp'), 2) |
| self.assertEqual(output.count('networkapp'), 2) |
| |
| |
| if __name__ == '__main__': |
| unittest.main() |
| |
| |