
Refactor all the services in such way that they support the new `get_network_details` method instead of the old `get_network_config` method for statically configuring network interfaces through the networkconfig plugin. Change-Id: Idb519935da0d3aee316ad9bc9451f74bc80b12ba
64 lines
2.1 KiB
Python
64 lines
2.1 KiB
Python
# Copyright 2014 Cloudbase Solutions Srl
|
|
#
|
|
# 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
|
|
|
|
from cloudbaseinit.metadata.services import base as service_base
|
|
from cloudbaseinit.tests.metadata import fake_json_response
|
|
from cloudbaseinit.utils import debiface
|
|
|
|
|
|
class TestInterfacesParser(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
date = "2013-04-04"
|
|
content = fake_json_response.get_fake_metadata_json(date)
|
|
self.data = content["network_config"]["debian_config"]
|
|
|
|
def _test_parse_nics(self, no_nics=False):
|
|
nics = debiface.parse(self.data)
|
|
if no_nics:
|
|
self.assertFalse(nics)
|
|
return
|
|
# check what we've got
|
|
nic0 = service_base.NetworkDetails(
|
|
fake_json_response.NAME0,
|
|
fake_json_response.MAC0.upper(),
|
|
fake_json_response.ADDRESS0,
|
|
fake_json_response.NETMASK0,
|
|
fake_json_response.BROADCAST0,
|
|
fake_json_response.GATEWAY0,
|
|
fake_json_response.DNSNS0.split()
|
|
)
|
|
nic1 = service_base.NetworkDetails(
|
|
fake_json_response.NAME1,
|
|
None,
|
|
fake_json_response.ADDRESS1,
|
|
fake_json_response.NETMASK1,
|
|
fake_json_response.BROADCAST1,
|
|
fake_json_response.GATEWAY1,
|
|
None
|
|
)
|
|
self.assertEqual([nic0, nic1], nics)
|
|
|
|
def test_nothing_to_parse(self):
|
|
invalid = [None, "", 324242, ("dasd", "dsa")]
|
|
for data in invalid:
|
|
self.data = data
|
|
self._test_parse_nics(no_nics=True)
|
|
|
|
def test_parse(self):
|
|
self._test_parse_nics()
|