testAutoLogout.py 3.54 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2004, 2005, 2006 Nexedi SARL and Contributors.
# All Rights Reserved.
#          Ivan Tyagov <ivan@nexedi.com>
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################

import unittest
from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
from DateTime import DateTime

class TestAuoLogout(ERP5TypeTestCase):
  """
  Test for erp5_auto_logout business template.
  """
  manager_username = 'zope'
  manager_password = 'zope'

  credential = '%s:%s' % (manager_username, manager_password)
  def getTitle(self):
    return "TestAuthenticationPolicy"

  def getBusinessTemplateList(self):
    """
    Return the list of required business templates.
    """
    return ('erp5_core_proxy_field_legacy',
51
            'erp5_base',)
52 53 54 55 56 57 58

  def afterSetUp(self):
    portal = self.getPortal()

    uf = portal.acl_users
    uf._doAddUser(self.manager_username, self.manager_password, ['Manager'], [])
    self.login(self.manager_username)
59

60
    # setup short auto-logout period
Jérome Perrin's avatar
Jérome Perrin committed
61
    portal.portal_preferences.default_site_preference.setPreferredMaxUserInactivityDuration(5)
62
    portal.portal_preferences.default_site_preference.enable()
63
    self.tic()
64 65 66 67 68 69 70

  def test_01_AutoLogout(self):
    """
      Test auto logout feature of ERP5.
    """
    portal = self.getPortal()
    request = self.app.REQUEST
71

72 73 74 75
    now = DateTime()
    path = portal.absolute_url_path() + '/view?__ac_name=%s&__ac_password=%s'  %(self.manager_username, self.manager_password)
    response = self.publish(path)
    self.assertTrue('Welcome to ERP5' in response.getBody())
76

77 78
    # check '__ac' cookie has set an expire timeout
    ac_cookie = response.getCookie('__ac')
79
    self.assertTrue(ac_cookie is not None)
80 81 82
    cookie_expire = ac_cookie['expires']
    one_second = 1/24.0/60.0/60.0
    self.assertTrue((now + 6*one_second)> DateTime(cookie_expire)) # give 1s tollerance
83

84
    # if we disable auto-logout then cookie will expire at end of session
85
    portal.portal_preferences.default_site_preference.disable()
86
    self.tic()
87
    portal.portal_caches.clearAllCache()
88

89 90
    response = self.publish(path)
    self.assertTrue('Welcome to ERP5' in response.getBody())
91
    ac_cookie = response.getCookie('__ac')
92
    self.assertTrue(ac_cookie is not None)
93 94
    self.assertTrue(ac_cookie.get('expires', None) is None)

95 96 97 98
def test_suite():
  suite = unittest.TestSuite()
  suite.addTest(unittest.makeSuite(TestAuoLogout))
  return suite