Files @ db7589b3fc82
Branch filter:

Location: kallithea/rhodecode/tests/test_libs.py - annotation

Marcin Kuzminski
Merged in nansenat16/rhodecode/default (pull request #41)
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
df04752daa64
cf51bbfb120e
fced98787f40
89efedac4e6c
2afe9320d5e6
fced98787f40
2afe9320d5e6
2afe9320d5e6
2afe9320d5e6
2afe9320d5e6
2afe9320d5e6
2afe9320d5e6
2afe9320d5e6
2afe9320d5e6
2afe9320d5e6
2afe9320d5e6
2afe9320d5e6
2afe9320d5e6
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
8ecfed1d8f8b
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
8ecfed1d8f8b
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
8ecfed1d8f8b
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
fced98787f40
54687aa00724
8ecfed1d8f8b
ea5ff843b200
ea5ff843b200
ea5ff843b200
ea5ff843b200
ea5ff843b200
ea5ff843b200
ea5ff843b200
ea5ff843b200
ea5ff843b200
ea5ff843b200
ea5ff843b200
ea5ff843b200
54687aa00724
# -*- coding: utf-8 -*-
"""
    rhodecode.tests.test_libs
    ~~~~~~~~~~~~~~~~~~~~~~~~~


    Package for testing various lib/helper functions in rhodecode

    :created_on: Jun 9, 2011
    :copyright: (C) 2011-2012 Marcin Kuzminski <marcin@python-works.com>
    :license: GPLv3, see COPYING for more details.
"""
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.



import unittest
from rhodecode.tests import *

proto = 'http'
TEST_URLS = [
    ('%s://127.0.0.1' % proto, ['%s://' % proto, '127.0.0.1'],
     '%s://127.0.0.1' % proto),
    ('%s://marcink@127.0.0.1' % proto, ['%s://' % proto, '127.0.0.1'],
     '%s://127.0.0.1' % proto),
    ('%s://marcink:pass@127.0.0.1' % proto, ['%s://' % proto, '127.0.0.1'],
     '%s://127.0.0.1' % proto),
    ('%s://127.0.0.1:8080' % proto, ['%s://' % proto, '127.0.0.1', '8080'],
     '%s://127.0.0.1:8080' % proto),
    ('%s://domain.org' % proto, ['%s://' % proto, 'domain.org'],
     '%s://domain.org' % proto),
    ('%s://user:pass@domain.org:8080' % proto, ['%s://' % proto, 'domain.org',
                                                '8080'],
     '%s://domain.org:8080' % proto),
]

proto = 'https'
TEST_URLS += [
    ('%s://127.0.0.1' % proto, ['%s://' % proto, '127.0.0.1'],
     '%s://127.0.0.1' % proto),
    ('%s://marcink@127.0.0.1' % proto, ['%s://' % proto, '127.0.0.1'],
     '%s://127.0.0.1' % proto),
    ('%s://marcink:pass@127.0.0.1' % proto, ['%s://' % proto, '127.0.0.1'],
     '%s://127.0.0.1' % proto),
    ('%s://127.0.0.1:8080' % proto, ['%s://' % proto, '127.0.0.1', '8080'],
     '%s://127.0.0.1:8080' % proto),
    ('%s://domain.org' % proto, ['%s://' % proto, 'domain.org'],
     '%s://domain.org' % proto),
    ('%s://user:pass@domain.org:8080' % proto, ['%s://' % proto, 'domain.org',
                                                '8080'],
     '%s://domain.org:8080' % proto),
]


class TestLibs(unittest.TestCase):

    def test_uri_filter(self):
        from rhodecode.lib.utils2 import uri_filter

        for url in TEST_URLS:
            self.assertEqual(uri_filter(url[0]), url[1])

    def test_credentials_filter(self):
        from rhodecode.lib.utils2 import credentials_filter

        for url in TEST_URLS:
            self.assertEqual(credentials_filter(url[0]), url[2])

    def test_str2bool(self):
        from rhodecode.lib.utils2 import str2bool
        test_cases = [
            ('t', True),
            ('true', True),
            ('y', True),
            ('yes', True),
            ('on', True),
            ('1', True),
            ('Y', True),
            ('yeS', True),
            ('Y', True),
            ('TRUE', True),
            ('T', True),
            ('False', False),
            ('F', False),
            ('FALSE', False),
            ('0', False),
            ('-1', False),
            ('', False), ]

        for case in test_cases:
            self.assertEqual(str2bool(case[0]), case[1])

    def test_mention_extractor(self):
        from rhodecode.lib.utils2 import extract_mentioned_users
        sample = (
            "@first hi there @marcink here's my email marcin@email.com "
            "@lukaszb check @one_more22 it pls @ ttwelve @D[] @one@two@three "
            "@MARCIN    @maRCiN @2one_more22 @john please see this http://org.pl "
            "@marian.user just do it @marco-polo and next extract @marco_polo "
            "user.dot  hej ! not-needed maril@domain.org"
        )

        s = sorted([
        'first', 'marcink', 'lukaszb', 'one_more22', 'MARCIN', 'maRCiN', 'john',
        'marian.user', 'marco-polo', 'marco_polo'
        ], key=lambda k: k.lower())
        self.assertEqual(s, extract_mentioned_users(sample))