123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- from pwman.data import factory
- from pwman.util import config
- from pwman import which, default_config
- from pwman.ui import get_ui_platform
- import os
- import os.path
- import sys
- from pwman.util.callback import Callback
- PwmanCliNew, OSX = get_ui_platform(sys.platform)
- class DummyCallback(Callback):
- def getinput(self, question):
- return u'12345'
- def getsecret(self, question):
- return u'12345'
- class DummyCallback2(Callback):
- def getinput(self, question):
- return u'newsecret'
- def getsecret(self, question):
- return u'wrong'
- class DummyCallback3(Callback):
- def getinput(self, question):
- return u'newsecret'
- def getsecret(self, question):
- ans = '12345'
- return ans
- class DummyCallback4(Callback):
- def getinput(self, question):
- return u'newsecret'
- def getsecret(self, question):
- return u'newsecret'
- default_config['Database'] = {'type': 'SQLite',
- 'filename':
- os.path.join(os.path.dirname(__file__),
- "test.pwman.db")
- }
- with open(os.path.join(os.path.dirname(__file__), 'test.conf'), 'w') as f:
- f.write("""
- [Global]
- xsel = /usr/bin/xsel
- colors = yes
- umask = 0100
- cls_timeout = 5
- [Database]
- type = SQLite
- """)
- class SetupTester(object):
- def __init__(self, dbver=None, filename=None):
- self.configp = config.Config(os.path.join(os.path.dirname(__file__),
- "test.conf"),
- default_config)
- self.configp.set_value('Database', 'filename',
- os.path.join(os.path.dirname(__file__),
- "test.pwman.db"))
- if not OSX:
- self.xselpath = which("xsel")
- self.configp.set_value("Global", "xsel", self.xselpath)
- else:
- self.xselpath = "xsel"
- self.dbver = dbver
- self.filename = filename
- def clean(self):
- if os.path.exists(self.configp.get_value('Database', 'filename')):
- os.remove(self.configp.get_value('Database', 'filename'))
- if os.path.exists(os.path.join(os.path.dirname(__file__),
- 'testing_config')):
- os.remove(os.path.join(os.path.dirname(__file__),
- 'testing_config'))
- def create(self):
- dbtype = 'SQLite'
- db = factory.create(dbtype, self.dbver, self.filename)
- self.cli = PwmanCliNew(db, self.xselpath, DummyCallback,
- config_parser=self.configp)
|