murano/murano/tests/unit/dsl/foundation/test_case.py
Stan Lagun 584571c3d8 On-demand garbage collection
Garbage collection is triggered by io.murano.system.GC.collect()
static method. Garbage collector destroys all object that are not
reachable anymore. GC can handle objects with cross-references and
isolated object graphs. When portion of object model becomes not
reachable it destroyed in predictable order such that child objects get
destroyed before their parents and, when possible, before objects
that are subscribed to their destruction notifications.

Internally, both pre-deployment garbage collection (that was done by
comparision of ``Objects`` and ``ObjectsCopy``) and post-deployment
orphan object collection are now done through the new GC.

MuranoPL GC utilizes Python GC to track and collect objects.
The main idea is to make ObjectStore have weak links only and
prevent hard links in other dsl places so that only links between objects
remain. Then prevent Python GC to automatically delete objects that
are not used anymore and use gc.collect() to obtain a list of
objects that are both not reachable and cannot be destroyed and then
destroy them in the correct order.

Targets-blueprint: dependency-driven-resource-deallocation
Closes-Bug: #1619635
Closes-Bug: #1597747
Change-Id: I653d8f71f003afa0a1ea588c9d14198571f5ad14
2016-09-14 03:43:09 +00:00

75 lines
2.4 KiB
Python

# Copyright (c) 2014 Mirantis, Inc.
#
# 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 inspect
import os.path
import eventlet.debug
from murano.tests.unit import base
from murano.tests.unit.dsl.foundation import runner
from murano.tests.unit.dsl.foundation import test_package_loader
class DslTestCase(base.MuranoTestCase):
def setUp(self):
super(DslTestCase, self).setUp()
directory = os.path.join(os.path.dirname(
inspect.getfile(self.__class__)), 'meta')
root_meta_directory = os.path.join(
os.path.dirname(__file__), '../../../../../meta')
sys_package_loader = test_package_loader.TestPackageLoader(
os.path.join(root_meta_directory, 'io.murano/Classes'),
'io.murano')
self._package_loader = test_package_loader.TestPackageLoader(
directory, 'tests', sys_package_loader)
self._functions = {}
self.register_function(
lambda data: self._traces.append(data), 'trace')
self._traces = []
self._runners = []
eventlet.debug.hub_exceptions(False)
def new_runner(self, model):
r = runner.Runner(model, self.package_loader, self._functions)
self._runners.append(r)
return r
def tearDown(self):
super(DslTestCase, self).tearDown()
for r in self._runners:
r.executor.finalize(r.root)
@property
def traces(self):
return self._traces
@traces.deleter
def traces(self):
self._traces = []
@property
def package_loader(self):
return self._package_loader
def register_function(self, func, name):
self._functions[name] = func
@staticmethod
def find_attribute(model, obj_id, obj_type, name):
for entry in model['Attributes']:
if tuple(entry[:3]) == (obj_id, obj_type, name):
return entry[3]