本文整理汇总了Python中poweradminurt.PoweradminurtPlugin类的典型用法代码示例。如果您正苦于以下问题:Python PoweradminurtPlugin类的具体用法?Python PoweradminurtPlugin怎么用?Python PoweradminurtPlugin使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了PoweradminurtPlugin类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: mixin_cmd_nuke
class mixin_cmd_nuke(object):
def setUp(self):
super(mixin_cmd_nuke, self).setUp()
self.conf = CfgConfigParser()
self.conf.loadFromString("""
[commands]
panuke-nuke: 20
""")
self.p = PoweradminurtPlugin(self.console, self.conf)
self.init_default_cvar()
self.p.onLoadConfig()
self.p.onStartup()
self.sleep_patcher = patch.object(time, 'sleep')
self.sleep_patcher.start()
self.console.say = Mock()
self.console.saybig = Mock()
self.console.write = Mock()
self.moderator.connects("2")
def tearDown(self):
super(mixin_cmd_nuke, self).tearDown()
self.sleep_patcher.stop()
def test_no_argument(self):
self.moderator.message_history = []
self.moderator.says("!nuke")
self.assertEqual(['Invalid data, try !help panuke'], self.moderator.message_history)
self.console.write.assert_has_calls([])
def test_unknown_player(self):
self.moderator.message_history = []
self.moderator.says("!nuke f00")
self.assertEqual(['No players found matching f00'], self.moderator.message_history)
self.console.write.assert_has_calls([])
def test_joe(self):
self.joe.connects('3')
self.moderator.message_history = []
self.moderator.says("!nuke joe")
self.assertEqual([], self.moderator.message_history)
self.assertEqual([], self.joe.message_history)
self.console.write.assert_has_calls([call('nuke 3')])
def test_joe_multi(self):
def _start_new_thread(function, args):
function(*args)
with patch.object(thread, 'start_new_thread', wraps=_start_new_thread):
self.joe.connects('3')
self.moderator.message_history = []
self.moderator.says("!nuke joe 3")
self.assertEqual([], self.moderator.message_history)
self.assertEqual([], self.joe.message_history)
self.console.write.assert_has_calls([call('nuke 3'), call('nuke 3'), call('nuke 3')])
示例2: mixin_cmd_version
class mixin_cmd_version(object):
def setUp(self):
super(mixin_cmd_version, self).setUp()
self.conf = CfgConfigParser()
self.conf.loadFromString("""
[commands]
paversion-version: 20
""")
self.p = PoweradminurtPlugin(self.console, self.conf)
self.init_default_cvar()
self.p.onLoadConfig()
self.p.onStartup()
self.sleep_patcher = patch.object(time, 'sleep')
self.sleep_patcher.start()
self.console.say = Mock()
self.console.saybig = Mock()
self.console.write = Mock()
self.moderator.connects("2")
def tearDown(self):
super(mixin_cmd_version, self).tearDown()
self.sleep_patcher.stop()
def test_nominal(self):
self.moderator.message_history = []
self.moderator.says("!version")
self.assertEqual(['I am PowerAdminUrt version %s by %s' % (plugin_version, plugin_author)], self.moderator.message_history)
示例3: Test_cmd_lms
class Test_cmd_lms(Iourt42TestCase):
def setUp(self):
super(Test_cmd_lms, self).setUp()
self.conf = CfgConfigParser()
self.conf.loadFromString("""
[commands]
palms-lms: 20 ; change game type to Last Man Standing
""")
self.p = PoweradminurtPlugin(self.console, self.conf)
when(self.console).getCvar('timelimit').thenReturn(Cvar('timelimit', value=20))
when(self.console).getCvar('g_maxGameClients').thenReturn(Cvar('g_maxGameClients', value=16))
when(self.console).getCvar('sv_maxclients').thenReturn(Cvar('sv_maxclients', value=16))
when(self.console).getCvar('sv_privateClients').thenReturn(Cvar('sv_privateClients', value=0))
when(self.console).getCvar('g_allowvote').thenReturn(Cvar('g_allowvote', value=0))
self.p.onLoadConfig()
self.p.onStartup()
self.console.say = Mock()
self.console.write = Mock()
self.moderator.connects("2")
def test_nominal(self):
self.moderator.message_history = []
self.moderator.says("!lms")
self.console.write.assert_has_calls([call('g_gametype 1')])
self.assertEqual(['game type changed to Last Man Standing'], self.moderator.message_history)
示例4: Test_cmd_goto
class Test_cmd_goto(Iourt42TestCase):
def setUp(self):
super(Test_cmd_goto, self).setUp()
self.conf = CfgConfigParser()
self.conf.loadFromString("""
[commands]
paskins-skins: 20 ; set the use of client skins <on/off>
""")
self.p = PoweradminurtPlugin(self.console, self.conf)
self.init_default_cvar()
self.p.onLoadConfig()
self.p.onStartup()
self.console.say = Mock()
self.console.write = Mock()
self.moderator.connects("2")
def test_missing_parameter(self):
self.moderator.message_history = []
self.moderator.says("!skins")
self.assertListEqual(["Invalid or missing data, try !help paskins"], self.moderator.message_history)
def test_junk(self):
self.moderator.message_history = []
self.moderator.says("!skins qsdf")
self.assertListEqual(["Invalid or missing data, try !help paskins"], self.moderator.message_history)
def test_on(self):
self.moderator.says("!skins on")
self.console.write.assert_has_calls([call('set g_skins "1"')])
def test_off(self):
self.moderator.says("!skins off")
self.console.write.assert_has_calls([call('set g_skins "0"')])
示例5: mixin_cmd_pasetnextmap
class mixin_cmd_pasetnextmap(object):
def setUp(self):
super(mixin_cmd_pasetnextmap, self).setUp()
self.conf = CfgConfigParser()
self.conf.loadFromString("""
[commands]
pasetnextmap-snmap: 20
""")
self.p = PoweradminurtPlugin(self.console, self.conf)
when(self.console).getCvar('timelimit').thenReturn(Cvar('timelimit', value=20))
when(self.console).getCvar('g_maxGameClients').thenReturn(Cvar('g_maxGameClients', value=16))
when(self.console).getCvar('sv_maxclients').thenReturn(Cvar('sv_maxclients', value=16))
when(self.console).getCvar('sv_privateClients').thenReturn(Cvar('sv_privateClients', value=0))
when(self.console).getCvar('g_allowvote').thenReturn(Cvar('g_allowvote', value=0))
self.p.onLoadConfig()
self.p.onStartup()
self.sleep_patcher = patch.object(time, 'sleep')
self.sleep_patcher.start()
self.console.say = Mock()
self.console.saybig = Mock()
self.console.write = Mock()
self.moderator.connects("2")
def tearDown(self):
super(mixin_cmd_pasetnextmap, self).tearDown()
self.sleep_patcher.stop()
def test_missing_parameter(self):
self.moderator.clearMessageHistory()
self.moderator.says("!snmap")
self.assertEqual(['Invalid or missing data, try !help setnextmap'], self.moderator.message_history)
def test_existing_map(self):
# GIVEN
when(self.console).getMapsSoundingLike('f00').thenReturn('f00')
# WHEN
self.moderator.clearMessageHistory()
self.moderator.says("!snmap f00")
# THEN
verify(self.console).getMapsSoundingLike('f00')
self.assertEqual(['nextmap set to f00'], self.moderator.message_history)
def test_suggestions(self):
# GIVEN
when(self.console).getMapsSoundingLike('f00').thenReturn(['f001', 'foo2'])
# WHEN
self.moderator.clearMessageHistory()
self.moderator.says("!snmap f00")
# THEN
verify(self.console).getMapsSoundingLike('f00')
self.assertEqual(['do you mean : f001, foo2 ?'], self.moderator.message_history)
示例6: Test_cmd_ident
class Test_cmd_ident(Iourt41TestCase):
def setUp(self):
super(Test_cmd_ident, self).setUp()
self.conf = CfgConfigParser()
self.conf.loadFromString("""
[commands]
paident-id: 20
[special]
paident_full_level: 40
""")
self.p = PoweradminurtPlugin(self.console, self.conf)
self.init_default_cvar()
self.parser_conf._settings.update({'b3': {"time_zone": "GMT", "time_format": "%I:%M%p %Z %m/%d/%y"}})
self.p.onLoadConfig()
self.p.onStartup()
self.console.say = Mock()
self.console.write = Mock()
self.moderator.connects("2")
self.moderator.message_history = []
def test_no_parameter(self):
# WHEN
self.moderator.says("!id")
# THEN
self.assertListEqual(["Your id is @2"], self.moderator.message_history)
def test_junk(self):
# WHEN
self.moderator.says("!id qsdfsqdq sqfd qf")
# THEN
self.assertListEqual(["No players found matching qsdfsqdq"], self.moderator.message_history)
def test_nominal_under_full_level(self):
# GIVEN
self.joe.pbid = "joe_pbid"
self.joe.connects('3')
# WHEN
with patch('time.time', return_value=0.0) as time_mock:
self.moderator.says("!id joe")
# THEN
self.assertListEqual(['12:00AM GMT 01/01/70 @3 Joe'], self.moderator.message_history)
def test_nominal_above_full_level(self):
# GIVEN
self.joe.pbid = "joe_pbid"
self.joe.connects('3')
self.joe.timeAdd = 90*60.0
self.superadmin.connects('1')
# WHEN
with patch('time.time', return_value=180*60.0):
self.superadmin.says("!id joe")
# THEN
self.assertListEqual(['03:00AM GMT 01/01/70 @3 Joe 01:30AM GMT 01/01/70'], self.superadmin.message_history)
示例7: mixin_conf
class mixin_conf(object):
def setUp(self):
super(mixin_conf, self).setUp()
self.conf = CfgConfigParser()
self.p = PoweradminurtPlugin(self.console, self.conf)
# when starting the PoweradminurtPlugin expects the game server to provide a few cvar values
when(self.console).getCvar('timelimit').thenReturn(Cvar('timelimit', value=20))
when(self.console).getCvar('g_maxGameClients').thenReturn(Cvar('g_maxGameClients', value=16))
when(self.console).getCvar('sv_maxclients').thenReturn(Cvar('sv_maxclients', value=16))
when(self.console).getCvar('sv_privateClients').thenReturn(Cvar('sv_privateClients', value=0))
when(self.console).getCvar('g_allowvote').thenReturn(Cvar('g_allowvote', value=0))
logger = logging.getLogger('output')
logger.setLevel(logging.INFO)
def test_empty_config(self):
self.conf.loadFromString("""
[foo]
""")
self.p.onLoadConfig()
# should not raise any error
####################################### matchmode #######################################
def test_matchmode__plugins_disable(self):
# empty
self.conf.loadFromString("""
[matchmode]
plugins_disable:
""")
self.p.LoadMatchMode()
self.assertEqual([], self.p.match_plugin_disable)
# one element
self.conf.loadFromString("""
[matchmode]
plugins_disable: foo
""")
self.p.LoadMatchMode()
self.assertEqual(['foo'], self.p.match_plugin_disable)
# many
self.conf.loadFromString("""
[matchmode]
plugins_disable: foo, bar
""")
self.p.LoadMatchMode()
self.assertEqual(['foo', 'bar'], self.p.match_plugin_disable)
示例8: mixin_cmd_paset
class mixin_cmd_paset(object):
def setUp(self):
super(mixin_cmd_paset, self).setUp()
self.conf = CfgConfigParser()
self.conf.loadFromString(
"""
[commands]
paset: 20
"""
)
self.p = PoweradminurtPlugin(self.console, self.conf)
self.init_default_cvar()
self.p.onLoadConfig()
self.p.onStartup()
self.sleep_patcher = patch.object(time, "sleep")
self.sleep_patcher.start()
self.setCvar_patcher = patch.object(self.console, "setCvar")
self.setCvar_mock = self.setCvar_patcher.start()
self.moderator.connects("2")
def assert_setCvar_calls(self, expected_calls):
self.assertListEqual(expected_calls, self.setCvar_mock.mock_calls)
def tearDown(self):
super(mixin_cmd_paset, self).tearDown()
self.sleep_patcher.stop()
self.setCvar_patcher.stop()
def test_nominal(self):
# WHEN
self.moderator.says("!paset sv_foo bar")
# THEN
self.assert_setCvar_calls([call("sv_foo", "bar")])
self.assertListEqual([], self.moderator.message_history)
def test_no_parameter(self):
# WHEN
self.moderator.says("!paset")
# THEN
self.assert_setCvar_calls([])
self.assertListEqual(["Invalid or missing data, try !help paset"], self.moderator.message_history)
def test_no_value(self):
# WHEN
self.moderator.says("!paset sv_foo")
# THEN
self.assert_setCvar_calls([call("sv_foo", "")])
self.assertListEqual([], self.moderator.message_history)
示例9: Test_cmd_kill
class Test_cmd_kill(Iourt42TestCase):
def setUp(self):
super(Test_cmd_kill, self).setUp()
self.conf = CfgConfigParser()
self.conf.loadFromString("""
[commands]
pakill-kill: 20
""")
self.p = PoweradminurtPlugin(self.console, self.conf)
when(self.console).getCvar('timelimit').thenReturn(Cvar('timelimit', value=20))
when(self.console).getCvar('g_maxGameClients').thenReturn(Cvar('g_maxGameClients', value=16))
when(self.console).getCvar('sv_maxclients').thenReturn(Cvar('sv_maxclients', value=16))
when(self.console).getCvar('sv_privateClients').thenReturn(Cvar('sv_privateClients', value=0))
when(self.console).getCvar('g_allowvote').thenReturn(Cvar('g_allowvote', value=0))
self.p.onLoadConfig()
self.p.onStartup()
self.console.say = Mock()
self.console.write = Mock()
self.moderator.connects("2")
def tearDown(self):
super(Test_cmd_kill, self).tearDown()
def test_no_argument(self):
self.moderator.message_history = []
self.moderator.says("!kill")
self.assertEqual(['Invalid data, try !help panuke'], self.moderator.message_history)
self.console.write.assert_has_calls([])
def test_unknown_player(self):
self.moderator.message_history = []
self.moderator.says("!kill f00")
self.assertEqual(['No players found matching f00'], self.moderator.message_history)
self.console.write.assert_has_calls([])
def test_joe(self):
self.joe.connects('3')
self.moderator.message_history = []
self.moderator.says("!kill joe")
self.assertEqual([], self.moderator.message_history)
self.assertEqual([], self.joe.message_history)
self.console.write.assert_has_calls([call('smite 3')])
示例10: setUp
def setUp(self):
super(mixin_conf, self).setUp()
self.conf = CfgConfigParser()
self.p = PoweradminurtPlugin(self.console, self.conf)
self.init_default_cvar()
logger = logging.getLogger('output')
logger.setLevel(logging.INFO)
示例11: setUp
def setUp(self):
super(Test_cmd_pagear, self).setUp()
self.conf = CfgConfigParser()
self.conf.loadFromString("""
[commands]
pagear-gear: 20
""")
self.p = PoweradminurtPlugin(self.console, self.conf)
when(self.console).getCvar('timelimit').thenReturn(Cvar('timelimit', value=20))
when(self.console).getCvar('g_maxGameClients').thenReturn(Cvar('g_maxGameClients', value=16))
when(self.console).getCvar('sv_maxclients').thenReturn(Cvar('sv_maxclients', value=16))
when(self.console).getCvar('sv_privateClients').thenReturn(Cvar('sv_privateClients', value=0))
when(self.console).getCvar('g_allowvote').thenReturn(Cvar('g_allowvote', value=0))
when(self.console).getCvar('g_modversion').thenReturn(Cvar('g_modversion', value="4.1"))
self.given_forbidden_weapon_are(G_NONE)
self.p.onLoadConfig()
self.p.onStartup()
self.sleep_patcher = patch.object(time, 'sleep')
self.sleep_patcher.start()
self.setCvar_patcher = patch.object(self.console, 'setCvar')
self.setCvar_mock = self.setCvar_patcher.start()
self.superadmin.connects("2")
示例12: setUp
def setUp(self):
super(Test_headshotcounter, self).setUp()
self.conf = CfgConfigParser()
self.conf.loadFromString("""
[headshotcounter]
# enable the headshot counter?
hs_enable: True
# reset counts? Options: no / map / round
reset_vars: no
# set broadcast to True if you want the counter to appear in the upper left, False is in chatarea
broadcast: True
# Announce every single headshot?
announce_all: True
# Announce percentages (after 5 headshots)
announce_percentages: True
# Only show percentages larger than next threshold
percent_min: 10
# Advise victims to wear a helmet?
warn_helmet: True
# After how many headshots?
warn_helmet_nr: 7
# Advise victims to wear kevlar?
warn_kevlar: True
# After how many torso hits?
warn_kevlar_nr: 50
""")
self.p = PoweradminurtPlugin(self.console, self.conf)
self.init_default_cvar()
self.p.onLoadConfig()
self.p.onStartup()
self.console.say = Mock()
self.console.write = Mock()
示例13: setUp
def setUp(self):
super(mixin_cmd_pasetnextmap, self).setUp()
self.conf = CfgConfigParser()
self.conf.loadFromString("""
[commands]
pasetnextmap-snmap: 20
""")
self.p = PoweradminurtPlugin(self.console, self.conf)
when(self.console).getCvar('timelimit').thenReturn(Cvar('timelimit', value=20))
when(self.console).getCvar('g_maxGameClients').thenReturn(Cvar('g_maxGameClients', value=16))
when(self.console).getCvar('sv_maxclients').thenReturn(Cvar('sv_maxclients', value=16))
when(self.console).getCvar('sv_privateClients').thenReturn(Cvar('sv_privateClients', value=0))
when(self.console).getCvar('g_allowvote').thenReturn(Cvar('g_allowvote', value=0))
self.p.onLoadConfig()
self.p.onStartup()
self.sleep_patcher = patch.object(time, 'sleep')
self.sleep_patcher.start()
self.console.say = Mock()
self.console.saybig = Mock()
self.console.write = Mock()
self.moderator.connects("2")
示例14: setUp
def setUp(self):
super(mixin_name_checker, self).setUp()
self.conf = CfgConfigParser()
self.conf.loadFromString("""
[namechecker]
checkdupes: True
checkunknown: True
checkbadnames: True
""")
self.p = PoweradminurtPlugin(self.console, self.conf)
when(self.console).getCvar('timelimit').thenReturn(Cvar('timelimit', value=20))
when(self.console).getCvar('g_maxGameClients').thenReturn(Cvar('g_maxGameClients', value=16))
when(self.console).getCvar('sv_maxclients').thenReturn(Cvar('sv_maxclients', value=16))
when(self.console).getCvar('sv_privateClients').thenReturn(Cvar('sv_privateClients', value=0))
when(self.console).getCvar('g_allowvote').thenReturn(Cvar('g_allowvote', value=0))
self.p.onLoadConfig()
self.p.onStartup()
self.sleep_patcher = patch.object(time, 'sleep')
self.sleep_patcher.start()
self.console.say = Mock()
self.console.write = Mock()
self.p._ignoreTill = 0
示例15: Test_cmd_captain
class Test_cmd_captain(Iourt42TestCase):
def setUp(self):
super(Test_cmd_captain, self).setUp()
self.conf = CfgConfigParser()
self.conf.loadFromString("""
[commands]
pacaptain-captain: 40 ; set the the given client as the captain for its team
""")
self.p = PoweradminurtPlugin(self.console, self.conf)
self.init_default_cvar()
self.p.onLoadConfig()
self.p.onStartup()
self.console.say = Mock()
self.console.write = Mock()
self.admin.connects("2")
self.moderator.connects("3")
def test_match_mode_deactivated(self):
self.p._matchmode = False
self.admin.message_history = []
self.admin.says("!captain")
self.assertListEqual(["!pacaptain command is available only in match mode"], self.admin.message_history)
def test_client_spectator(self):
self.p._matchmode = True
self.admin.message_history = []
self.admin.team = TEAM_SPEC
self.admin.says("!captain")
self.assertListEqual(["Level-40-Admin is a spectator! - Can't set captain status"], self.admin.message_history)
def test_client_with_no_parameters(self):
self.p._matchmode = True
self.admin.message_history = []
self.admin.team = TEAM_RED
self.admin.says("!captain")
self.console.write.assert_has_calls([call('forcecaptain %s' % self.admin.cid)])
def test_client_with_parameters(self):
self.p._matchmode = True
self.admin.message_history = []
self.admin.team = TEAM_RED
self.moderator.message_history = []
self.moderator.team = TEAM_BLUE
self.admin.says("!captain 3")
self.console.write.assert_has_calls([call('forcecaptain %s' % self.moderator.cid)])
self.assertListEqual(["You were set as captain for the BLUE team by the Admin"], self.moderator.message_history)