@@ -30,6 +30,8 @@ import { fieldBooleanArrayRequired } from '../fixtures/fields/simpleRestrictions
30
30
import { fieldStringCodeList } from '../fixtures/fields/simpleRestrictions/string/fieldStringCodeList' ;
31
31
import { codeListString } from '../fixtures/restrictions/codeListsFixtures' ;
32
32
import { fieldStringArrayCodeList } from '../fixtures/fields/simpleRestrictions/string/fieldStringArrayCodeList' ;
33
+ import { fieldStringConditionalExists } from '../fixtures/fields/conditionalRestrictions/fieldStringConditionalExists' ;
34
+ import { fieldStringConditionalExistsWithouthThenElse } from '../fixtures/fields/conditionalRestrictions/fieldStringConditionalExistsWithouthThenElse' ;
33
35
34
36
describe ( 'Parse Values - parseFieldValue' , ( ) => {
35
37
describe ( 'Single Value Fields' , ( ) => {
@@ -165,6 +167,34 @@ describe('Parse Values - parseFieldValue', () => {
165
167
expect ( parseFieldValue ( ' !@#$%^&* ()_+ ' , fieldStringNoRestriction ) . success ) . true ;
166
168
expect ( parseFieldValue ( ' !@#$%^&* ()_+ ' , fieldStringNoRestriction ) . data ) . equals ( '!@#$%^&* ()_+' ) ;
167
169
} ) ;
170
+ it ( 'Successfuly parses strings, with conditional restrictions' , ( ) => {
171
+ const value = 'any random string value!!!' ;
172
+ const result = parseFieldValue ( value , fieldStringConditionalExists ) ;
173
+ expect ( result . success ) . true ;
174
+ expect ( result . data ) . equal ( value ) ;
175
+
176
+ expect ( parseFieldValue ( ' 123' , fieldStringConditionalExists ) . success ) . true ;
177
+ expect ( parseFieldValue ( ' 123' , fieldStringConditionalExists ) . data ) . equals ( '123' ) ;
178
+ expect ( parseFieldValue ( 'false ' , fieldStringConditionalExists ) . success ) . true ;
179
+ expect ( parseFieldValue ( 'false ' , fieldStringConditionalExists ) . data ) . equals ( 'false' ) ;
180
+ expect ( parseFieldValue ( ' !@#$%^&* ()_+ ' , fieldStringConditionalExists ) . success ) . true ;
181
+ expect ( parseFieldValue ( ' !@#$%^&* ()_+ ' , fieldStringConditionalExists ) . data ) . equals ( '!@#$%^&* ()_+' ) ;
182
+ } ) ;
183
+ it ( 'Successfuly parses strings, with conditional restrictions without then or else' , ( ) => {
184
+ const value = 'any random string value!!!' ;
185
+ const result = parseFieldValue ( value , fieldStringConditionalExistsWithouthThenElse ) ;
186
+ expect ( result . success ) . true ;
187
+ expect ( result . data ) . equal ( value ) ;
188
+
189
+ expect ( parseFieldValue ( ' 123' , fieldStringConditionalExistsWithouthThenElse ) . success ) . true ;
190
+ expect ( parseFieldValue ( ' 123' , fieldStringConditionalExistsWithouthThenElse ) . data ) . equals ( '123' ) ;
191
+ expect ( parseFieldValue ( 'false ' , fieldStringConditionalExistsWithouthThenElse ) . success ) . true ;
192
+ expect ( parseFieldValue ( 'false ' , fieldStringConditionalExistsWithouthThenElse ) . data ) . equals ( 'false' ) ;
193
+ expect ( parseFieldValue ( ' !@#$%^&* ()_+ ' , fieldStringConditionalExistsWithouthThenElse ) . success ) . true ;
194
+ expect ( parseFieldValue ( ' !@#$%^&* ()_+ ' , fieldStringConditionalExistsWithouthThenElse ) . data ) . equals (
195
+ '!@#$%^&* ()_+' ,
196
+ ) ;
197
+ } ) ;
168
198
it ( 'Updates string to match formatting of codeList value' , ( ) => {
169
199
const value = 'banana' ;
170
200
const result = parseFieldValue ( value , fieldStringCodeList ) ;
0 commit comments