本文整理汇总了Python中security.User.from_string方法的典型用法代码示例。如果您正苦于以下问题:Python User.from_string方法的具体用法?Python User.from_string怎么用?Python User.from_string使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类security.User
的用法示例。
在下文中一共展示了User.from_string方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_from_string_full
# 需要导入模块: from security import User [as 别名]
# 或者: from security.User import from_string [as 别名]
def test_from_string_full(self):
text = '''
<USER name="name" password="pass" READ="NO" EXECUTE="YES" BROWSE="NO"
DELETE="YES" WRITE="NO" />'''
user = User.from_string(text)
right = User('name', 'pass', False, True, False, True, False)
self.assertEqual(user, right)
示例2: user_test
# 需要导入模块: from security import User [as 别名]
# 或者: from security.User import from_string [as 别名]
def user_test(self):
text = '''
<USER custom="unknown">
<UNKNOWN>
<CUSTOM />
</UNKNOWN>
</USER>'''
user = User.from_string(text)
tree = user.to_lxml_element()
self.assertEqual('unknown', tree.get('custom'))
unknown = tree.findall('UNKNOWN')
self.assertEqual(1, len(unknown))
unknown = unknown[0]
custom = list(unknown)
self.assertEqual(1, len(custom))
custom = custom[0]
self.assertEqual('CUSTOM', custom.tag)
示例3: test_to_string_full
# 需要导入模块: from security import User [as 别名]
# 或者: from security.User import from_string [as 别名]
def test_to_string_full(self):
user = User('name', 'pass', True, False, True, False, True)
copy = User.from_string(str(user))
self.assertEqual(user, copy)
示例4: test_to_string_write
# 需要导入模块: from security import User [as 别名]
# 或者: from security.User import from_string [as 别名]
def test_to_string_write(self):
user = User(write = True)
copy = User.from_string(str(user))
self.assertEqual(user, copy)
示例5: test_to_string_read
# 需要导入模块: from security import User [as 别名]
# 或者: from security.User import from_string [as 别名]
def test_to_string_read(self):
user = User(read = True)
copy = User.from_string(str(user))
self.assertEqual(user, copy)
示例6: test_to_string_password
# 需要导入模块: from security import User [as 别名]
# 或者: from security.User import from_string [as 别名]
def test_to_string_password(self):
user = User(password = 'pass')
copy = User.from_string(str(user))
self.assertEqual(user, copy)
示例7: test_to_string_name
# 需要导入模块: from security import User [as 别名]
# 或者: from security.User import from_string [as 别名]
def test_to_string_name(self):
user = User(name = 'name')
copy = User.from_string(str(user))
self.assertEqual(user, copy)
示例8: test_to_string
# 需要导入模块: from security import User [as 别名]
# 或者: from security.User import from_string [as 别名]
def test_to_string(self):
user = User()
copy = User.from_string(str(user))
self.assertEqual(user, copy)
示例9: test_from_string_write
# 需要导入模块: from security import User [as 别名]
# 或者: from security.User import from_string [as 别名]
def test_from_string_write(self):
text = '<USER WRITE="NO" />'
user = User.from_string(text)
right = User(write = False)
self.assertEqual(user, right)
示例10: test_from_string_delete
# 需要导入模块: from security import User [as 别名]
# 或者: from security.User import from_string [as 别名]
def test_from_string_delete(self):
text = '<USER DELETE="NO" />'
user = User.from_string(text)
right = User(delete = False)
self.assertEqual(user, right)
示例11: test_from_string_browse
# 需要导入模块: from security import User [as 别名]
# 或者: from security.User import from_string [as 别名]
def test_from_string_browse(self):
text = '<USER BROWSE="NO" />'
user = User.from_string(text)
right = User(browse = False)
self.assertEqual(user, right)
示例12: test_from_string_execute
# 需要导入模块: from security import User [as 别名]
# 或者: from security.User import from_string [as 别名]
def test_from_string_execute(self):
text = '<USER EXECUTE="NO" />'
user = User.from_string(text)
right = User(execute = False)
self.assertEqual(user, right)
示例13: test_from_string_read
# 需要导入模块: from security import User [as 别名]
# 或者: from security.User import from_string [as 别名]
def test_from_string_read(self):
text = '<USER READ="NO" />'
user = User.from_string(text)
right = User(read = False)
self.assertEqual(user, right)
示例14: test_from_string_password
# 需要导入模块: from security import User [as 别名]
# 或者: from security.User import from_string [as 别名]
def test_from_string_password(self):
text = '<USER password="pass" />'
user = User.from_string(text)
right = User(password = 'pass')
self.assertEqual(user, right)
示例15: test_from_string_name
# 需要导入模块: from security import User [as 别名]
# 或者: from security.User import from_string [as 别名]
def test_from_string_name(self):
text = '<USER name="name" />'
user = User.from_string(text)
right = User(name = 'name')
self.assertEqual(user, right)