Skip to content

Commit

Permalink
Merge pull request #24 from PetrDlouhy/master
Browse files Browse the repository at this point in the history
testing + Django 1.10 fixes
  • Loading branch information
PetrDlouhy committed Mar 18, 2016
2 parents f38567a + 4c13ed8 commit db78816
Show file tree
Hide file tree
Showing 6 changed files with 228 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .coveragerc
@@ -0,0 +1,2 @@
[run]
include = *feedback*
20 changes: 20 additions & 0 deletions .travis.yml
@@ -0,0 +1,20 @@
sudo: false
language: python
env:
- DJANGO_VERSION="Django>=1.8,<1.9"
- DJANGO_VERSION="Django>=1.9,<1.10"
- DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz'
python:
- "2.7"
- "3.4"
before_script:
- pip install coverage coveralls
- pip install -q "$DJANGO_VERSION"
- python setup.py install
script:
- coverage run manage.py test --settings=settings
after_script:
- coveralls
matrix:
allow_failures:
- env: DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz'
24 changes: 24 additions & 0 deletions feedback/test_views.py
@@ -0,0 +1,24 @@
#!/usr/bin/env python

from django.test import TestCase
from django.core.urlresolvers import reverse

class ViewTestCase(TestCase):
"""Test project views."""

def test_feedback_view(self):
"""A POST should log the error"""
post_data = {
"text": "sample test text",
}
response = self.client.post(reverse('feedback', kwargs={'url': 'test_url'}), post_data)
self.assertEqual(response.content, b"{}")
self.assertEqual(response.status_code, 200)

def test_error_view(self):
"""A POST should log the error"""
response = self.client.post(reverse('feedback', kwargs={'url': 'test_url'}))
self.assertEqual(response.content, b'{"errors": {"text": ["This field is required."]}}')
self.assertEqual(response.status_code, 200)

# vim: et sw=4 sts=4
6 changes: 3 additions & 3 deletions feedback/urls.py
@@ -1,9 +1,9 @@
from django.conf.urls import patterns, url
from django.conf.urls import url

from feedback.views import FeedbackView

urlpatterns = patterns('',
urlpatterns = [
url(r'^ajax(?P<url>.*)$', FeedbackView.as_view(), name='feedback'),
)
]

# vim: et sw=4 sts=4
13 changes: 13 additions & 0 deletions manage.py
@@ -0,0 +1,13 @@
#!/usr/bin/env python
import os
import sys

from django.core.management import execute_from_command_line

def main():
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "%s.settings" % __package__)
execute_from_command_line(sys.argv)


if __name__ == "__main__":
main()
166 changes: 166 additions & 0 deletions settings.py
@@ -0,0 +1,166 @@
# Django settings for demoproject project.
from os.path import abspath, dirname, join
demoproject_dir = dirname(abspath(__file__))

DEBUG = True

ADMINS = (
# ('Your Name', 'your_email@example.com'),
)

MANAGERS = ADMINS

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'test.sqlite3', # Or path to database file if using sqlite3.
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # Not used with sqlite3.
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}

# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
# In a Windows environment this must be set to your system time zone.
TIME_ZONE = 'America/Chicago'

# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
LANGUAGE_CODE = 'en-us'

SITE_ID = 1

# If you set this to False, Django will make some optimizations so as not
# to load the internationalization machinery.
USE_I18N = True

# If you set this to False, Django will not format dates, numbers and
# calendars according to the current locale.
USE_L10N = True

# If you set this to False, Django will not use timezone-aware datetimes.
USE_TZ = True

# Absolute filesystem path to the directory that will hold user-uploaded files.
# Example: "/home/media/media.lawrence.com/media/"
MEDIA_ROOT = ''

# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash.
# Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
MEDIA_URL = ''

# Absolute path to the directory static files should be collected to.
# Don't put anything in this directory yourself; store your static files
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
# Example: "/home/media/media.lawrence.com/static/"
STATIC_ROOT = ''

# URL prefix for static files.
# Example: "http://media.lawrence.com/static/"
STATIC_URL = '/static/'

# Additional locations of static files
STATICFILES_DIRS = (
# Put strings here, like "/home/html/static" or "C:/www/django/static".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
)

# List of finder classes that know how to find static files in
# various locations.
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
)

# Make this unique, and don't share it with anybody.
SECRET_KEY = 'k9i055*z@6@9$7xvyw(8y4sk_w0@1ltf2$y-^zu^&amp;asfasfww'

TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'APP_DIRS': True,
},
]

MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
# Uncomment the next line for simple clickjacking protection:
# 'django.middleware.clickjacking.XFrameOptionsMiddleware',
)

ROOT_URLCONF = 'feedback.urls'

# Python dotted path to the WSGI application used by Django's runserver.
WSGI_APPLICATION = 'demoproject.wsgi.application'

INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'feedback',
# Uncomment the next line to enable the admin:
# 'django.contrib.admin',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
)

FEEDBACK_EMAIL = "test@email.com"
# A sample logging configuration. The only tangible logging
# performed by this configuration is to send an email to
# the site admins on every HTTP 500 error when DEBUG=False.
# See http://docs.djangoproject.com/en/dev/topics/logging for
# more details on how to customize your logging configuration.
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'filters': {
'require_debug_false': {
'()': 'django.utils.log.RequireDebugFalse'
}
},
'formatters': {
'verbose': {
'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
},
'simple': {
'format': '\033[22;32m%(levelname)s\033[0;0m %(message)s'
},
},
'handlers': {
'mail_admins': {
'level': 'ERROR',
'filters': ['require_debug_false'],
'class': 'django.utils.log.AdminEmailHandler'
},
'console': {
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'formatter': 'simple'
},
},
'loggers': {
'django.request': {
'handlers': ['mail_admins'],
'level': 'ERROR',
'propagate': True,
},
'javascript_error': {
'handlers': ['mail_admins', 'console'],
'level': 'ERROR',
'propagate': True,
},
}
}

0 comments on commit db78816

Please sign in to comment.