-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #667 from grzesiek2010/PYXFORM-616
Add rows to parameters column for text type
- Loading branch information
Showing
2 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# -*- coding: utf-8 -*- | ||
""" | ||
Test text rows parameter. | ||
""" | ||
from tests.pyxform_test_case import PyxformTestCase | ||
|
||
|
||
class TestParametersRows(PyxformTestCase): | ||
def test_adding_rows_to_the_body_if_set_in_its_own_column( | ||
self, | ||
): | ||
self.assertPyxformXform( | ||
name="data", | ||
md=""" | ||
| survey | | | | | | ||
| | type | name | label | body::rows | | ||
| | text | name | Name | 7 | | ||
""", | ||
xml__xpath_match=["/h:html/h:body/x:input[@ref='/data/name' and @rows='7']"], | ||
) | ||
|
||
def test_using_the_number_of_rows_specified_in_parameters_if_it_is_set_in_both_its_own_column_and_the_parameters_column( | ||
self, | ||
): | ||
self.assertPyxformXform( | ||
name="data", | ||
md=""" | ||
| survey | | | | | | | ||
| | type | name | label | body::rows | parameters | | ||
| | text | name | Name | 7 | rows=8 | | ||
""", | ||
xml__xpath_match=["/h:html/h:body/x:input[@ref='/data/name' and @rows='8']"], | ||
) | ||
|
||
def test_adding_rows_to_the_body_if_set_in_parameters( | ||
self, | ||
): | ||
self.assertPyxformXform( | ||
name="data", | ||
md=""" | ||
| survey | | | | | | ||
| | type | name | label | parameters | | ||
| | text | name | Name | rows=7 | | ||
""", | ||
xml__xpath_match=["/h:html/h:body/x:input[@ref='/data/name' and @rows='7']"], | ||
) | ||
|
||
def test_throwing_error_if_rows_set_in_parameters_but_the_value_is_not_an_integer( | ||
self, | ||
): | ||
parameters = ("rows=", "rows=foo", "rows=7.5") | ||
md = """ | ||
| survey | | | | | | ||
| | type | name | label | parameters | | ||
| | text | name | Name | {case} | | ||
""" | ||
for case in parameters: | ||
with self.subTest(msg=case): | ||
self.assertPyxformXform( | ||
name="data", | ||
md=md.format(case=case), | ||
errored=True, | ||
error__contains=[ | ||
"[row : 2] Parameter rows must have an integer value." | ||
], | ||
) |