Commit 06a54a8c by Diana Huang

Consolidate tests into one larger test

parent ab7a6165
...@@ -457,17 +457,21 @@ class TextLine(InputTypeBase): ...@@ -457,17 +457,21 @@ class TextLine(InputTypeBase):
""" """
A text line input. Can do math preview if "math"="1" is specified. A text line input. Can do math preview if "math"="1" is specified.
If "trailing_text" is set to a value, then the textline will be shown with the value after the text input, If "trailing_text" is set to a value, then the textline will be shown with
and before the checkmark or any input-specific feedback. HTML will not work, but properly escaped HTML characters will. the value after the text input, and before the checkmark or any input-specific
This feature is useful if you would like to specify a specific type of units for the text input. feedback. HTML will not work, but properly escaped HTML characters will. This
feature is useful if you would like to specify a specific type of units for the
text input.
If the hidden attribute is specified, the textline is hidden and the input id is stored in a div with name equal If the hidden attribute is specified, the textline is hidden and the input id
to the value of the hidden attribute. This is used e.g. for embedding simulations turned into questions. is stored in a div with name equal to the value of the hidden attribute. This
is used e.g. for embedding simulations turned into questions.
Example: Example:
<texline math="1" trailing_text="m/s" /> <texline math="1" trailing_text="m/s" />
This example will render out a text line with a math preview and the text 'm/s' after the end of the text line. This example will render out a text line with a math preview and the text 'm/s'
after the end of the text line.
""" """
template = "textline.html" template = "textline.html"
......
# coding='utf-8'
""" """
feature Tests of input types. Tests of input types.
TODO: TODO:
- refactor: so much repetive code (have factory methods that build xml elements directly, etc) - refactor: so much repetive code (have factory methods that build xml elements directly, etc)
...@@ -21,7 +20,6 @@ import json ...@@ -21,7 +20,6 @@ import json
from lxml import etree from lxml import etree
import unittest import unittest
import xml.sax.saxutils as saxutils import xml.sax.saxutils as saxutils
import unicodedata as ud
from . import test_system from . import test_system
from capa import inputtypes from capa import inputtypes
...@@ -220,87 +218,40 @@ class TextLineTest(unittest.TestCase): ...@@ -220,87 +218,40 @@ class TextLineTest(unittest.TestCase):
def test_trailing_text_rendering(self): def test_trailing_text_rendering(self):
size = "42" size = "42"
trailing_text = 'm/s' # store (xml_text, expected)
xml_str = """<textline id="prob_1_2" trailing_text = []
size="{size}" # standard trailing text
trailing_text="{tt}" trailing_text.append(('m/s', 'm/s'))
/>""".format(size=size, tt=trailing_text) # unicode trailing text
trailing_text.append((u'\xc3', u'\xc3'))
element = etree.fromstring(xml_str) # html escaped trailing text
# this is the only one we expect to change
state = {'value': 'BumbleBee', } trailing_text.append(('a &lt; b','a < b'))
the_input = lookup_tag('textline')(test_system, element, state)
for xml_text, expected_text in trailing_text:
context = the_input._get_render_context() xml_str = u"""<textline id="prob_1_2"
size="{size}"
expected = {'id': 'prob_1_2', trailing_text="{tt}"
'value': 'BumbleBee', />""".format(size=size, tt=xml_text)
'status': 'unanswered',
'size': size, element = etree.fromstring(xml_str)
'msg': '',
'hidden': False, state = {'value': 'BumbleBee', }
'inline': False, the_input = lookup_tag('textline')(test_system, element, state)
'do_math': False,
'trailing_text': trailing_text, context = the_input._get_render_context()
'preprocessor': None}
self.assertEqual(context, expected) expected = {'id': 'prob_1_2',
'value': 'BumbleBee',
'status': 'unanswered',
def test_trailing_unicode(self): 'size': size,
size = "42" 'msg': '',
trailing_text = u'\xc3' 'hidden': False,
print trailing_text 'inline': False,
xml_str = u"""<textline id="prob_1_2" 'do_math': False,
size="{size}" 'trailing_text': expected_text,
trailing_text="{tt}" 'preprocessor': None}
/>""".format(size=size, tt=trailing_text) self.assertEqual(context, expected)
element = etree.fromstring(xml_str)
state = {'value': 'BumbleBee', }
the_input = lookup_tag('textline')(test_system, element, state)
context = the_input._get_render_context()
expected = {'id': 'prob_1_2',
'value': 'BumbleBee',
'status': 'unanswered',
'size': size,
'msg': '',
'hidden': False,
'inline': False,
'do_math': False,
'trailing_text': trailing_text,
'preprocessor': None}
self.assertEqual(context, expected)
def test_trailing_text_special_characters(self):
size = "42"
trailing_text = 'a &lt; b'
xml_str = """<textline id="prob_1_2"
size="{size}"
trailing_text="{tt}"
/>""".format(size=size, tt=trailing_text)
element = etree.fromstring(xml_str)
state = {'value': 'BumbleBee', }
the_input = lookup_tag('textline')(test_system, element, state)
context = the_input._get_render_context()
expected = {'id': 'prob_1_2',
'value': 'BumbleBee',
'status': 'unanswered',
'size': size,
'msg': '',
'hidden': False,
'inline': False,
'do_math': False,
'trailing_text': 'a < b',
'preprocessor': None}
self.assertEqual(context, expected)
class FileSubmissionTest(unittest.TestCase): class FileSubmissionTest(unittest.TestCase):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment