blob: def915f8d918661209327b2d6b05d2484c7f9dc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
from __future__ import print_function
from __future__ import unicode_literals
# Copyright (C) 2015 Kristoffer Gronlund <kgronlund@suse.com>
# See COPYING for license information.
from crmsh import cibconfig
from lxml import etree
import copy
factory = cibconfig.cib_factory
def setup_function():
"set up test fixtures"
from crmsh import idmgmt
idmgmt.clear()
def teardown_function():
pass
def test_cib_schema_change():
"Changing the validate-with CIB attribute"
copy_of_cib = copy.copy(factory.cib_orig)
print(etree.tostring(copy_of_cib, pretty_print=True))
tmp_cib_objects = factory.cib_objects
factory.cib_objects = []
factory.change_schema("pacemaker-1.1")
factory.cib_objects = tmp_cib_objects
factory._copy_cib_attributes(copy_of_cib, factory.cib_orig)
assert factory.cib_attrs["validate-with"] == "pacemaker-1.1"
assert factory.cib_elem.get("validate-with") == "pacemaker-1.1"
|