]> git.ozlabs.org Git - patchwork/blob - apps/patchwork/tests/utils.py
[tests] Add initial bundle tests
[patchwork] / apps / patchwork / tests / utils.py
1 # Patchwork - automated patch tracking system
2 # Copyright (C) 2008 Jeremy Kerr <jk@ozlabs.org>
3 #
4 # This file is part of the Patchwork package.
5 #
6 # Patchwork is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # Patchwork is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with Patchwork; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20 import os
21 import codecs
22 from patchwork.models import Project, Person, UserProfile
23 from django.contrib.auth.models import User
24
25 try:
26     from email.mime.text import MIMEText
27     from email.mime.multipart import MIMEMultipart
28 except ImportError:
29     # Python 2.4 compatibility
30     from email.MIMEText import MIMEText
31     from email.MIMEMultipart import MIMEMultipart
32
33 # helper functions for tests
34 _test_mail_dir  = 'patchwork/tests/mail'
35 _test_patch_dir = 'patchwork/tests/patches'
36
37 class defaults(object):
38     project = Project(linkname = 'test-project', name = 'Test Project')
39
40     patch_author = 'Patch Author <patch-author@example.com>'
41     patch_author_person = Person(name = 'Patch Author',
42                                  email = 'patch-author@example.com')
43
44     comment_author = 'Comment Author <comment-author@example.com>'
45
46     sender = 'Test Author <test-author@example.com>'
47
48     subject = 'Test Subject'
49
50     patch_name = 'Test Patch'
51
52 _user_idx = 1
53 def create_user():
54     global _user_idx
55     userid = 'test-%d' % _user_idx
56     email = '%s@example.com' % userid
57     _user_idx += 1
58
59     user = User.objects.create_user(userid, email, userid)
60     user.save()
61
62     profile = UserProfile(user = user)
63     profile.save()
64
65     return user
66
67 def find_in_context(context, key):
68     if isinstance(context, list):
69         for c in context:
70             v = find_in_context(c, key)
71             if v is not None:
72                 return v
73     else:
74         if key in context:
75             return context[key]
76     return None
77
78 def read_patch(filename, encoding = None):
79     file_path = os.path.join(_test_patch_dir, filename)
80     if encoding is not None:
81         f = codecs.open(file_path, encoding = encoding)
82     else:
83         f = file(file_path)
84
85     return f.read()
86
87 def create_email(content, subject = None, sender = None, multipart = False,
88         project = None, content_encoding = None):
89     if subject is None:
90         subject = defaults.subject
91     if sender is None:
92         sender = defaults.sender
93     if project is None:
94         project = defaults.project
95
96     if multipart:
97         msg = MIMEMultipart()
98         body = MIMEText(content, _subtype = 'plain')
99         if content_encoding is not None:
100             body.set_charset(content_encoding)
101         msg.attach(body)
102     else:
103         msg = MIMEText(content)
104         if content_encoding is not None:
105             msg.set_charset(content_encoding)
106
107     msg['Subject'] = subject
108     msg['From'] = sender
109     msg['List-Id'] = project.linkname
110
111
112     return msg