# Copyright (c) 2013 Mirantis Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or # implied. # See the License for the specific language governing permissions and # limitations under the License. import re import testtools from stackalytics.processor import mls class TestMls(testtools.TestCase): def setUp(self): super(TestMls, self).setUp() def test_mail_parse_regex(self): content = ''' URL: From sorlando at nicira.com Tue Jul 17 07:30:43 2012 From: sorlando at nicira.com (Salvatore Orlando) Date: Tue, 17 Jul 2012 00:30:43 -0700 Subject: [openstack-dev] [nova] [pci device passthrough] fails with "NameError: global name '_' is not defined" In-Reply-To: <5004FBF1.1080102@redhat.com> References: <5004FBF1.1080102@redhat.com> Message-ID: Good morning Gary! test works :) From sorlando at nicira.com Tue Jul 17 07:30:43 2012 From: sorlando at nicira.com (Salvatore Orlando) ''' match = re.search(mls.MAIL_BOX_PATTERN, content) self.assertTrue(match) self.assertEqual('sorlando at nicira.com', match.group(1)) self.assertEqual('Salvatore Orlando', match.group(2)) self.assertEqual('Tue, 17 Jul 2012 00:30:43 -0700', match.group(3)) self.assertEqual('[openstack-dev] [nova] [pci device passthrough] ' 'fails with\n "NameError: global name \'_\' is not ' 'defined"', match.group(4)) self.assertEqual('', match.group(5)) self.assertEqual('Good morning Gary!\n\ntest works :)\n', match.group(6))