# Copyright (c) 2016 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. from murano.dsl import exceptions from murano.engine.system import garbage_collector from murano.tests.unit.dsl.foundation import object_model as om from murano.tests.unit.dsl.foundation import test_case class TestGC(test_case.DslTestCase): def setUp(self): super(TestGC, self).setUp() self.package_loader.load_package('io.murano', None).register_class( garbage_collector.GarbageCollector) self.runner = self.new_runner(om.Object('TestGC')) def test_model_destroyed(self): model = om.Object( 'TestGCNode', 'root', value='root', nodes=[ om.Object( 'TestGCNode', 'node1', value='node1', nodes=['root', 'node2'] ), om.Object( 'TestGCNode', 'node2', value='node2', nodes=['root', 'node1'] ), ] ) model = {'Objects': None, 'ObjectsCopy': model} self.new_runner(model) self.assertItemsEqual(['node1', 'node2'], self.traces[:2]) self.assertEqual('root', self.traces[-1]) def test_collect_from_code(self): self.runner.testObjectsCollect() self.assertEqual(['B', 'A'], self.traces) def test_collect_with_subscription(self): self.runner.testObjectsCollectWithSubscription() self.assertEqual( ['Destroy A', 'Destroy B', 'Destruction of B', 'B', 'A'], self.traces) def test_call_on_destroyed_object(self): self.assertRaises( exceptions.ObjectDestroyedError, self.runner.testCallOnDestroyedObject) self.assertEqual(['foo', 'X'], self.traces)