Skip to content

Commit b98ba4a

Browse files
committed
Added integration test for AtlasOfLivingAustralia/biocollect#1436
1 parent b036694 commit b98ba4a

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/test/groovy/au/org/ala/ecodata/forms/ModelJSTagLibSpec.groovy

+14
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,20 @@ class ModelJSTagLibSpec extends Specification implements TagLibUnitTest<ModelJST
232232
compareWithoutWhiteSpace("data['test'].load(ecodata.forms.orDefault(data['test'],undefined));data['test'](ecodata.forms.orDefault(data['test'],undefined));", actualOut.toString())
233233
}
234234

235+
def "Input data is null/undefined checked before calling loadData() on SpeciesViewModel"() {
236+
setup:
237+
Map dataModel = [name:'test', dataType:'species']
238+
ctx.dataModel = dataModel
239+
ctx.propertyPath = 'self.data'
240+
ctx.attrs = [:]
241+
242+
when:
243+
tagLib.renderInitialiser(ctx)
244+
245+
then:
246+
compareWithoutWhiteSpace("if(data['test']){self.data['test'].loadData(ecodata.forms.orDefault(data['test'], {}));}", actualOut.toString())
247+
}
248+
235249
def "The lookup table data type is rendered correctly"() {
236250
setup:
237251
List lookupTable = [[input:'a', output:'1'], [input:'b', output:'2']]

0 commit comments

Comments
 (0)