tests: migrate basic tools tests
This commit is contained in:
parent
6b8d58885b
commit
fe74b05049
37
qubesmgmt/tests/tools/__init__.py
Normal file
37
qubesmgmt/tests/tools/__init__.py
Normal file
@ -0,0 +1,37 @@
|
||||
# encoding=utf-8
|
||||
#
|
||||
# The Qubes OS Project, https://www.qubes-os.org/
|
||||
#
|
||||
# Copyright (C) 2015 Marek Marczykowski-Górecki
|
||||
# <marmarek@invisiblethingslab.com>
|
||||
#
|
||||
# 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 2 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 GNU General Public License along
|
||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
#
|
||||
|
||||
|
||||
import io
|
||||
import sys
|
||||
|
||||
class StdoutBuffer(object):
|
||||
def __init__(self):
|
||||
self.stdout = io.StringIO()
|
||||
|
||||
def __enter__(self):
|
||||
sys.stdout = self.stdout
|
||||
return self.stdout
|
||||
|
||||
def __exit__(self, exc_type, exc_val, exc_tb):
|
||||
sys.stdout = sys.__stdout__
|
||||
return False
|
140
qubesmgmt/tests/tools/init.py
Normal file
140
qubesmgmt/tests/tools/init.py
Normal file
@ -0,0 +1,140 @@
|
||||
#
|
||||
# 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 General Public License as published by
|
||||
# the Free Software Foundation; either version 2 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 GNU General Public License along
|
||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
#
|
||||
|
||||
import argparse
|
||||
|
||||
import qubesmgmt
|
||||
import qubesmgmt.tools
|
||||
|
||||
import qubesmgmt.tests
|
||||
|
||||
class TC_00_PropertyAction(qubesmgmt.tests.QubesTestCase):
|
||||
def test_000_default(self):
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('--property', '-p',
|
||||
action=qubesmgmt.tools.PropertyAction)
|
||||
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=qubesmgmt.tools.PropertyAction)
|
||||
|
||||
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=qubesmgmt.tools.PropertyAction)
|
||||
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=qubesmgmt.tools.PropertyAction)
|
||||
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=qubesmgmt.tools.PropertyAction)
|
||||
parser.set_defaults(properties={'testprop': 'defaultvalue'})
|
||||
|
||||
args = parser.parse_args(['-p', 'testprop=testvalue'])
|
||||
self.assertDictContainsSubset(
|
||||
{'testprop': 'testvalue'},
|
||||
args.properties)
|
||||
|
||||
|
||||
class TC_01_SinglePropertyAction(qubesmgmt.tests.QubesTestCase):
|
||||
def test_000_help(self):
|
||||
parser = argparse.ArgumentParser()
|
||||
action = parser.add_argument('--testprop', '-T',
|
||||
action=qubesmgmt.tools.SinglePropertyAction)
|
||||
self.assertIn('testprop', action.help)
|
||||
|
||||
def test_001_help_const(self):
|
||||
parser = argparse.ArgumentParser()
|
||||
action = parser.add_argument('--testprop', '-T',
|
||||
action=qubesmgmt.tools.SinglePropertyAction,
|
||||
const='testvalue')
|
||||
self.assertIn('testvalue', action.help)
|
||||
|
||||
def test_100_default(self):
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('--testprop', '-T',
|
||||
action=qubesmgmt.tools.SinglePropertyAction)
|
||||
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=qubesmgmt.tools.SinglePropertyAction)
|
||||
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=qubesmgmt.tools.SinglePropertyAction)
|
||||
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=qubesmgmt.tools.SinglePropertyAction,
|
||||
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=qubesmgmt.tools.SinglePropertyAction)
|
||||
args = parser.parse_args(['testvalue'])
|
||||
self.assertDictContainsSubset(
|
||||
{'testprop': 'testvalue'}, args.properties)
|
Loading…
Reference in New Issue
Block a user