source: main/waeup.kofa/trunk/src/waeup/kofa/students/tests/test_payment.py @ 17914

Last change on this file since 17914 was 10030, checked in by Henrik Bettermann, 12 years ago

Use better class names. The PaymentWebservice? adapter is not a webservice. KofaPaymentRequest? is not a request but a view for a simple web service.

We do not publish the data of the payee but of the payer.

  • Property svn:keywords set to Id
File size: 1.8 KB
Line 
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
22from zope.interface import verify
23from waeup.kofa.testing import FunctionalLayer, FunctionalTestCase
24from waeup.kofa.students.payments import (
25    StudentOnlinePayment, StudentOnlinePaymentFactory, Payer)
26from waeup.kofa.payments.interfaces import IOnlinePayment, IPayer
27from waeup.kofa.students.interfaces import IStudentNavigation
28
29class 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)
Note: See TracBrowser for help on using the repository browser.