1 | ## $Id: test_payment.py 10030 2013-03-17 08:40:59Z henrik $ |
---|
2 | ## |
---|
3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
4 | ## This program is free software; you can redistribute it and/or modify |
---|
5 | ## it under the terms of the GNU General Public License as published by |
---|
6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
7 | ## (at your option) any later version. |
---|
8 | ## |
---|
9 | ## This program is distributed in the hope that it will be useful, |
---|
10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
12 | ## GNU General Public License for more details. |
---|
13 | ## |
---|
14 | ## You should have received a copy of the GNU General Public License |
---|
15 | ## along with this program; if not, write to the Free Software |
---|
16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
17 | ## |
---|
18 | """Tests for student payments. |
---|
19 | |
---|
20 | """ |
---|
21 | |
---|
22 | from zope.interface import verify |
---|
23 | from waeup.kofa.testing import FunctionalLayer, FunctionalTestCase |
---|
24 | from waeup.kofa.students.payments import ( |
---|
25 | StudentOnlinePayment, StudentOnlinePaymentFactory, Payer) |
---|
26 | from waeup.kofa.payments.interfaces import IOnlinePayment, IPayer |
---|
27 | from waeup.kofa.students.interfaces import IStudentNavigation |
---|
28 | |
---|
29 | class StudentOnlinePaymentFactoryTest(FunctionalTestCase): |
---|
30 | |
---|
31 | layer = FunctionalLayer |
---|
32 | |
---|
33 | def setUp(self): |
---|
34 | super(StudentOnlinePaymentFactoryTest, self).setUp() |
---|
35 | self.factory = StudentOnlinePaymentFactory() |
---|
36 | return |
---|
37 | |
---|
38 | def tearDown(self): |
---|
39 | super(StudentOnlinePaymentFactoryTest, self).tearDown() |
---|
40 | return |
---|
41 | |
---|
42 | def test_factory(self): |
---|
43 | obj = self.factory() |
---|
44 | assert isinstance(obj, StudentOnlinePayment) |
---|
45 | |
---|
46 | def test_getInterfaces(self): |
---|
47 | implemented_by = self.factory.getInterfaces() |
---|
48 | assert implemented_by.isOrExtends(IOnlinePayment) |
---|
49 | assert implemented_by.isOrExtends(IStudentNavigation) |
---|
50 | |
---|
51 | def test_payer_interface(self): |
---|
52 | verify.verifyClass(IPayer, Payer) |
---|