Esempio n. 1
0
    def test_mailing_list_3(self):
        '''Remote short URL with trailing slash'''
        ml = MailingList('http://mlstats.org/')
        target = 'mlstats.org'
        expected = {
            'location': 'http://mlstats.org',
            'alias': 'mlstats.org',
            'compressed_dir': os.path.join(COMPRESSED_DIR, target),
            'is_local': False,
            'is_remote': True,
        }

        result = {
            'location': ml.location,
            'alias': ml.alias,
            'compressed_dir': ml.compressed_dir,
            'is_local': ml.is_local(),
            'is_remote': ml.is_remote(),
        }
        self.check_single_dict(expected, result)
Esempio n. 2
0
    def test_mailing_list_5(self):
        '''Local directory with trailing slash'''
        ml = MailingList('/mlstats.org/pipermail/mlstats-list/')
        target = 'mlstats.org/pipermail/mlstats-list'
        expected = {
            'location': '/mlstats.org/pipermail/mlstats-list',
            'alias': 'mlstats-list',
            'compressed_dir': os.path.join(COMPRESSED_DIR, target),
            'is_local': True,
            'is_remote': False,
        }

        result = {
            'location': ml.location,
            'alias': ml.alias,
            'compressed_dir': ml.compressed_dir,
            'is_local': ml.is_local(),
            'is_remote': ml.is_remote(),
        }
        self.check_single_dict(expected, result)
Esempio n. 3
0
    def test_mailing_list_3(self):
        '''Remote short URL with trailing slash'''
        ml = MailingList('http://mlstats.org/')
        target = 'mlstats.org'
        expected = {
            'location': 'http://mlstats.org',
            'alias': 'mlstats.org',
            'compressed_dir': os.path.join(COMPRESSED_DIR, target),
            'is_local': False,
            'is_remote': True,
        }

        result = {
            'location': ml.location,
            'alias': ml.alias,
            'compressed_dir': ml.compressed_dir,
            'is_local': ml.is_local(),
            'is_remote': ml.is_remote(),
        }
        self.check_single_dict(expected, result)
Esempio n. 4
0
    def test_mailing_list_5(self):
        '''Local directory with trailing slash'''
        ml = MailingList('/mlstats.org/pipermail/mlstats-list/')
        target = 'mlstats.org/pipermail/mlstats-list'
        expected = {
            'location': '/mlstats.org/pipermail/mlstats-list',
            'alias': 'mlstats-list',
            'compressed_dir': os.path.join(COMPRESSED_DIR, target),
            'is_local': True,
            'is_remote': False,
        }

        result = {
            'location': ml.location,
            'alias': ml.alias,
            'compressed_dir': ml.compressed_dir,
            'is_local': ml.is_local(),
            'is_remote': ml.is_remote(),
        }
        self.check_single_dict(expected, result)
Esempio n. 5
0
    def test_mailing_list_9(self):
        '''Local URL (file://) with trailing slash'''
        base = 'file:///mlstats.org/pipermail/mlstats-list/'
        ml = MailingList(base)
        target = '/mlstats.org/pipermail/mlstats-list'.lstrip(os.path.sep)
        expected = {
            'location': '/mlstats.org/pipermail/mlstats-list',
            'alias': 'mlstats-list',
            'compressed_dir': os.path.join(COMPRESSED_DIR, target),
            'is_local': True,
            'is_remote': False,
        }

        result = {
            'location': ml.location,
            'alias': ml.alias,
            'compressed_dir': ml.compressed_dir,
            'is_local': ml.is_local(),
            'is_remote': ml.is_remote(),
        }
        self.check_single_dict(expected, result)
Esempio n. 6
0
    def test_mailing_list_9(self):
        '''Local URL (file://) with trailing slash'''
        base = 'file:///mlstats.org/pipermail/mlstats-list/'
        ml = MailingList(base)
        target = '/mlstats.org/pipermail/mlstats-list'.lstrip(os.path.sep)
        expected = {
            'location': '/mlstats.org/pipermail/mlstats-list',
            'alias': 'mlstats-list',
            'compressed_dir': os.path.join(COMPRESSED_DIR, target),
            'is_local': True,
            'is_remote': False,
        }

        result = {
            'location': ml.location,
            'alias': ml.alias,
            'compressed_dir': ml.compressed_dir,
            'is_local': ml.is_local(),
            'is_remote': ml.is_remote(),
        }
        self.check_single_dict(expected, result)
Esempio n. 7
0
    def test_mailing_list_7(self):
        '''Local directory in .mlstats with trailing slash'''
        base = os.path.sep.join([COMPRESSED_DIR,
                                'mlstats.org/pipermail/mlstats-list/'])
        ml = MailingList(base)
        target = base.strip(os.path.sep)
        expected = {
            'location': base.rstrip(os.path.sep),
            'alias': 'mlstats-list',
            'compressed_dir': os.path.join(COMPRESSED_DIR, target),
            'is_local': True,
            'is_remote': False,
        }

        result = {
            'location': ml.location,
            'alias': ml.alias,
            'compressed_dir': ml.compressed_dir,
            'is_local': ml.is_local(),
            'is_remote': ml.is_remote(),
        }
        self.check_single_dict(expected, result)
Esempio n. 8
0
    def test_mailing_list_7(self):
        '''Local directory in .mlstats with trailing slash'''
        base = os.path.sep.join(
            [COMPRESSED_DIR, 'mlstats.org/pipermail/mlstats-list/'])
        ml = MailingList(base)
        target = base.strip(os.path.sep)
        expected = {
            'location': base.rstrip(os.path.sep),
            'alias': 'mlstats-list',
            'compressed_dir': os.path.join(COMPRESSED_DIR, target),
            'is_local': True,
            'is_remote': False,
        }

        result = {
            'location': ml.location,
            'alias': ml.alias,
            'compressed_dir': ml.compressed_dir,
            'is_local': ml.is_local(),
            'is_remote': ml.is_remote(),
        }
        self.check_single_dict(expected, result)