コード例 #1
0
ファイル: test_mbox.py プロジェクト: shongoku/perceval
    def test_fetch_from_date(self):
        """Test whether a list of messages is returned since a given date"""

        from_date = datetime.datetime(2008, 1, 1)

        backend = MBox('http://example.com/', self.tmp_path)
        messages = [m for m in backend.fetch(from_date=from_date)]

        expected = [('<*****@*****.**>',
                     '86315b479b4debe320b59c881c1e375216cbf333', 1291210000.0),
                    ('<*****@*****.**>',
                     '86315b479b4debe320b59c881c1e375216cbf333', 1291210000.0),
                    ('<*****@*****.**>',
                     '51535703010a3e63d5272202942c283394cdebca', 1205746505.0),
                    ('<019801ca633f$f4376140$dca623c0$@[email protected]>',
                     '302e314c07242bb4750351286862f49e758f3e17', 1257992964.0),
                    ('<*****@*****.**>',
                     '86315b479b4debe320b59c881c1e375216cbf333', 1291210000.0)]

        self.assertEqual(len(messages), len(expected))

        for x in range(len(messages)):
            message = messages[x]
            self.assertEqual(message['data']['Message-ID'], expected[x][0])
            self.assertEqual(message['origin'], 'http://example.com/')
            self.assertEqual(message['uuid'], expected[x][1])
            self.assertEqual(message['updated_on'], expected[x][2])
            self.assertEqual(message['category'], 'message')
            self.assertEqual(message['tag'], 'http://example.com/')
コード例 #2
0
ファイル: test_mbox.py プロジェクト: acs/perceval
    def test_fetch_from_date(self):
        """Test whether a list of messages is returned since a given date"""

        from_date = datetime.datetime(2008, 1, 1)

        backend = MBox("http://example.com/", self.tmp_path)
        messages = [m for m in backend.fetch(from_date=from_date)]

        expected = [
            ("<*****@*****.**>", "86315b479b4debe320b59c881c1e375216cbf333", 1291210000.0),
            ("<*****@*****.**>", "86315b479b4debe320b59c881c1e375216cbf333", 1291210000.0),
            ("<*****@*****.**>", "51535703010a3e63d5272202942c283394cdebca", 1205746505.0),
            (
                "<019801ca633f$f4376140$dca623c0$@[email protected]>",
                "302e314c07242bb4750351286862f49e758f3e17",
                1257992964.0,
            ),
            ("<*****@*****.**>", "86315b479b4debe320b59c881c1e375216cbf333", 1291210000.0),
        ]

        self.assertEqual(len(messages), len(expected))

        for x in range(len(messages)):
            message = messages[x]
            self.assertEqual(message["data"]["Message-ID"], expected[x][0])
            self.assertEqual(message["origin"], "http://example.com/")
            self.assertEqual(message["uuid"], expected[x][1])
            self.assertEqual(message["updated_on"], expected[x][2])
コード例 #3
0
ファイル: test_mbox.py プロジェクト: acs/perceval
    def test_ignore_messages(self):
        """Test if it ignores some messages without mandatory fields"""

        backend = MBox("http://example.com/", self.tmp_error_path)
        messages = [m for m in backend.fetch()]

        # There are only two valid message on the mbox
        self.assertEqual(len(messages), 2)

        expected = {
            "From": "goran at domain.com ( Göran Lastname )",
            "Date": "Wed, 01 Dec 2010 14:26:40 +0100",
            "Subject": "[List-name] Protocol Buffers anyone?",
            "Message-ID": "<*****@*****.**>",
            "unixfrom": "goran at domain.com  Wed Dec  1 08:26:40 2010",
            "body": {
                "plain": "Hi!\n\nA message in English, with a signature "
                "with a different encoding.\n\nregards, G?ran"
                "\n"
            },
        }

        message = messages[0]["data"]
        self.assertDictEqual(message, expected)

        # On the second message, the only change is that 'Message-id'
        # is replaced by 'Message-ID'
        message = messages[1]["data"]
        self.assertDictEqual(message, expected)
コード例 #4
0
ファイル: test_mbox.py プロジェクト: albertinisg/perceval
    def test_fetch(self):
        """Test whether it parses a set of mbox files"""

        backend = MBox('http://example.com/', self.tmp_path)
        messages = [m for m in backend.fetch()]

        expected = [('<*****@*****.**>', '86315b479b4debe320b59c881c1e375216cbf333', 1291210000.0),
                    ('<*****@*****.**>', '86315b479b4debe320b59c881c1e375216cbf333', 1291210000.0),
                    ('<*****@*****.**>', 'bd0185317b013beb21ad3ea04635de3db72496ad', 1095843820.0),
                    ('<*****@*****.**>', '51535703010a3e63d5272202942c283394cdebca', 1205746505.0),
                    ('<019801ca633f$f4376140$dca623c0$@[email protected]>', '302e314c07242bb4750351286862f49e758f3e17', 1257992964.0),
                    ('<*****@*****.**>', 'ddda42422c55d08d56c017a6f128fcd7447484ea', 1043881350.0),
                    ('<*****@*****.**>', '86315b479b4debe320b59c881c1e375216cbf333', 1291210000.0),
                    ('<*****@*****.**>', '4e255acab6442424ecbf05cb0feb1eccb587f7de', 1030123489.0)]

        self.assertEqual(len(messages), len(expected))

        for x in range(len(messages)):
            message = messages[x]
            self.assertEqual(message['data']['Message-ID'], expected[x][0])
            self.assertEqual(message['origin'], 'http://example.com/')
            self.assertEqual(message['uuid'], expected[x][1])
            self.assertEqual(message['updated_on'], expected[x][2])
            self.assertEqual(message['category'], 'message')
            self.assertEqual(message['tag'], 'http://example.com/')
コード例 #5
0
ファイル: test_mbox.py プロジェクト: albertinisg/perceval
    def test_ignore_messages(self):
        """Test if it ignores some messages without mandatory fields"""

        backend = MBox('http://example.com/', self.tmp_error_path)
        messages = [m for m in backend.fetch()]

        # There are only two valid message on the mbox
        self.assertEqual(len(messages), 2)

        expected = {
                    'From' : 'goran at domain.com ( Göran Lastname )',
                    'Date' : 'Wed, 01 Dec 2010 14:26:40 +0100',
                    'Subject' : '[List-name] Protocol Buffers anyone?',
                    'Message-ID' : '<*****@*****.**>',
                    'unixfrom' : 'goran at domain.com  Wed Dec  1 08:26:40 2010',
                    'body': {
                             'plain' : "Hi!\n\nA message in English, with a signature "
                                       "with a different encoding.\n\nregards, G?ran"
                                       "\n",
                            }
                   }

        message = messages[0]['data']
        self.assertDictEqual(message, expected)

        # On the second message, the only change is that 'Message-id'
        # is replaced by 'Message-ID'
        message = messages[1]['data']
        self.assertDictEqual(message, expected)
コード例 #6
0
ファイル: test_mbox.py プロジェクト: shongoku/perceval
    def test_fetch(self):
        """Test whether it parses a set of mbox files"""

        backend = MBox('http://example.com/', self.tmp_path)
        messages = [m for m in backend.fetch()]

        expected = [('<*****@*****.**>',
                     '86315b479b4debe320b59c881c1e375216cbf333', 1291210000.0),
                    ('<*****@*****.**>',
                     '86315b479b4debe320b59c881c1e375216cbf333', 1291210000.0),
                    ('<*****@*****.**>',
                     'bd0185317b013beb21ad3ea04635de3db72496ad', 1095843820.0),
                    ('<*****@*****.**>',
                     '51535703010a3e63d5272202942c283394cdebca', 1205746505.0),
                    ('<019801ca633f$f4376140$dca623c0$@[email protected]>',
                     '302e314c07242bb4750351286862f49e758f3e17', 1257992964.0),
                    ('<*****@*****.**>',
                     'ddda42422c55d08d56c017a6f128fcd7447484ea', 1043881350.0),
                    ('<*****@*****.**>',
                     '86315b479b4debe320b59c881c1e375216cbf333', 1291210000.0),
                    ('<*****@*****.**>',
                     '4e255acab6442424ecbf05cb0feb1eccb587f7de', 1030123489.0)]

        self.assertEqual(len(messages), len(expected))

        for x in range(len(messages)):
            message = messages[x]
            self.assertEqual(message['data']['Message-ID'], expected[x][0])
            self.assertEqual(message['origin'], 'http://example.com/')
            self.assertEqual(message['uuid'], expected[x][1])
            self.assertEqual(message['updated_on'], expected[x][2])
            self.assertEqual(message['category'], 'message')
            self.assertEqual(message['tag'], 'http://example.com/')
コード例 #7
0
ファイル: test_mbox.py プロジェクト: shongoku/perceval
    def test_ignore_messages(self):
        """Test if it ignores some messages without mandatory fields"""

        backend = MBox('http://example.com/', self.tmp_error_path)
        messages = [m for m in backend.fetch()]

        # There are only two valid message on the mbox
        self.assertEqual(len(messages), 2)

        expected = {
            'From': 'goran at domain.com ( Göran Lastname )',
            'Date': 'Wed, 01 Dec 2010 14:26:40 +0100',
            'Subject': '[List-name] Protocol Buffers anyone?',
            'Message-ID': '<*****@*****.**>',
            'unixfrom': 'goran at domain.com  Wed Dec  1 08:26:40 2010',
            'body': {
                'plain':
                "Hi!\n\nA message in English, with a signature "
                "with a different encoding.\n\nregards, G?ran"
                "\n",
            }
        }

        message = messages[0]['data']
        self.assertDictEqual(message, expected)

        # On the second message, the only change is that 'Message-id'
        # is replaced by 'Message-ID'
        message = messages[1]['data']
        self.assertDictEqual(message, expected)
コード例 #8
0
ファイル: test_mbox.py プロジェクト: shongoku/perceval
    def test_parse_mbox(self):
        """Test whether it parses a mbox file"""

        messages = MBox.parse_mbox(self.files['single'])
        result = [msg for msg in messages]

        self.assertEqual(len(result), 1)

        message = {k: v for k, v in result[0].items()}

        expected = {
            'From': 'goran at domain.com ( Göran Lastname )',
            'Date': 'Wed, 01 Dec 2010 14:26:40 +0100',
            'Subject': '[List-name] Protocol Buffers anyone?',
            'Message-ID': '<*****@*****.**>',
            'unixfrom': 'goran at domain.com  Wed Dec  1 08:26:40 2010',
            'body': {
                'plain':
                "Hi!\n\nA message in English, with a signature "
                "with a different encoding.\n\nregards, G?ran"
                "\n\n\n",
            }
        }

        self.assertDictEqual(message, expected)
コード例 #9
0
    def test_initialization(self):
        """Test whether attributes are initializated"""

        backend = MBox('http://example.com/', self.tmp_path, origin='test')

        self.assertEqual(backend.uri, 'http://example.com/')
        self.assertEqual(backend.dirpath, self.tmp_path)
        self.assertEqual(backend.origin, 'test')

        # When origin is empty or None it will be set to
        # the value in uri
        backend = MBox('http://example.com/', self.tmp_path)
        self.assertEqual(backend.origin, 'http://example.com/')

        backend = MBox('http://example.com/', self.tmp_path, origin='')
        self.assertEqual(backend.origin, 'http://example.com/')
コード例 #10
0
ファイル: test_mbox.py プロジェクト: acs/perceval
    def test_parse_unknown_encoding_mbox(self):
        """Check whether it parses a mbox that contains an unknown encoding"""

        messages = MBox.parse_mbox(self.files["unknown"])
        result = [msg for msg in messages]

        self.assertEqual(len(result), 1)
        self.assertEqual(result[0]["From"], '"\udcc3\udc94\udcc2\udcac\udcc2\udcb4\udcc3\udc8f" <*****@*****.**>')
コード例 #11
0
ファイル: test_mbox.py プロジェクト: acs/perceval
    def test_ignore_file_errors(self):
        """Files with IO errors should be ignored"""

        tmp_path_ign = tempfile.mkdtemp(prefix="perceval_")

        shutil.copy("data/mbox_single.mbox", tmp_path_ign)
        shutil.copy("data/mbox_multipart.mbox", tmp_path_ign)

        # Update file mode to make it unable to access
        os.chmod(os.path.join(tmp_path_ign, "mbox_multipart.mbox"), 0o000)

        backend = MBox("http://example.com/", tmp_path_ign)
        messages = [m for m in backend.fetch()]

        # Only one message is read
        self.assertEqual(len(messages), 1)
        self.assertEqual(messages[0]["data"]["Message-ID"], "<*****@*****.**>")
        self.assertEqual(messages[0]["data"]["Date"], "Wed, 01 Dec 2010 14:26:40 +0100")

        shutil.rmtree(tmp_path_ign)
コード例 #12
0
ファイル: test_mbox.py プロジェクト: shongoku/perceval
    def test_parse_unknown_encoding_mbox(self):
        """Check whether it parses a mbox that contains an unknown encoding"""

        messages = MBox.parse_mbox(self.files['unknown'])
        result = [msg for msg in messages]

        self.assertEqual(len(result), 1)
        self.assertEqual(
            result[0]['From'],
            '"\udcc3\udc94\udcc2\udcac\udcc2\udcb4\udcc3\udc8f" <*****@*****.**>'
        )
コード例 #13
0
ファイル: test_mbox.py プロジェクト: albertinisg/perceval
    def test_ignore_file_errors(self):
        """Files with IO errors should be ignored"""

        tmp_path_ign = tempfile.mkdtemp(prefix='perceval_')

        shutil.copy('data/mbox_single.mbox', tmp_path_ign)
        shutil.copy('data/mbox_multipart.mbox', tmp_path_ign)

        # Update file mode to make it unable to access
        os.chmod(os.path.join(tmp_path_ign, 'mbox_multipart.mbox'), 0o000)

        backend = MBox('http://example.com/', tmp_path_ign)
        messages = [m for m in backend.fetch()]

        # Only one message is read
        self.assertEqual(len(messages), 1)
        self.assertEqual(messages[0]['data']['Message-ID'], '<*****@*****.**>')
        self.assertEqual(messages[0]['data']['Date'], 'Wed, 01 Dec 2010 14:26:40 +0100')

        shutil.rmtree(tmp_path_ign)
コード例 #14
0
ファイル: test_mbox.py プロジェクト: shongoku/perceval
    def test_ignore_file_errors(self):
        """Files with IO errors should be ignored"""

        tmp_path_ign = tempfile.mkdtemp(prefix='perceval_')

        shutil.copy('data/mbox_single.mbox', tmp_path_ign)
        shutil.copy('data/mbox_multipart.mbox', tmp_path_ign)

        # Update file mode to make it unable to access
        os.chmod(os.path.join(tmp_path_ign, 'mbox_multipart.mbox'), 0o000)

        backend = MBox('http://example.com/', tmp_path_ign)
        messages = [m for m in backend.fetch()]

        # Only one message is read
        self.assertEqual(len(messages), 1)
        self.assertEqual(messages[0]['data']['Message-ID'],
                         '<*****@*****.**>')
        self.assertEqual(messages[0]['data']['Date'],
                         'Wed, 01 Dec 2010 14:26:40 +0100')

        shutil.rmtree(tmp_path_ign)
コード例 #15
0
ファイル: test_mbox.py プロジェクト: shongoku/perceval
    def test_parse_complex_mbox(self):
        """Test whether it parses a complex mbox file"""

        messages = MBox.parse_mbox(self.files['complex'])
        result = [msg for msg in messages]

        self.assertEqual(len(result), 2)

        m0 = {k: v for k, v in result[0].items()}
        self.assertEqual(len(m0.keys()), 34)
        self.assertEqual(m0['Message-ID'],
                         '<*****@*****.**>')
        self.assertEqual(m0['Date'], 'Wed, 22 Sep 2004 02:03:40 -0700')
        self.assertEqual(m0['From'],
                         '"Eugenia Loli-Queru" <*****@*****.**>')
        self.assertEqual(
            m0['To'],
            '<*****@*****.**>, <*****@*****.**>')
        self.assertEqual(m0['Cc'], None)
        self.assertEqual(m0['Subject'], 'Re: Revisiting the Gnome Bindings')
        self.assertEqual(m0['unixfrom'],
                         '[email protected]  Wed Sep 22 05:05:28 2004')

        expected_body = {
            'plain':
            ">I don't think it's fair to blame the Foundation [...]\n"
            ">of packaging since it's really not (just) a case [...]\n"
            ">marketing.\n\n"
            "No matter what is really to blame, it ultimately [...]\n\n"
            "[...]\n\n"
            "Rgds,\n"
            "Eugenia\n"
        }
        self.assertDictEqual(m0['body'], expected_body)

        m1 = {k: v for k, v in result[1].items()}
        self.assertEqual(len(m1.keys()), 35)
        self.assertEqual(m1['Message-ID'], '<*****@*****.**>')
        self.assertEqual(m1['Date'], 'Mon, 17 Mar 2008 10:35:05 +0100')
        self.assertEqual(m1['From'], '[email protected] (Danilo  Šegan )')
        self.assertEqual(m1['To'],
                         'Simos Xenitellis <*****@*****.**>')
        self.assertEqual(
            m1['Cc'], '[email protected], '
            '"Nikolay V. Shmyrev" <*****@*****.**>,\n\t'
            'Brian Nitz <*****@*****.**>, '
            'Bastien Nocera <*****@*****.**>')
        self.assertEqual(m1['Subject'], 'Re: Low memory hacks')
        self.assertEqual(
            m1['unixfrom'],
            '[email protected]  Mon Mar 17 09:35:25 2008')
コード例 #16
0
ファイル: test_mbox.py プロジェクト: grimoirelab/perceval
    def test_fetch_from_date(self):
        """Test whether a list of messages is returned since a given date"""

        from_date = datetime.datetime(2008, 1, 1)

        backend = MBox('http://example.com/', self.tmp_path)
        messages = [m for m in backend.fetch(from_date=from_date)]

        expected = [('<*****@*****.**>', '86315b479b4debe320b59c881c1e375216cbf333', 1291210000.0),
                    ('<*****@*****.**>', '86315b479b4debe320b59c881c1e375216cbf333', 1291210000.0),
                    ('<*****@*****.**>', '51535703010a3e63d5272202942c283394cdebca', 1205746505.0),
                    ('<019801ca633f$f4376140$dca623c0$@[email protected]>', '302e314c07242bb4750351286862f49e758f3e17', 1257992964.0),
                    ('<*****@*****.**>', '86315b479b4debe320b59c881c1e375216cbf333', 1291210000.0)]

        self.assertEqual(len(messages), len(expected))

        for x in range(len(messages)):
            message = messages[x]
            self.assertEqual(message['data']['Message-ID'], expected[x][0])
            self.assertEqual(message['origin'], 'http://example.com/')
            self.assertEqual(message['uuid'], expected[x][1])
            self.assertEqual(message['updated_on'], expected[x][2])
            self.assertEqual(message['category'], 'message')
コード例 #17
0
ファイル: test_mbox.py プロジェクト: acs/perceval
    def test_parse_multipart_mbox(self):
        """Test if it parses a message with a multipart body"""

        messages = MBox.parse_mbox(self.files["multipart"])
        result = [msg for msg in messages]

        self.assertEqual(len(result), 2)

        # Multipart message
        plain_body = result[0]["body"]["plain"]
        html_body = result[0]["body"]["html"]
        self.assertEqual(
            plain_body,
            "technology.esl Committers,\n\n"
            "This automatically generated message marks the successful completion of\n"
            "voting for Chuwei Huang to receive full Committer status on the\n"
            "technology.esl project. The next step is for the PMC to approve this vote,\n"
            "followed by the EMO processing the paperwork and provisioning the account.\n\n\n\n"
            "Vote summary: 4/0/0 with 0 not voting\n\n"
            "  +1  Thomas Guiu\n\n"
            "  +1  Jin Liu\n\n"
            "  +1  Yves YANG\n\n"
            "  +1  Bo Zhou\n\n\n\n"
            "If you have any questions, please do not hesitate to contact your project\n"
            "lead, PMC member, or the EMO <*****@*****.**>\n\n\n\n\n\n",
        )
        self.assertEqual(len(html_body), 3103)

        # Multipart message without defined encoding
        plain_body = result[1]["body"]["plain"]
        html_body = result[1]["body"]["html"]
        self.assertEqual(
            plain_body,
            "I am fairly new to eclipse. I am evaluating the use of eclipse for a generic\n"
            "UI framework that is not necessarily related to code generation.\n"
            "Eclipse is very flexible and adding functionality seems straightforward. I\n"
            "can still use the project concept for what I need but there are things in\n"
            "the Workbench window that I don't want. For example the Open perspective\n"
            "icon, or some of the menus, like the Windows and project menu .\n\n"
            "I understand that by using retargetable actions I can have my view taking\n"
            "over most of the actions, but I could not figure out how to block the core\n"
            "plug-in to put their own actions. In the workbench plug-in (org.eclipse.ui)\n"
            "I could not find where menus are defined and where actionsviews for all\n"
            "generic toolbars are defined.\n\nHow do I do this?\nCan this be done?\n"
            "Is anybody using eclipse as a generic UI framework?\n\nI appreciate any help.\n\n"
            "Thanks,\n\nDaniel Nehren\n\n",
        )
        self.assertEqual(len(html_body), 1557)
コード例 #18
0
ファイル: test_mbox.py プロジェクト: shongoku/perceval
    def test_parse_multipart_mbox(self):
        """Test if it parses a message with a multipart body"""

        messages = MBox.parse_mbox(self.files['multipart'])
        result = [msg for msg in messages]

        self.assertEqual(len(result), 2)

        # Multipart message
        plain_body = result[0]['body']['plain']
        html_body = result[0]['body']['html']
        self.assertEqual(
            plain_body, 'technology.esl Committers,\n\n'
            'This automatically generated message marks the successful completion of\n'
            'voting for Chuwei Huang to receive full Committer status on the\n'
            'technology.esl project. The next step is for the PMC to approve this vote,\n'
            'followed by the EMO processing the paperwork and provisioning the account.\n\n\n\n'
            'Vote summary: 4/0/0 with 0 not voting\n\n'
            '  +1  Thomas Guiu\n\n'
            '  +1  Jin Liu\n\n'
            '  +1  Yves YANG\n\n'
            '  +1  Bo Zhou\n\n\n\n'
            'If you have any questions, please do not hesitate to contact your project\n'
            'lead, PMC member, or the EMO <*****@*****.**>\n\n\n\n\n\n')
        self.assertEqual(len(html_body), 3103)

        # Multipart message without defined encoding
        plain_body = result[1]['body']['plain']
        html_body = result[1]['body']['html']
        self.assertEqual(
            plain_body,
            'I am fairly new to eclipse. I am evaluating the use of eclipse for a generic\n'
            'UI framework that is not necessarily related to code generation.\n'
            'Eclipse is very flexible and adding functionality seems straightforward. I\n'
            'can still use the project concept for what I need but there are things in\n'
            'the Workbench window that I don\'t want. For example the Open perspective\n'
            'icon, or some of the menus, like the Windows and project menu .\n\n'
            'I understand that by using retargetable actions I can have my view taking\n'
            'over most of the actions, but I could not figure out how to block the core\n'
            'plug-in to put their own actions. In the workbench plug-in (org.eclipse.ui)\n'
            'I could not find where menus are defined and where actionsviews for all\n'
            'generic toolbars are defined.\n\nHow do I do this?\nCan this be done?\n'
            'Is anybody using eclipse as a generic UI framework?\n\nI appreciate any help.\n\n'
            'Thanks,\n\nDaniel Nehren\n\n')
        self.assertEqual(len(html_body), 1557)
コード例 #19
0
ファイル: test_mbox.py プロジェクト: acs/perceval
    def test_parse_complex_mbox(self):
        """Test whether it parses a complex mbox file"""

        messages = MBox.parse_mbox(self.files["complex"])
        result = [msg for msg in messages]

        self.assertEqual(len(result), 2)

        m0 = {k: v for k, v in result[0].items()}
        self.assertEqual(len(m0.keys()), 34)
        self.assertEqual(m0["Message-ID"], "<*****@*****.**>")
        self.assertEqual(m0["Date"], "Wed, 22 Sep 2004 02:03:40 -0700")
        self.assertEqual(m0["From"], '"Eugenia Loli-Queru" <*****@*****.**>')
        self.assertEqual(m0["To"], "<*****@*****.**>, <*****@*****.**>")
        self.assertEqual(m0["Cc"], None)
        self.assertEqual(m0["Subject"], "Re: Revisiting the Gnome Bindings")
        self.assertEqual(m0["unixfrom"], "[email protected]  Wed Sep 22 05:05:28 2004")

        expected_body = {
            "plain": ">I don't think it's fair to blame the Foundation [...]\n"
            ">of packaging since it's really not (just) a case [...]\n"
            ">marketing.\n\n"
            "No matter what is really to blame, it ultimately [...]\n\n"
            "[...]\n\n"
            "Rgds,\n"
            "Eugenia\n"
        }
        self.assertDictEqual(m0["body"], expected_body)

        m1 = {k: v for k, v in result[1].items()}
        self.assertEqual(len(m1.keys()), 35)
        self.assertEqual(m1["Message-ID"], "<*****@*****.**>")
        self.assertEqual(m1["Date"], "Mon, 17 Mar 2008 10:35:05 +0100")
        self.assertEqual(m1["From"], "[email protected] (Danilo  Šegan )")
        self.assertEqual(m1["To"], "Simos Xenitellis <*****@*****.**>")
        self.assertEqual(
            m1["Cc"],
            "[email protected], "
            '"Nikolay V. Shmyrev" <*****@*****.**>,\n\t'
            "Brian Nitz <*****@*****.**>, "
            "Bastien Nocera <*****@*****.**>",
        )
        self.assertEqual(m1["Subject"], "Re: Low memory hacks")
        self.assertEqual(m1["unixfrom"], "[email protected]  Mon Mar 17 09:35:25 2008")
コード例 #20
0
ファイル: test_mbox.py プロジェクト: albertinisg/perceval
    def test_parse_mbox(self):
        """Test whether it parses a mbox file"""

        messages = MBox.parse_mbox(self.files['single'])
        result = [msg for msg in messages]

        self.assertEqual(len(result), 1)

        message = {k: v for k,v in result[0].items()}

        expected = {
                    'From' : 'goran at domain.com ( Göran Lastname )',
                    'Date' : 'Wed, 01 Dec 2010 14:26:40 +0100',
                    'Subject' : '[List-name] Protocol Buffers anyone?',
                    'Message-ID' : '<*****@*****.**>',
                    'unixfrom' : 'goran at domain.com  Wed Dec  1 08:26:40 2010',
                    'body': {
                             'plain' : "Hi!\n\nA message in English, with a signature "
                                       "with a different encoding.\n\nregards, G?ran"
                                       "\n\n\n",
                            }
                    }

        self.assertDictEqual(message, expected)
コード例 #21
0
ファイル: test_mbox.py プロジェクト: acs/perceval
    def test_parse_mbox(self):
        """Test whether it parses a mbox file"""

        messages = MBox.parse_mbox(self.files["single"])
        result = [msg for msg in messages]

        self.assertEqual(len(result), 1)

        message = {k: v for k, v in result[0].items()}

        expected = {
            "From": "goran at domain.com ( Göran Lastname )",
            "Date": "Wed, 01 Dec 2010 14:26:40 +0100",
            "Subject": "[List-name] Protocol Buffers anyone?",
            "Message-ID": "<*****@*****.**>",
            "unixfrom": "goran at domain.com  Wed Dec  1 08:26:40 2010",
            "body": {
                "plain": "Hi!\n\nA message in English, with a signature "
                "with a different encoding.\n\nregards, G?ran"
                "\n\n\n"
            },
        }

        self.assertDictEqual(message, expected)
コード例 #22
0
ファイル: test_mbox.py プロジェクト: albertinisg/perceval
    def test_has_resuming(self):
        """Test if it returns True when has_resuming is called"""

        self.assertEqual(MBox.has_resuming(), True)
コード例 #23
0
ファイル: test_mbox.py プロジェクト: albertinisg/perceval
    def test_has_caching(self):
        """Test if it returns False when has_caching is called"""

        self.assertEqual(MBox.has_caching(), False)
コード例 #24
0
ファイル: test_mbox.py プロジェクト: shongoku/perceval
    def test_has_caching(self):
        """Test if it returns False when has_caching is called"""

        self.assertEqual(MBox.has_caching(), False)
コード例 #25
0
ファイル: test_mbox.py プロジェクト: shongoku/perceval
    def test_has_resuming(self):
        """Test if it returns True when has_resuming is called"""

        self.assertEqual(MBox.has_resuming(), True)