tests.py :  » ERP » frePPLe » frepple-0.8.0 » contrib » django » freppledb » input » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » ERP » frePPLe 
frePPLe » frepple 0.8.0 » contrib » django » freppledb » input » tests.py
#
# Copyright (C) 2007 by Johan De Taeye
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
#
# This library 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 Lesser
# General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
#

# file : $URL: https://frepple.svn.sourceforge.net/svnroot/frepple/tags/0.8.0/contrib/django/freppledb/input/tests.py $
# revision : $LastChangedRevision: 1192 $  $LastChangedBy: jdetaeye $
# date : $LastChangedDate: 2010-02-28 10:03:31 +0100 (Sun, 28 Feb 2010) $

import tempfile

from django.core.exceptions import ObjectDoesNotExist
from django.test import TestCase

from input.models import *

class DataLoadTest(TestCase):

  def setUp(self):
    # Login
    self.client.login(username='frepple', password='frepple')

  def test_input_customer(self):
    response = self.client.get('/admin/input/customer/')
    self.assertContains(response, '2 customers')

  def test_input_flow(self):
    response = self.client.get('/admin/input/flow/')
    self.assertContains(response, '19 flows')

  def test_input_buffer(self):
    response = self.client.get('/admin/input/buffer/')
    self.assertContains(response, '8 buffers')

  def test_input_calendar(self):
    response = self.client.get('/admin/input/calendar/')
    self.assertContains(response, '4 calendars')

  def test_input_demand(self):
    response = self.client.get('/admin/input/demand/')
    self.assertContains(response, '14 demands')

  def test_input_item(self):
    response = self.client.get('/admin/input/item/')
    self.assertContains(response, '5 items')

  def test_input_load(self):
    response = self.client.get('/admin/input/load/')
    self.assertContains(response, '3 loads')

  def test_input_location(self):
    response = self.client.get('/admin/input/location/')
    self.assertContains(response, '2 locations')

  def test_input_operation(self):
    response = self.client.get('/admin/input/operation/')
    self.assertContains(response, '14 operations')

  def test_input_operationplan(self):
    response = self.client.get('/admin/input/operationplan/')
    self.assertContains(response, '4 operationplans')

  def test_input_plan(self):
    response = self.client.get('/admin/input/plan/')
    self.assertRedirects(response, '/admin/input/plan/1/', status_code=301)

  def test_input_resource(self):
    response = self.client.get('/admin/input/resource/')
    self.assertContains(response, '3 resources')

  def test_input_suboperation(self):
    response = self.client.get('/admin/input/suboperation/')
    self.assertContains(response, '4 suboperations')

  def test_csv_upload(self):
    self.failUnlessEqual(
      [(i.name, i.category) for i in Location.objects.all()],
      [(u'factory 1',u''), (u'factory 2',u'')]
      )
    try:
      data = tempfile.TemporaryFile(mode='w+b')
      print >>data, 'name, category'
      print >>data, 'Test Location 1, cat1'
      print >>data, 'Test Location 2,'
      data.seek(0)
      response = self.client.post('/admin/input/location/', {'csv_file': data})
      self.assertRedirects(response, '/admin/input/location/')
    finally:
      data.close()
    self.failUnlessEqual(
      [(i.name, i.category) for i in Location.objects.order_by('name')],
      [(u'factory 1',u''), (u'factory 2',u''), (u'Test Location 1',u'cat1'), (u'Test Location 2',u'')]
      )

  def test_buckets(self):
    # Find the calendar
    try:
      calendar = Calendar.objects.get(name='pack capacity factory 1')
    except ObjectDoesNotExist:
      self.fail("Calendar 'pack capacity factory 1' not found")
    buckets = calendar.buckets.all()
    # Assure it has 2 buckets
    self.assertEqual(len(buckets),2)
    # Verify the bucket dates are filled in correctly
    prevend = None
    for i in buckets:
      self.failIfEqual(i.startdate, None, 'Missing start date')
      self.failIfEqual(i.enddate, None, 'Missing end date')
      self.failUnless(i.startdate<i.enddate, 'End date before the start date')
      if prevend:
        self.failUnlessEqual(i.startdate, prevend, 'Non-adjacent calendar buckets')
      prevend = i.enddate
    # Verify original buckets
    self.failUnlessEqual(
      [(str(i.startdate), str(i.enddate), int(i.value)) for i in calendar.buckets.all()],
      [('2008-01-01 00:00:00', '2009-02-01 00:00:00', 1),
       ('2009-02-01 00:00:00', '2030-12-31 00:00:00', 2)
      ])
    # Create a new bucket - start date aligned with existing bucket
    calendar.setvalue(datetime(2009,2,1), datetime(2009,3,3), 12)
    self.failUnlessEqual(
      [(str(i.startdate), str(i.enddate), int(i.value)) for i in calendar.buckets.all()],
      [('2008-01-01 00:00:00', '2009-02-01 00:00:00', 1),
       ('2009-02-01 00:00:00', '2009-03-03 00:00:00', 12),
       ('2009-03-03 00:00:00', '2030-12-31 00:00:00', 2)
      ])
    # Create a new bucket - end date aligned with existing bucket
    calendar.setvalue(datetime(2009,2,10), datetime(2009,3,3), 100)
    self.failUnlessEqual(
      [(str(i.startdate), str(i.enddate), int(i.value)) for i in calendar.buckets.all()],
      [('2008-01-01 00:00:00', '2009-02-01 00:00:00', 1),
       ('2009-02-01 00:00:00', '2009-02-10 00:00:00', 12),
       ('2009-02-10 00:00:00', '2009-03-03 00:00:00', 100),
       ('2009-03-03 00:00:00', '2030-12-31 00:00:00', 2)
      ])
    # 2 buckets partially updates and one deleted
    calendar.setvalue(datetime(2009,1,10), datetime(2009,4,3), 3)
    self.failUnlessEqual(
      [(str(i.startdate), str(i.enddate), int(i.value)) for i in calendar.buckets.all()],
      [('2008-01-01 00:00:00', '2009-01-10 00:00:00', 1),
       ('2009-01-10 00:00:00', '2009-03-03 00:00:00', 3),
       ('2009-03-03 00:00:00', '2009-04-03 00:00:00', 3),
       ('2009-04-03 00:00:00', '2030-12-31 00:00:00', 2)
      ])
    # Create a new bucket - end date aligned with existing bucket
    calendar.setvalue(datetime(2009,2,10), datetime(2009,3,3), 4)
    self.failUnlessEqual(
      [(str(i.startdate), str(i.enddate), int(i.value)) for i in calendar.buckets.all()],
      [('2008-01-01 00:00:00', '2009-01-10 00:00:00', 1),
       ('2009-01-10 00:00:00', '2009-02-10 00:00:00', 3),
       ('2009-02-10 00:00:00', '2009-03-03 00:00:00', 4),
       ('2009-03-03 00:00:00', '2009-04-03 00:00:00', 3),
       ('2009-04-03 00:00:00', '2030-12-31 00:00:00', 2)
      ])
    # Completely override the value of an existing bucket
    calendar.setvalue(datetime(2009,3,3), datetime(2009,4,3), 5)
    self.failUnlessEqual(
      [(str(i.startdate), str(i.enddate), int(i.value)) for i in calendar.buckets.all()],
      [('2008-01-01 00:00:00', '2009-01-10 00:00:00', 1),
       ('2009-01-10 00:00:00', '2009-02-10 00:00:00', 3),
       ('2009-02-10 00:00:00', '2009-03-03 00:00:00', 4),
       ('2009-03-03 00:00:00', '2009-04-03 00:00:00', 5),
       ('2009-04-03 00:00:00', '2030-12-31 00:00:00', 2)
      ])
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.