Coverage for tests/test_wrap.py : 30%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
#!/usr/bin/env python
# # LSST Data Management System # Copyright 2008, 2009, 2010 LSST Corporation. # # This product includes software developed by the # LSST Project (http://www.lsst.org/). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the LSST License Statement and # the GNU General Public License along with this program. If not, # see <http://www.lsstcorp.org/LegalNotices/>. #
"""Test making a C++ Control object from a Config object.""" config = testLib.ConfigObject() config.foo = 2 config.bar.append("baz") control = config.makeControl() self.assertTrue(testLib.checkControl(control, config.foo, config.bar.list()))
"""Test reading the values from a C++ Control object into a Config object.""" control = testLib.ControlObject() control.foo = 3 control.bar = ["zot", "yox"] config = testLib.ConfigObject() config.readControl(control) self.assertTrue(testLib.checkControl(control, config.foo, config.bar.list()))
"""Test that C++ Control object defaults are correctly used as defaults for Config objects.""" config = testLib.ConfigObject() control = testLib.ControlObject() self.assertTrue(testLib.checkControl(control, config.foo, config.bar.list()))
"""Test that C++ Control object pickles correctly""" config = testLib.ConfigObject() new = pickle.loads(pickle.dumps(config)) self.assertTrue(config.compare(new)) self.assertTrue(new.compare(config))
"""Test making a C++ Control object from a Config object.""" config = testLib.OuterConfigObject() self.assertIsInstance(config.a, testLib.InnerConfigObject) config.a.p = 5.0 config.a.q = 7 config.b = 2 control = config.makeControl() self.assertTrue(testLib.checkNestedControl(control, config.a.p, config.a.q, config.b))
"""Test reading the values from a C++ Control object into a Config object.""" control = testLib.OuterControlObject() control.a.p = 6.0 control.a.q = 4 control.b = 3 config = testLib.OuterConfigObject() config.readControl(control) self.assertTrue(testLib.checkNestedControl(control, config.a.p, config.a.q, config.b))
"""Test that C++ Control object defaults are correctly used as defaults for Config objects.""" config = testLib.OuterConfigObject() control = testLib.OuterControlObject() self.assertTrue(testLib.checkNestedControl(control, config.a.p, config.a.q, config.b))
"""Test that we can wrap C++ Control objects with int64 members.""" config = testLib.OuterConfigObject() control = testLib.OuterControlObject() self.assertTrue(testLib.checkNestedControl(control, config.a.p, config.a.q, config.b)) self.assertGreater(config.a.q, 1 << 30) self.assertGreater(control.a.q, 1 << 30)
lsst.utils.tests.init()
lsst.utils.tests.init() unittest.main() |