2005-02-02 13:20:13 +01:00
|
|
|
###
|
|
|
|
# Copyright (c) 2002-2004, Jeremiah Fincher
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# * Neither the name of the author of this software nor the name of
|
|
|
|
# contributors to this software may be used to endorse or promote products
|
|
|
|
# derived from this software without specific prior written consent.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
###
|
|
|
|
|
|
|
|
from supybot.test import *
|
2021-01-25 21:57:12 +01:00
|
|
|
import supybot.conf as conf
|
|
|
|
from supybot.ircmsgs import IrcMsg
|
2021-04-24 20:33:53 +02:00
|
|
|
from copy import copy
|
2005-02-02 13:20:13 +01:00
|
|
|
|
|
|
|
class ServicesTestCase(PluginTestCase):
|
2019-08-25 14:00:11 +02:00
|
|
|
plugins = ('Services', 'Config')
|
2005-02-02 13:20:13 +01:00
|
|
|
config = {
|
|
|
|
'plugins.Services.NickServ': 'NickServ',
|
|
|
|
'plugins.Services.ChanServ': 'ChanServ',
|
2021-04-24 19:30:00 +02:00
|
|
|
}
|
2005-02-02 13:20:13 +01:00
|
|
|
|
|
|
|
def testPasswordAndIdentify(self):
|
2021-04-24 20:33:40 +02:00
|
|
|
try:
|
|
|
|
self.assertNotError('services password foo bar')
|
|
|
|
self.assertError('services identify') # Don't have a password.
|
|
|
|
finally:
|
|
|
|
self.assertNotError('services password foo ""')
|
|
|
|
|
|
|
|
try:
|
|
|
|
self.assertNotError('services password %s baz' % self.nick)
|
|
|
|
m = self.assertNotError('services identify')
|
|
|
|
self.assertTrue(m.args[0] == 'NickServ')
|
|
|
|
self.assertTrue(m.args[1].lower() == 'identify baz')
|
|
|
|
self.assertNotError('services password %s biff' % self.nick)
|
|
|
|
m = self.assertNotError('services identify')
|
|
|
|
self.assertTrue(m.args[0] == 'NickServ')
|
|
|
|
self.assertTrue(m.args[1].lower() == 'identify biff')
|
|
|
|
finally:
|
|
|
|
self.assertNotError('services password %s ""' % self.nick)
|
2005-02-02 13:20:13 +01:00
|
|
|
|
2021-04-24 19:30:00 +02:00
|
|
|
def testPasswordConfig(self):
|
2019-08-25 14:00:11 +02:00
|
|
|
self.assertNotError('config plugins.Services.nicks ""')
|
|
|
|
self.assertNotError('config network plugins.Services.nicks ""')
|
|
|
|
|
2021-04-24 20:33:40 +02:00
|
|
|
try:
|
|
|
|
self.assertNotError('services password %s bar' % self.nick)
|
|
|
|
|
|
|
|
self.assertResponse(
|
|
|
|
'config plugins.Services.nicks',
|
|
|
|
'Global: ; test: %s' % self.nick)
|
|
|
|
self.assertResponse(
|
|
|
|
'config plugins.Services.nickserv.password.%s' % self.nick,
|
|
|
|
'Global: bar; test: bar')
|
|
|
|
|
|
|
|
self.assertNotError(
|
|
|
|
'config network plugins.Services.nickserv.password.%s bar2'
|
|
|
|
% self.nick)
|
|
|
|
self.assertResponse(
|
|
|
|
'config plugins.Services.nickserv.password.%s' % self.nick,
|
|
|
|
'Global: bar; test: bar2')
|
|
|
|
self.assertResponse(
|
|
|
|
'config plugins.Services.nickserv.password.%s' % self.nick,
|
|
|
|
'Global: bar; test: bar2')
|
|
|
|
|
|
|
|
m = self.assertNotError('services identify')
|
|
|
|
self.assertTrue(m.args[0] == 'NickServ')
|
|
|
|
self.assertTrue(m.args[1].lower() == 'identify bar2')
|
|
|
|
finally:
|
|
|
|
self.assertNotError('services password %s ""' % self.nick)
|
2019-08-25 14:00:11 +02:00
|
|
|
|
2021-01-25 21:57:12 +01:00
|
|
|
def testRegisterNoExperimentalExtensions(self):
|
|
|
|
self.assertRegexp(
|
|
|
|
"register p4ssw0rd", "error: Experimental IRC extensions")
|
|
|
|
|
|
|
|
self.irc.feedMsg(IrcMsg(
|
|
|
|
command="FAIL", args=["REGISTER", "BLAH", "message"]))
|
|
|
|
self.assertIsNone(self.irc.takeMsg())
|
|
|
|
|
|
|
|
self.irc.feedMsg(IrcMsg(
|
|
|
|
command="REGISTER", args=["SUCCESS", "account", "msg"]))
|
|
|
|
self.assertIsNone(self.irc.takeMsg())
|
|
|
|
|
|
|
|
self.irc.feedMsg(IrcMsg(
|
|
|
|
command="REGISTER",
|
|
|
|
args=["VERIFICATION_REQUIRED", "account", "msg"]))
|
|
|
|
self.assertIsNone(self.irc.takeMsg())
|
|
|
|
|
|
|
|
|
2021-04-24 20:33:53 +02:00
|
|
|
class JoinsBeforeIdentifiedTestCase(PluginTestCase):
|
|
|
|
plugins = ('Services',)
|
|
|
|
config = {
|
|
|
|
'plugins.Services.noJoinsUntilIdentified': False,
|
|
|
|
}
|
|
|
|
|
|
|
|
def testSingleNetwork(self):
|
|
|
|
queuedJoin = ircmsgs.join('#test', prefix=self.prefix)
|
|
|
|
self.irc.queueMsg(queuedJoin)
|
|
|
|
self.assertEqual(self.irc.takeMsg(), queuedJoin,
|
|
|
|
'Join request did not go through.')
|
|
|
|
|
|
|
|
|
|
|
|
class NoJoinsUntilIdentifiedTestCase(PluginTestCase):
|
|
|
|
plugins = ('Services',)
|
|
|
|
config = {
|
|
|
|
'plugins.Services.noJoinsUntilIdentified': True,
|
|
|
|
}
|
|
|
|
|
|
|
|
def _identify(self, irc):
|
|
|
|
irc.feedMsg(IrcMsg(command='376', args=(self.nick,)))
|
|
|
|
msg = irc.takeMsg()
|
|
|
|
self.assertEqual(msg.command, 'PRIVMSG')
|
|
|
|
self.assertEqual(msg.args[0], 'NickServ')
|
|
|
|
irc.feedMsg(ircmsgs.notice(self.nick, 'now identified', 'NickServ'))
|
|
|
|
|
|
|
|
def testSingleNetwork(self):
|
|
|
|
try:
|
|
|
|
self.assertNotError('services password %s secret' % self.nick)
|
|
|
|
queuedJoin = ircmsgs.join('#test', prefix=self.prefix)
|
|
|
|
self.irc.queueMsg(queuedJoin)
|
|
|
|
self.assertIsNone(self.irc.takeMsg(),
|
|
|
|
'Join request went through before identification.')
|
|
|
|
self._identify(self.irc)
|
|
|
|
self.assertEqual(self.irc.takeMsg(), queuedJoin,
|
|
|
|
'Join request did not go through after identification.')
|
|
|
|
finally:
|
|
|
|
self.assertNotError('services password %s ""' % self.nick)
|
|
|
|
|
|
|
|
def testMultipleNetworks(self):
|
|
|
|
try:
|
|
|
|
net1 = copy(self)
|
|
|
|
net1.irc = getTestIrc('testnet1')
|
|
|
|
net1.assertNotError('services password %s secret' % self.nick)
|
|
|
|
net2 = copy(self)
|
|
|
|
net2.irc = getTestIrc('testnet2')
|
|
|
|
net2.assertNotError('services password %s secret' % self.nick)
|
|
|
|
queuedJoin1 = ircmsgs.join('#testchan1', prefix=self.prefix)
|
|
|
|
net1.irc.queueMsg(queuedJoin1)
|
|
|
|
self.assertIsNone(net1.irc.takeMsg(),
|
|
|
|
'Join request 1 went through before identification.')
|
|
|
|
self._identify(net1.irc)
|
|
|
|
self.assertEqual(net1.irc.takeMsg(), queuedJoin1,
|
|
|
|
'Join request 1 did not go through after identification.')
|
|
|
|
queuedJoin2 = ircmsgs.join('#testchan2', prefix=self.prefix)
|
|
|
|
net2.irc.queueMsg(queuedJoin2)
|
|
|
|
self.assertIsNone(net2.irc.takeMsg(),
|
|
|
|
'Join request 2 went through before identification.')
|
|
|
|
self._identify(net2.irc)
|
|
|
|
self.assertEqual(net2.irc.takeMsg(), queuedJoin2,
|
|
|
|
'Join request 2 did not go through after identification.')
|
|
|
|
finally:
|
|
|
|
net1.assertNotError('services password %s ""' % self.nick)
|
|
|
|
net2.assertNotError('services password %s ""' % self.nick)
|
|
|
|
|
|
|
|
|
2021-01-25 21:57:12 +01:00
|
|
|
class ExperimentalServicesTestCase(PluginTestCase):
|
|
|
|
plugins = ["Services"]
|
|
|
|
timeout = 0.1
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
super().setUp()
|
|
|
|
conf.supybot.protocols.irc.experimentalExtensions.setValue(True)
|
|
|
|
self._initialCaps = self.irc.state.capabilities_ls.copy()
|
|
|
|
self.irc.state.capabilities_ls["draft/register"] = None
|
|
|
|
self.irc.state.capabilities_ls["labeled-response"] = None
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
self.irc.state.capabilities_ls = self._initialCaps
|
|
|
|
conf.supybot.protocols.irc.experimentalExtensions.setValue(False)
|
|
|
|
super().tearDown()
|
|
|
|
|
|
|
|
def testRegisterSupportError(self):
|
|
|
|
old_caps = self.irc.state.capabilities_ls.copy()
|
|
|
|
try:
|
|
|
|
del self.irc.state.capabilities_ls["labeled-response"]
|
|
|
|
self.assertRegexp(
|
|
|
|
"register p4ssw0rd",
|
|
|
|
"error: This network does not support labeled-response.")
|
|
|
|
|
|
|
|
del self.irc.state.capabilities_ls["draft/register"]
|
|
|
|
self.assertRegexp(
|
|
|
|
"register p4ssw0rd",
|
|
|
|
"error: This network does not support draft/register.")
|
|
|
|
finally:
|
|
|
|
self.irc.state.capabilities_ls = old_caps
|
|
|
|
|
|
|
|
def testRegisterRequireEmail(self):
|
|
|
|
old_caps = self.irc.state.capabilities_ls.copy()
|
|
|
|
try:
|
|
|
|
self.irc.state.capabilities_ls["draft/register"] = "email-required"
|
|
|
|
self.assertRegexp(
|
|
|
|
"register p4ssw0rd",
|
|
|
|
"error: This network requires an email address to register.")
|
|
|
|
finally:
|
|
|
|
self.irc.state.capabilities_ls = old_caps
|
|
|
|
|
|
|
|
def testRegisterSuccess(self):
|
|
|
|
m = self.getMsg("register p4ssw0rd")
|
|
|
|
label = m.server_tags.pop("label")
|
|
|
|
self.assertEqual(m, IrcMsg(command="REGISTER", args=["*", "p4ssw0rd"]))
|
|
|
|
self.irc.feedMsg(IrcMsg(
|
|
|
|
server_tags={"label": label},
|
|
|
|
command="REGISTER",
|
|
|
|
args=["SUCCESS", "accountname", "welcome!"]
|
|
|
|
))
|
|
|
|
self.assertResponse(
|
|
|
|
"",
|
|
|
|
"Registration of account accountname on test succeeded: welcome!")
|
|
|
|
|
2021-01-25 22:00:51 +01:00
|
|
|
def testRegisterSuccessBatch(self):
|
|
|
|
# oragono replies with a batch
|
|
|
|
m = self.getMsg("register p4ssw0rd")
|
|
|
|
label = m.server_tags.pop("label")
|
|
|
|
self.assertEqual(m, IrcMsg(command="REGISTER", args=["*", "p4ssw0rd"]))
|
|
|
|
|
|
|
|
batch_name = "Services_testRegisterSuccessBatch"
|
|
|
|
self.irc.feedMsg(IrcMsg(
|
|
|
|
server_tags={"label": label},
|
|
|
|
command="BATCH",
|
|
|
|
args=["+" + batch_name, "labeled-response"]
|
|
|
|
))
|
|
|
|
self.irc.feedMsg(IrcMsg(
|
|
|
|
server_tags={"batch": batch_name},
|
|
|
|
command="REGISTER",
|
|
|
|
args=["SUCCESS", "accountname", "welcome!"]
|
|
|
|
))
|
|
|
|
self.irc.feedMsg(IrcMsg(
|
|
|
|
server_tags={"batch": batch_name},
|
|
|
|
command="NOTICE",
|
|
|
|
args=[self.irc.nick, "Registration succeeded blah blah blah"]
|
|
|
|
))
|
|
|
|
self.irc.feedMsg(IrcMsg(
|
|
|
|
command="BATCH",
|
|
|
|
args=["-" + batch_name],
|
|
|
|
))
|
|
|
|
|
|
|
|
self.assertResponse(
|
|
|
|
"",
|
|
|
|
"Registration of account accountname on test succeeded: welcome!")
|
|
|
|
|
2021-01-25 21:57:12 +01:00
|
|
|
def testRegisterSuccessEmail(self):
|
|
|
|
m = self.getMsg("register p4ssw0rd foo@example.org")
|
|
|
|
label = m.server_tags.pop("label")
|
|
|
|
self.assertEqual(m, IrcMsg(
|
|
|
|
command="REGISTER", args=["foo@example.org", "p4ssw0rd"]))
|
|
|
|
self.irc.feedMsg(IrcMsg(
|
|
|
|
server_tags={"label": label},
|
|
|
|
command="REGISTER",
|
|
|
|
args=["SUCCESS", "accountname", "welcome!"]
|
|
|
|
))
|
|
|
|
self.assertResponse(
|
|
|
|
"",
|
|
|
|
"Registration of account accountname on test succeeded: welcome!")
|
|
|
|
|
|
|
|
def testRegisterVerify(self):
|
|
|
|
m = self.getMsg("register p4ssw0rd")
|
|
|
|
label = m.server_tags.pop("label")
|
|
|
|
self.assertEqual(m, IrcMsg(command="REGISTER", args=["*", "p4ssw0rd"]))
|
|
|
|
self.irc.feedMsg(IrcMsg(
|
|
|
|
server_tags={"label": label},
|
|
|
|
command="REGISTER",
|
|
|
|
args=["VERIFICATION_REQUIRED", "accountname", "check your emails"]
|
|
|
|
))
|
|
|
|
self.assertResponse(
|
|
|
|
"",
|
|
|
|
"Registration of accountname on test requires verification "
|
|
|
|
"to complete: check your emails")
|
|
|
|
|
|
|
|
m = self.getMsg("verify accountname c0de")
|
|
|
|
label = m.server_tags.pop("label")
|
|
|
|
self.assertEqual(m, IrcMsg(
|
|
|
|
command="VERIFY", args=["accountname", "c0de"]))
|
|
|
|
self.irc.feedMsg(IrcMsg(
|
|
|
|
server_tags={"label": label},
|
|
|
|
command="VERIFY",
|
|
|
|
args=["SUCCESS", "accountname", "welcome!"]
|
|
|
|
))
|
|
|
|
self.assertResponse(
|
|
|
|
"",
|
|
|
|
"Verification of account accountname on test succeeded: welcome!")
|
|
|
|
|
2021-01-25 22:00:51 +01:00
|
|
|
def testRegisterVerifyBatch(self):
|
|
|
|
m = self.getMsg("register p4ssw0rd")
|
|
|
|
label = m.server_tags.pop("label")
|
|
|
|
self.assertEqual(m, IrcMsg(command="REGISTER", args=["*", "p4ssw0rd"]))
|
|
|
|
self.irc.feedMsg(IrcMsg(
|
|
|
|
server_tags={"label": label},
|
|
|
|
command="REGISTER",
|
|
|
|
args=["VERIFICATION_REQUIRED", "accountname", "check your emails"]
|
|
|
|
))
|
|
|
|
self.assertResponse(
|
|
|
|
"",
|
|
|
|
"Registration of accountname on test requires verification "
|
|
|
|
"to complete: check your emails")
|
|
|
|
|
|
|
|
m = self.getMsg("verify accountname c0de")
|
|
|
|
label = m.server_tags.pop("label")
|
|
|
|
self.assertEqual(m, IrcMsg(
|
|
|
|
command="VERIFY", args=["accountname", "c0de"]))
|
|
|
|
|
|
|
|
batch_name = "Services_testVerifySuccessBatch"
|
|
|
|
self.irc.feedMsg(IrcMsg(
|
|
|
|
server_tags={"label": label},
|
|
|
|
command="BATCH",
|
|
|
|
args=["+" + batch_name, "labeled-response"]
|
|
|
|
))
|
|
|
|
self.irc.feedMsg(IrcMsg(
|
|
|
|
server_tags={"batch": batch_name},
|
|
|
|
command="VERIFY",
|
|
|
|
args=["SUCCESS", "accountname", "welcome!"]
|
|
|
|
))
|
|
|
|
self.irc.feedMsg(IrcMsg(
|
|
|
|
server_tags={"batch": batch_name},
|
|
|
|
command="NOTICE",
|
|
|
|
args=[self.irc.nick, "Verification succeeded blah blah blah"]
|
|
|
|
))
|
|
|
|
self.irc.feedMsg(IrcMsg(
|
|
|
|
command="BATCH",
|
|
|
|
args=["-" + batch_name],
|
|
|
|
))
|
|
|
|
|
|
|
|
self.assertResponse(
|
|
|
|
"",
|
|
|
|
"Verification of account accountname on test succeeded: welcome!")
|
|
|
|
|
2005-02-02 13:20:13 +01:00
|
|
|
|
2006-02-11 16:52:51 +01:00
|
|
|
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79:
|
2005-02-02 13:20:13 +01:00
|
|
|
|