libosmocore/tests/ctrl/ctrl_test.ok

217 lines
4.4 KiB
Plaintext
Raw Permalink Normal View History

Checking ctrl types...
ctrl_type_vals: explicitly terminate Don't use CTRL_TYPE_UNKNOWN as value_string[] terminator, use an explicit, more obvious { 0, NULL } termination. Set an explicit string for CTRL_TYPE_UNKNOWN. No other value_string[]s to date have such a "hidden" terminator. BTW, a { 0, "string" } item is not a terminator, only { 0, NULL } is, so we can set a string for CTRL_TYPE_UNKNOWN == 0. Also, having a string value for CTRL_TYPE_UNKNOWN is not harmful because all code paths explicitly check for the CTRL_TYPE_*s that are valid. Adjust the test expectation. From the ctrl_type_vals enum, remove the = 0, because it is implicitly 0 anyway. One motivation to press this fixup: I am trying to add a script that checks whether all value_string[]s are terminated to our jenkins jobs, and to find that this one is terminated, it would need to interpret the CTRL_TYPE_UNKNOWN constant, which would make things far more complex. At this point, all of the value_string[]s have an explicit termination, and I would like to enforce this from now on -- for readable code and to not spend more time on the validator. The patch adding ctrl_type_vals (Icd4e96dd9f00876cb70b43cfcf42ab4f10311b28) was accepted by another reviewer before I could reconfirm my -1, so this is a fixup to enable the termination checking script patches. Related: I2bc93ab4781487e7685cfb63091a489cd126b1a8 (adds script to libosmocore) I7fe3678b524d602fc6aa14bc0ed06308df809a3e (uses in jenkins.sh) Icd4e96dd9f00876cb70b43cfcf42ab4f10311b28 (adds ctrl_type_vals) Change-Id: Ia99f37464c7b36b587da2cc78f52c82725f02cbc
2017-03-02 13:32:52 +00:00
ctrl type 0 is (unknown) -> 0 OK
ctrl type 1 is GET -> 1 OK
ctrl type 2 is SET -> 2 OK
ctrl type 3 is GET_REPLY -> 3 OK
ctrl type 4 is SET_REPLY -> 4 OK
ctrl type 5 is TRAP -> 5 OK
ctrl type 6 is ERROR -> 6 OK
ctrl type 64 is unknown 0x40 [PARSE FAILED]
test: 'GET 1 variable'
parsing:
type = 'GET'
id = '1'
variable = 'variable'
value = '(null)'
reply = '(null)'
handling:
replied: 'ERROR 1 Command not found'
ok
test: 'GET 1 variable\n'
parsing:
type = 'GET'
id = '1'
variable = 'variable'
value = '(null)'
reply = '(null)'
handling:
replied: 'ERROR 1 Command not found'
ok
test: 'GET 1 var\ni\nable'
parsing:
type = 'ERROR' (parse failure)
id = '1'
reply = 'GET with trailing characters'
handling:
replied: 'ERROR 1 GET with trailing characters'
ok
test: 'GET 1 var\ti\table'
parsing:
type = 'ERROR' (parse failure)
id = '1'
reply = 'GET variable contains invalid characters'
handling:
replied: 'ERROR 1 GET variable contains invalid characters'
ok
test: 'GET 1 var\ri\rable'
parsing:
type = 'ERROR' (parse failure)
id = '1'
reply = 'GET variable contains invalid characters'
handling:
replied: 'ERROR 1 GET variable contains invalid characters'
ok
test: 'GET 1 variable value'
parsing:
type = 'ERROR' (parse failure)
id = '1'
reply = 'GET with trailing characters'
handling:
replied: 'ERROR 1 GET with trailing characters'
ok
test: 'GET 1 variable value\n'
parsing:
type = 'ERROR' (parse failure)
id = '1'
reply = 'GET with trailing characters'
handling:
replied: 'ERROR 1 GET with trailing characters'
ok
test: 'GET 1 variable multiple value tokens'
parsing:
type = 'ERROR' (parse failure)
id = '1'
reply = 'GET with trailing characters'
handling:
replied: 'ERROR 1 GET with trailing characters'
ok
test: 'GET 1 variable multiple value tokens\n'
parsing:
type = 'ERROR' (parse failure)
id = '1'
reply = 'GET with trailing characters'
handling:
replied: 'ERROR 1 GET with trailing characters'
ok
test: 'SET 1 variable value'
parsing:
type = 'SET'
id = '1'
variable = 'variable'
value = 'value'
reply = '(null)'
handling:
replied: 'ERROR 1 Command not found'
ok
test: 'SET 1 variable value\n'
parsing:
type = 'SET'
id = '1'
variable = 'variable'
value = 'value'
reply = '(null)'
handling:
replied: 'ERROR 1 Command not found'
ok
test: 'SET weird_id variable value'
parsing:
type = 'ERROR' (parse failure)
id = 'err'
reply = 'Invalid message ID number'
handling:
replied: 'ERROR err Invalid message ID number'
ok
test: 'SET weird_id variable value\n'
parsing:
type = 'ERROR' (parse failure)
id = 'err'
reply = 'Invalid message ID number'
handling:
replied: 'ERROR err Invalid message ID number'
ok
test: 'SET 1 variable multiple value tokens'
parsing:
type = 'SET'
id = '1'
variable = 'variable'
value = 'multiple value tokens'
reply = '(null)'
handling:
replied: 'ERROR 1 Command not found'
ok
test: 'SET 1 variable multiple value tokens\n'
parsing:
type = 'SET'
id = '1'
variable = 'variable'
value = 'multiple value tokens'
reply = '(null)'
handling:
replied: 'ERROR 1 Command not found'
ok
test: 'SET 1 variable value_with_trailing_spaces '
parsing:
type = 'SET'
id = '1'
variable = 'variable'
value = 'value_with_trailing_spaces '
reply = '(null)'
handling:
replied: 'ERROR 1 Command not found'
ok
test: 'SET 1 variable value_with_trailing_spaces \n'
parsing:
type = 'SET'
id = '1'
variable = 'variable'
value = 'value_with_trailing_spaces '
reply = '(null)'
handling:
replied: 'ERROR 1 Command not found'
ok
test: 'SET \n special_char_id value'
parsing:
type = 'ERROR' (parse failure)
id = 'err'
reply = 'Invalid message ID number'
handling:
replied: 'ERROR err Invalid message ID number'
ok
test: 'SET \t special_char_id value'
parsing:
type = 'ERROR' (parse failure)
id = 'err'
reply = 'Invalid message ID number'
handling:
replied: 'ERROR err Invalid message ID number'
ok
test: 'GET_REPLY 1 variable OK'
parsing:
type = 'GET_REPLY'
id = '1'
variable = 'variable'
value = '(null)'
reply = 'OK'
handling:
ok
test: 'SET_REPLY 1 variable OK'
parsing:
type = 'SET_REPLY'
id = '1'
variable = 'variable'
value = '(null)'
reply = 'OK'
handling:
ok
test: 'ERROR 1 some error message'
parsing:
type = 'ERROR' (error received)
id = '1'
reply = 'some error message'
handling:
ok
test: 'ERROR err some error message'
parsing:
type = 'ERROR' (error received)
id = 'err'
reply = 'some error message'
handling:
ok
test_deferred_cmd
get_test_defer called
ctrl_handle_msg() returned 0
invoking ctrl_test_defer_cb() asynchronously
ctrl_test_defer_cb called
success