Generated: Thu 2012-03-01 08:22 CST
Source file: /home/alisue/Dropbox/Codes/django-permission/tests/src/miniblog/blogs/models.py
Stats: 13 executed, 1 missed, 8 excluded, 57 ignored
# vim: set fileencoding=utf-8 :
"""
Mini blog models
AUTHOR:
lambdalisue[Ali su ae] (lambdalisue@hashnote.net)
License:
The MIT License (MIT)
Copyright (c) 2012 Alisue allright reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
"""
from __future__ import with_statement
from django.db import models
from django.utils.text import ugettext_lazy as _
class EntryBase(models.Model):
"""A base abstract model of Entry"""
title = models.CharField(_('title'), max_length=50, unique=True)
body = models.TextField(_('body'))
created_at = models.DateTimeField(_('date and time created'),
auto_now_add=True)
updated_at = models.DateTimeField(_('date and time updated'),
auto_now=True)
class Meta:
abstract = True
def __unicode__(self):
return self.title
@models.permalink
def get_absolute_url(self):
return ('blogs-entry-detail', (), {'slug': self.title})
def clean(self):
"""custom validation"""
from django.core.exceptions import ValidationError
if self.title in ('create', 'update', 'delete'):
raise ValidationError(
"""The title cannot be 'create', 'update' or 'delete'""")
class Entry(EntryBase):
"""mini blog entry model
>>> entry = Entry()
# Attribute test
>>> assert hasattr(entry, 'title')
>>> assert hasattr(entry, 'body')
>>> assert hasattr(entry, 'created_at')
>>> assert hasattr(entry, 'updated_at')
# Function test
>>> assert callable(getattr(entry, '__unicode__'))
>>> assert callable(getattr(entry, 'get_absolute_url'))
"""
pass