core-admin-client/qubesadmin/tests/tools/init.py

139 lines
5.4 KiB
Python
Raw Normal View History

2017-03-08 16:21:37 +01:00
#
# The Qubes OS Project, https://www.qubes-os.org/
#
# Copyright (C) 2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
# Copyright (C) 2015 Wojtek Porczyk <woju@invisiblethingslab.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
2017-03-08 16:21:37 +01:00
# (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 Lesser General Public License for more details.
2017-03-08 16:21:37 +01:00
#
# You should have received a copy of the GNU Lesser General Public License along
# with this program; if not, see <http://www.gnu.org/licenses/>.
2017-03-08 16:21:37 +01:00
import argparse
import qubesadmin
import qubesadmin.tools
2017-03-08 16:21:37 +01:00
import qubesadmin.tests
2017-03-08 16:21:37 +01:00
class TC_00_PropertyAction(qubesadmin.tests.QubesTestCase):
2017-03-08 16:21:37 +01:00
def test_000_default(self):
parser = argparse.ArgumentParser()
parser.add_argument('--property', '-p',
action=qubesadmin.tools.PropertyAction)
2017-03-08 16:21:37 +01:00
parser.set_defaults(properties={'defaultprop': 'defaultvalue'})
args = parser.parse_args([])
self.assertDictContainsSubset(
{'defaultprop': 'defaultvalue'}, args.properties)
def test_001_set_prop(self):
parser = argparse.ArgumentParser()
parser.add_argument('--property', '-p',
action=qubesadmin.tools.PropertyAction)
2017-03-08 16:21:37 +01:00
args = parser.parse_args(['-p', 'testprop=testvalue'])
self.assertDictContainsSubset(
{'testprop': 'testvalue'}, args.properties)
def test_002_set_prop_2(self):
parser = argparse.ArgumentParser()
parser.add_argument('--property', '-p',
action=qubesadmin.tools.PropertyAction)
2017-03-08 16:21:37 +01:00
parser.set_defaults(properties={'defaultprop': 'defaultvalue'})
args = parser.parse_args(
['-p', 'testprop=testvalue', '-p', 'testprop2=testvalue2'])
self.assertDictContainsSubset(
{'testprop': 'testvalue', 'testprop2': 'testvalue2'},
args.properties)
def test_003_set_prop_with_default(self):
parser = argparse.ArgumentParser()
parser.add_argument('--property', '-p',
action=qubesadmin.tools.PropertyAction)
2017-03-08 16:21:37 +01:00
parser.set_defaults(properties={'defaultprop': 'defaultvalue'})
args = parser.parse_args(['-p', 'testprop=testvalue'])
self.assertDictContainsSubset(
{'testprop': 'testvalue', 'defaultprop': 'defaultvalue'},
args.properties)
def test_003_set_prop_override_default(self):
# pylint: disable=invalid-name
parser = argparse.ArgumentParser()
parser.add_argument('--property', '-p',
action=qubesadmin.tools.PropertyAction)
2017-03-08 16:21:37 +01:00
parser.set_defaults(properties={'testprop': 'defaultvalue'})
args = parser.parse_args(['-p', 'testprop=testvalue'])
self.assertDictContainsSubset(
{'testprop': 'testvalue'},
args.properties)
class TC_01_SinglePropertyAction(qubesadmin.tests.QubesTestCase):
2017-03-08 16:21:37 +01:00
def test_000_help(self):
parser = argparse.ArgumentParser()
action = parser.add_argument('--testprop', '-T',
action=qubesadmin.tools.SinglePropertyAction)
2017-03-08 16:21:37 +01:00
self.assertIn('testprop', action.help)
def test_001_help_const(self):
parser = argparse.ArgumentParser()
action = parser.add_argument('--testprop', '-T',
action=qubesadmin.tools.SinglePropertyAction,
2017-03-08 16:21:37 +01:00
const='testvalue')
self.assertIn('testvalue', action.help)
def test_100_default(self):
parser = argparse.ArgumentParser()
parser.add_argument('--testprop', '-T',
action=qubesadmin.tools.SinglePropertyAction)
2017-03-08 16:21:37 +01:00
parser.set_defaults(properties={'testprop': 'defaultvalue'})
args = parser.parse_args([])
self.assertDictContainsSubset(
{'testprop': 'defaultvalue'}, args.properties)
def test_101_set_prop(self):
parser = argparse.ArgumentParser()
parser.add_argument('--testprop', '-T',
action=qubesadmin.tools.SinglePropertyAction)
2017-03-08 16:21:37 +01:00
args = parser.parse_args(['-T', 'testvalue'])
self.assertDictContainsSubset(
{'testprop': 'testvalue'}, args.properties)
def test_102_set_prop_dest(self):
parser = argparse.ArgumentParser()
parser.add_argument('--testprop', '-T', dest='otherprop',
action=qubesadmin.tools.SinglePropertyAction)
2017-03-08 16:21:37 +01:00
args = parser.parse_args(['-T', 'testvalue'])
self.assertDictContainsSubset(
{'otherprop': 'testvalue'}, args.properties)
def test_103_set_prop_const(self):
parser = argparse.ArgumentParser()
parser.add_argument('--testprop', '-T',
action=qubesadmin.tools.SinglePropertyAction,
2017-03-08 16:21:37 +01:00
const='testvalue')
args = parser.parse_args(['-T'])
self.assertDictContainsSubset(
{'testprop': 'testvalue'}, args.properties)
def test_104_set_prop_positional(self):
parser = argparse.ArgumentParser()
parser.add_argument('testprop',
action=qubesadmin.tools.SinglePropertyAction)
2017-03-08 16:21:37 +01:00
args = parser.parse_args(['testvalue'])
self.assertDictContainsSubset(
{'testprop': 'testvalue'}, args.properties)