SciPost Code Repository
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SciPost
Manage
Activity
Members
Labels
Plan
Issues
118
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SciPost
SciPost
Commits
c810f01f
Commit
c810f01f
authored
8 years ago
by
Jorran de Wit
Browse files
Options
Downloads
Patches
Plain Diff
Add empty `_invalid_forms` test case
parent
1bf3f035
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
commentaries/test_views.py
+9
-9
9 additions, 9 deletions
commentaries/test_views.py
commentaries/views.py
+0
-38
0 additions, 38 deletions
commentaries/views.py
with
9 additions
and
47 deletions
commentaries/test_views.py
+
9
−
9
View file @
c810f01f
from
django.contrib.auth.models
import
Group
from
django.contrib.auth.models
import
Group
from
django.core.urlresolvers
import
reverse
from
django.core.urlresolvers
import
reverse
from
django.core.management
import
call_command
from
django.test
import
TestCase
from
django.test
import
Client
,
TestCase
# from .views import request_commentary
class
RequestCommentaryTest
(
TestCase
):
class
RequestCommentaryTest
(
TestCase
):
"""
Test cases for request_commentary view method
"""
"""
Test cases for
`
request_commentary
`
view method
"""
fixtures
=
[
'
permissions
'
,
'
groups
'
,
'
contributors
'
]
fixtures
=
[
'
permissions
'
,
'
groups
'
,
'
contributors
'
]
def
setUp
(
self
):
def
setUp
(
self
):
...
@@ -23,7 +20,10 @@ class RequestCommentaryTest(TestCase):
...
@@ -23,7 +20,10 @@ class RequestCommentaryTest(TestCase):
# Registered Contributor should get 200
# Registered Contributor should get 200
self
.
client
.
login
(
username
=
"
Test
"
,
password
=
"
testpw
"
)
self
.
client
.
login
(
username
=
"
Test
"
,
password
=
"
testpw
"
)
request
=
self
.
client
.
get
(
self
.
view_url
)
request
=
self
.
client
.
get
(
self
.
view_url
)
self
.
assertEquals
(
self
.
assertEquals
(
request
.
status_code
,
200
)
request
.
status_code
,
200
,
'
Get request on request_commentary has failed
'
def
test_post_invalid_forms
(
self
):
)
"""
Test different kind of invalid RequestCommentaryForm submits
"""
self
.
client
.
login
(
username
=
"
Test
"
,
password
=
"
testpw
"
)
request
=
self
.
client
.
post
(
self
.
view_url
)
self
.
assertEquals
(
request
.
status_code
,
200
)
This diff is collapsed.
Click to expand it.
commentaries/views.py
+
0
−
38
View file @
c810f01f
...
@@ -35,44 +35,6 @@ def request_commentary(request):
...
@@ -35,44 +35,6 @@ def request_commentary(request):
form
=
RequestCommentaryForm
(
request
.
POST
or
None
,
user
=
request
.
user
)
form
=
RequestCommentaryForm
(
request
.
POST
or
None
,
user
=
request
.
user
)
if
request
.
method
==
'
POST
'
:
if
request
.
method
==
'
POST
'
:
if
form
.
is_valid
():
if
form
.
is_valid
():
# errormessage = ''
# existing_commentary = None
# if not form.cleaned_data['arxiv_identifier'] and not form.cleaned_data['pub_DOI']:
# errormessage = ('You must provide either a DOI (for a published paper) '
# 'or an arXiv identifier (for a preprint).')
# elif (form.cleaned_data['arxiv_identifier'] and
# (Commentary.objects
# .filter(arxiv_identifier=form.cleaned_data['arxiv_identifier']).exists())):
# errormessage = 'There already exists a Commentary Page on this preprint, see'
# existing_commentary = get_object_or_404(
# Commentary,
# arxiv_identifier=form.cleaned_data['arxiv_identifier'])
# elif (form.cleaned_data['pub_DOI'] and
# Commentary.objects.filter(pub_DOI=form.cleaned_data['pub_DOI']).exists()):
# errormessage = 'There already exists a Commentary Page on this publication, see'
# existing_commentary = get_object_or_404(Commentary, pub_DOI=form.cleaned_data['pub_DOI'])
# Otherwise we can create the Commentary
# contributor = Contributor.objects.get(user=request.user)
# commentary = Commentary(
# requested_by = contributor,
# type = form.cleaned_data['type'],
# discipline = form.cleaned_data['discipline'],
# domain = form.cleaned_data['domain'],
# subject_area = form.cleaned_data['subject_area'],
# pub_title = form.cleaned_data['pub_title'],
# arxiv_identifier = form.cleaned_data['arxiv_identifier'],
# pub_DOI = form.cleaned_data['pub_DOI'],
# metadata = form.cleaned_data['metadata'],
# author_list = form.cleaned_data['author_list'],
# journal = form.cleaned_data['journal'],
# volume = form.cleaned_data['volume'],
# pages = form.cleaned_data['pages'],
# pub_date = form.cleaned_data['pub_date'],
# pub_abstract = form.cleaned_data['pub_abstract'],
# latest_activity = timezone.now(),
# )
commentary
=
form
.
save
(
commit
=
False
)
commentary
=
form
.
save
(
commit
=
False
)
commentary
.
parse_links_into_urls
()
commentary
.
parse_links_into_urls
()
commentary
.
save
()
commentary
.
save
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment