Ejemplo n.º 1
0
    def test_gi_with_garbage_flags(self):
        self.client.last_message['#bots']['me'] = 'this is a FOO message foo'

        resp = meant_to_say.meant_to_say(self.client, '#bots', 'me',
                                         's/foo/bar/gic',
                                         [('foo', 'bar', '/gic')])
        assert resp == 'me meant to say: this is a bar message bar'
Ejemplo n.º 2
0
def test_meant_to_say_returns_modified():
    client = stub(last_message=defaultdict(dict))
    client.last_message['#bots']['me'] = 'this is a foo message'

    resp = meant_to_say.meant_to_say(client, '#bots', 'me', 's/foo/bar',
                                     [('foo', 'bar', '')])
    assert resp == 'me meant to say: this is a bar message'
Ejemplo n.º 3
0
    def test_single_replacement(self):
        self.client.last_message['#bots']['me'] = 'this is a foo message foo'

        resp = meant_to_say.meant_to_say(
            self.client,
            '#bots',
            'me',
            's/foo/bar/',
            [('foo', 'bar', '/')]
        )
        assert resp == 'me meant to say: this is a bar message foo'
Ejemplo n.º 4
0
    def test_gi_with_garbage_flags(self):
        self.client.last_message['#bots']['me'] = 'this is a FOO message foo'

        resp = meant_to_say.meant_to_say(
            self.client,
            '#bots',
            'me',
            's/foo/bar/gic',
            [('foo', 'bar', '/gic')]
        )
        assert resp == 'me meant to say: this is a bar message bar'
Ejemplo n.º 5
0
    def test_i(self):
        self.client.last_message['#bots']['me'] = 'this is a FOO message'

        resp = meant_to_say.meant_to_say(
            self.client,
            '#bots',
            'me',
            's/foo/bar/i',
            [('foo', 'bar', '/i')]
        )
        assert resp == 'me meant to say: this is a bar message'
Ejemplo n.º 6
0
def test_meant_to_say_none_when_no_last_message():
    client = stub(last_message=defaultdict(dict))
    assert meant_to_say.meant_to_say(client, '#bots', 'me', 's/foo/bar',
                                     [('foo', 'bar', '')]) is None
Ejemplo n.º 7
0
    def test_i(self):
        self.client.last_message['#bots']['me'] = 'this is a FOO message'

        resp = meant_to_say.meant_to_say(self.client, '#bots', 'me',
                                         's/foo/bar/i', [('foo', 'bar', '/i')])
        assert resp == 'me meant to say: this is a bar message'
Ejemplo n.º 8
0
    def test_single_replacement(self):
        self.client.last_message['#bots']['me'] = 'this is a foo message foo'

        resp = meant_to_say.meant_to_say(self.client, '#bots', 'me',
                                         's/foo/bar/', [('foo', 'bar', '/')])
        assert resp == 'me meant to say: this is a bar message foo'
Ejemplo n.º 9
0
def test_meant_to_say_none_when_not_modified():
    client = stub(last_message=defaultdict(dict))
    client.last_message['#bots']['me'] = 'this is a message'

    assert meant_to_say.meant_to_say(client, '#bots', 'me', 's/foo/bar',
                                     [('foo', 'bar', '')]) is None
Ejemplo n.º 10
0
def test_meant_to_say_none_when_no_last_message():
    client = stub(last_message=defaultdict(dict))
    assert meant_to_say.meant_to_say(client, '#bots', 'me', 's/foo/bar', [('foo', 'bar', '')]) is None
Ejemplo n.º 11
0
def test_meant_to_say_none_when_not_modified():
    client = stub(last_message=defaultdict(dict))
    client.last_message['#bots']['me'] = 'this is a message'

    assert meant_to_say.meant_to_say(client, '#bots', 'me', 's/foo/bar', [('foo', 'bar', '')]) is None
Ejemplo n.º 12
0
def test_meant_to_say_returns_modified():
    client = stub(last_message=defaultdict(dict))
    client.last_message['#bots']['me'] = 'this is a foo message'

    resp = meant_to_say.meant_to_say(client, '#bots', 'me', 's/foo/bar', [('foo', 'bar', '')])
    assert resp == 'me meant to say: this is a bar message'
Ejemplo n.º 13
0
def test_meant_to_say_none_when_no_last_message():
    client = stub(last_message=defaultdict(dict))
    assert meant_to_say.meant_to_say(client, "#bots", "me", "s/foo/bar", [("foo", "bar")]) is None
Ejemplo n.º 14
0
def test_meant_to_say_none_when_not_modified():
    client = stub(last_message=defaultdict(dict))
    client.last_message["#bots"]["me"] = "this is a message"

    assert meant_to_say.meant_to_say(client, "#bots", "me", "s/foo/bar", [("foo", "bar")]) is None
Ejemplo n.º 15
0
def test_meant_to_say_returns_modified():
    client = stub(last_message=defaultdict(dict))
    client.last_message["#bots"]["me"] = "this is a foo message"

    resp = meant_to_say.meant_to_say(client, "#bots", "me", "s/foo/bar", [("foo", "bar")])
    assert resp == "me meant to say: this is a bar message"