Use unicode strings for test requests in test_comments_viewlet to make the Plone 3 tests happy.
svn path=/plone.app.discussion/trunk/; revision=39680
This commit is contained in:
parent
f918b7698b
commit
68a264c9d9
@ -83,26 +83,26 @@ class TestCommentForm(PloneTestCase):
|
|||||||
self.failIf(commentForm.handleComment(commentForm, "foo"))
|
self.failIf(commentForm.handleComment(commentForm, "foo"))
|
||||||
|
|
||||||
# The form should return an error if the comment text field is empty
|
# The form should return an error if the comment text field is empty
|
||||||
request = make_request(form={'form.widgets.text': 'foo'})
|
request = make_request(form={'form.widgets.text': u'foo'})
|
||||||
|
|
||||||
commentForm = getMultiAdapter((self.context, request),
|
|
||||||
name=u"comment-form")
|
|
||||||
commentForm.update()
|
|
||||||
data, errors = commentForm.extractData()
|
|
||||||
|
|
||||||
self.assertEquals(len(errors), 1)
|
|
||||||
self.failIf(commentForm.handleComment(commentForm, "foo"))
|
|
||||||
|
|
||||||
# The form is submitted successfully, if all required fields are
|
|
||||||
# filled out
|
|
||||||
request = make_request(form={'form.widgets.title': 'foo',
|
|
||||||
'form.widgets.text': 'bar'})
|
|
||||||
|
|
||||||
commentForm = getMultiAdapter((self.context, request),
|
commentForm = getMultiAdapter((self.context, request),
|
||||||
name=u"comment-form")
|
name=u"comment-form")
|
||||||
commentForm.update()
|
commentForm.update()
|
||||||
data, errors = commentForm.extractData()
|
data, errors = commentForm.extractData()
|
||||||
|
|
||||||
|
self.assertEquals(len(errors), 1)
|
||||||
|
self.failIf(commentForm.handleComment(commentForm, "foo"))
|
||||||
|
|
||||||
|
# The form is submitted successfully, if all required fields are
|
||||||
|
# filled out
|
||||||
|
request = make_request(form={'form.widgets.title': u'foo',
|
||||||
|
'form.widgets.text': u'bar'})
|
||||||
|
|
||||||
|
commentForm = getMultiAdapter((self.context, request),
|
||||||
|
name=u"comment-form")
|
||||||
|
commentForm.update()
|
||||||
|
data, errors = commentForm.extractData()
|
||||||
|
|
||||||
self.assertEquals(len(errors), 0)
|
self.assertEquals(len(errors), 0)
|
||||||
self.failIf(commentForm.handleComment(commentForm, "foo"))
|
self.failIf(commentForm.handleComment(commentForm, "foo"))
|
||||||
|
|
||||||
@ -125,8 +125,8 @@ class TestCommentForm(PloneTestCase):
|
|||||||
factory=CommentForm,
|
factory=CommentForm,
|
||||||
name=u"comment-form")
|
name=u"comment-form")
|
||||||
|
|
||||||
request = make_request(form={'form.widgets.title': 'foo',
|
request = make_request(form={'form.widgets.title': u'foo',
|
||||||
'form.widgets.text': 'bar'})
|
'form.widgets.text': u'bar'})
|
||||||
|
|
||||||
commentForm = getMultiAdapter((self.context, request),
|
commentForm = getMultiAdapter((self.context, request),
|
||||||
name=u"comment-form")
|
name=u"comment-form")
|
||||||
@ -162,8 +162,8 @@ class TestCommentForm(PloneTestCase):
|
|||||||
factory=CommentForm,
|
factory=CommentForm,
|
||||||
name=u"comment-form")
|
name=u"comment-form")
|
||||||
|
|
||||||
request = make_request(form={'form.widgets.title': 'foo',
|
request = make_request(form={'form.widgets.title': u'foo',
|
||||||
'form.widgets.text': 'bar'})
|
'form.widgets.text': u'bar'})
|
||||||
|
|
||||||
commentForm = getMultiAdapter((self.context, request),
|
commentForm = getMultiAdapter((self.context, request),
|
||||||
name=u"comment-form")
|
name=u"comment-form")
|
||||||
|
Loading…
Reference in New Issue
Block a user