k2hr3-api 1.0.41 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/k2hr3-init.sh.templ +2 -2
- package/dist/.gitkeep +0 -0
- package/dist/src/app.js +262 -0
- package/{bin → dist/src/bin}/run.sh +1 -1
- package/dist/src/bin/watcher.js +113 -0
- package/dist/src/bin/www.js +217 -0
- package/dist/src/lib/basicipcheck.js +392 -0
- package/dist/src/lib/cacerts.js +106 -0
- package/dist/src/lib/dbglogging.js +190 -0
- package/dist/src/lib/dummyuserapi.js +719 -0
- package/dist/src/lib/ipwatch.js +354 -0
- package/dist/src/lib/k2hr3acrutil.js +532 -0
- package/dist/src/lib/k2hr3apiutil.js +1444 -0
- package/dist/src/lib/k2hr3cliutil.js +183 -0
- package/dist/src/lib/k2hr3config.js +832 -0
- package/dist/src/lib/k2hr3cryptutil.js +258 -0
- package/dist/src/lib/k2hr3dkc.js +12121 -0
- package/dist/src/lib/k2hr3extdata.js +198 -0
- package/dist/src/lib/k2hr3keys.js +207 -0
- package/dist/src/lib/k2hr3resutil.js +111 -0
- package/dist/src/lib/k2hr3template.js +6546 -0
- package/dist/src/lib/k2hr3tokens.js +2643 -0
- package/dist/src/lib/k2hr3userdata.js +296 -0
- package/dist/src/lib/k8soidc.js +1000 -0
- package/dist/src/lib/openstackapiv2.js +695 -0
- package/dist/src/lib/openstackapiv3.js +932 -0
- package/dist/src/lib/openstackep.js +667 -0
- package/{tests/auto_common.js → dist/src/lib/types.js} +4 -38
- package/dist/src/routes/acr.js +704 -0
- package/dist/src/routes/debugVerify.js +294 -0
- package/dist/src/routes/extdata.js +219 -0
- package/dist/src/routes/list.js +264 -0
- package/dist/src/routes/policy.js +840 -0
- package/dist/src/routes/resource.js +1489 -0
- package/dist/src/routes/role.js +2627 -0
- package/dist/src/routes/service.js +908 -0
- package/dist/src/routes/tenant.js +1141 -0
- package/dist/src/routes/userTokens.js +482 -0
- package/dist/src/routes/userdata.js +212 -0
- package/dist/src/routes/version.js +103 -0
- package/package.json +152 -121
- package/ChangeLog +0 -372
- package/app.js +0 -292
- package/bin/watcher +0 -122
- package/bin/www +0 -180
- package/eslint.config.mjs +0 -68
- package/lib/basicipcheck.js +0 -376
- package/lib/cacerts.js +0 -71
- package/lib/dbglogging.js +0 -151
- package/lib/dummyuserapi.js +0 -766
- package/lib/ipwatch.js +0 -379
- package/lib/k2hr3acrutil.js +0 -516
- package/lib/k2hr3apiutil.js +0 -1494
- package/lib/k2hr3cliutil.js +0 -191
- package/lib/k2hr3config.js +0 -826
- package/lib/k2hr3cryptutil.js +0 -254
- package/lib/k2hr3dkc.js +0 -12632
- package/lib/k2hr3extdata.js +0 -198
- package/lib/k2hr3keys.js +0 -234
- package/lib/k2hr3resutil.js +0 -100
- package/lib/k2hr3template.js +0 -6925
- package/lib/k2hr3tokens.js +0 -2799
- package/lib/k2hr3userdata.js +0 -312
- package/lib/k8soidc.js +0 -1012
- package/lib/openstackapiv2.js +0 -764
- package/lib/openstackapiv3.js +0 -1032
- package/lib/openstackep.js +0 -553
- package/routes/acr.js +0 -738
- package/routes/debugVerify.js +0 -263
- package/routes/extdata.js +0 -232
- package/routes/list.js +0 -270
- package/routes/policy.js +0 -869
- package/routes/resource.js +0 -1441
- package/routes/role.js +0 -2664
- package/routes/service.js +0 -894
- package/routes/tenant.js +0 -1095
- package/routes/userTokens.js +0 -511
- package/routes/userdata.js +0 -218
- package/routes/version.js +0 -108
- package/templ/Dockerfile.templ +0 -71
- package/tests/auto_acr.js +0 -1101
- package/tests/auto_acr_spec.js +0 -79
- package/tests/auto_all_spec.js +0 -142
- package/tests/auto_control_subprocess.sh +0 -243
- package/tests/auto_extdata.js +0 -220
- package/tests/auto_extdata_spec.js +0 -79
- package/tests/auto_init_config_json.sh +0 -275
- package/tests/auto_k2hdkc_server.ini +0 -109
- package/tests/auto_k2hdkc_slave.ini +0 -83
- package/tests/auto_list.js +0 -439
- package/tests/auto_list_spec.js +0 -79
- package/tests/auto_policy.js +0 -1579
- package/tests/auto_policy_spec.js +0 -79
- package/tests/auto_resource.js +0 -10956
- package/tests/auto_resource_spec.js +0 -79
- package/tests/auto_role.js +0 -6150
- package/tests/auto_role_spec.js +0 -79
- package/tests/auto_service.js +0 -770
- package/tests/auto_service_spec.js +0 -79
- package/tests/auto_subprocesses.js +0 -114
- package/tests/auto_template.sh +0 -126
- package/tests/auto_tenant.js +0 -1100
- package/tests/auto_tenant_spec.js +0 -79
- package/tests/auto_token_util.js +0 -219
- package/tests/auto_userdata.js +0 -292
- package/tests/auto_userdata_spec.js +0 -79
- package/tests/auto_usertokens.js +0 -565
- package/tests/auto_usertokens_spec.js +0 -79
- package/tests/auto_version.js +0 -127
- package/tests/auto_version_spec.js +0 -79
- package/tests/auto_watcher.js +0 -157
- package/tests/auto_watcher_spec.js +0 -79
- package/tests/k2hdkc_test.data +0 -986
- package/tests/k2hdkc_test_load.sh +0 -255
- package/tests/k2hr3template_test.js +0 -187
- package/tests/k2hr3template_test.sh +0 -339
- package/tests/k2hr3template_test_async.js +0 -216
- package/tests/k2hr3template_test_template.result +0 -7117
- package/tests/k2hr3template_test_template.txt +0 -3608
- package/tests/k2hr3template_test_vars.js +0 -194
- package/tests/manual_acr_delete.js +0 -143
- package/tests/manual_acr_get.js +0 -297
- package/tests/manual_acr_postput.js +0 -215
- package/tests/manual_allusertenant_get.js +0 -113
- package/tests/manual_extdata_get.js +0 -191
- package/tests/manual_k2hr3keys_get.js +0 -84
- package/tests/manual_list_gethead.js +0 -230
- package/tests/manual_policy_delete.js +0 -132
- package/tests/manual_policy_gethead.js +0 -275
- package/tests/manual_policy_postput.js +0 -297
- package/tests/manual_resource_delete.js +0 -433
- package/tests/manual_resource_gethead.js +0 -423
- package/tests/manual_resource_postput.js +0 -487
- package/tests/manual_role_delete.js +0 -404
- package/tests/manual_role_gethead.js +0 -547
- package/tests/manual_role_postput.js +0 -544
- package/tests/manual_service_delete.js +0 -153
- package/tests/manual_service_gethead.js +0 -178
- package/tests/manual_service_postput.js +0 -348
- package/tests/manual_tenant_delete.js +0 -186
- package/tests/manual_tenant_gethead.js +0 -268
- package/tests/manual_tenant_postput.js +0 -293
- package/tests/manual_test.sh +0 -352
- package/tests/manual_userdata_get.js +0 -173
- package/tests/manual_usertoken_gethead.js +0 -136
- package/tests/manual_usertoken_postput.js +0 -310
- package/tests/manual_version_get.js +0 -127
- package/tests/run_local_test_k2hdkc.sh +0 -174
- package/tests/test.sh +0 -333
|
@@ -1,3608 +0,0 @@
|
|
|
1
|
-
#
|
|
2
|
-
# K2HR3 REST API
|
|
3
|
-
#
|
|
4
|
-
# Copyright 2017 Yahoo Japan Corporation.
|
|
5
|
-
#
|
|
6
|
-
# K2HR3 is K2hdkc based Resource and Roles and policy Rules, gathers
|
|
7
|
-
# common management information for the cloud.
|
|
8
|
-
# K2HR3 can dynamically manage information as "who", "what", "operate".
|
|
9
|
-
# These are stored as roles, resources, policies in K2hdkc, and the
|
|
10
|
-
# client system can dynamically read and modify these information.
|
|
11
|
-
#
|
|
12
|
-
# For the full copyright and license information, please view
|
|
13
|
-
# the license file that was distributed with this source code.
|
|
14
|
-
#
|
|
15
|
-
# AUTHOR: Takeshi Nakatani
|
|
16
|
-
# CREATE: Wed Jul 14 2017
|
|
17
|
-
# REVISION:
|
|
18
|
-
#
|
|
19
|
-
|
|
20
|
-
#
|
|
21
|
-
# This file is test template file for k2hr3template.js
|
|
22
|
-
#
|
|
23
|
-
# This file has all basically pattern for k2hr3 template engine.
|
|
24
|
-
#
|
|
25
|
-
|
|
26
|
-
############################################################
|
|
27
|
-
#### Statement : Static
|
|
28
|
-
############################################################
|
|
29
|
-
##
|
|
30
|
-
## Test > Statement > Static
|
|
31
|
-
##
|
|
32
|
-
**** STATIC: "This line is test for static statement in escaped statement." ===> "{ This line is test for static statement in escaped statement. }"
|
|
33
|
-
{{{ This line is test for static statement in escaped statement. }}}
|
|
34
|
-
|
|
35
|
-
##
|
|
36
|
-
## Test > Statement > Comment
|
|
37
|
-
##
|
|
38
|
-
**** COMMENT: "# This line is test for comment statement." ===> ""
|
|
39
|
-
{{# This line is test for comment statement. }}
|
|
40
|
-
|
|
41
|
-
############################################################
|
|
42
|
-
#### Statement : Print
|
|
43
|
-
############################################################
|
|
44
|
-
##
|
|
45
|
-
## Test > Statement > Print
|
|
46
|
-
##
|
|
47
|
-
**** PRINT: "= %statement_print_test_00%" ===> "value_00"
|
|
48
|
-
{{= %statement_print_test_00% }}
|
|
49
|
-
|
|
50
|
-
############################################################
|
|
51
|
-
#### Formula : Variable
|
|
52
|
-
############################################################
|
|
53
|
-
##
|
|
54
|
-
## Test > Formula > Variable
|
|
55
|
-
##
|
|
56
|
-
**** VARIABLE: "= %formula_variable_00%"(value_name_00) ===> "value_name_00"
|
|
57
|
-
{{= %formula_variable_00% }}
|
|
58
|
-
|
|
59
|
-
**** VARIABLE: "= %formula_variable_01%[0]"(value_01[0]) ===> "value_01[0]"
|
|
60
|
-
{{= %formula_variable_01%[0] }}
|
|
61
|
-
|
|
62
|
-
**** VARIABLE: "= %formula_variable_02%{%formula_variable_00%}"(value_02{value_name_00}) ===> "value_02{value_name_00}"
|
|
63
|
-
{{= %formula_variable_02%{%formula_variable_00%} }}
|
|
64
|
-
|
|
65
|
-
**** VARIABLE: "= null" ===> ""
|
|
66
|
-
{{= null }}
|
|
67
|
-
|
|
68
|
-
**** VARIABLE: "= true" ===> "true"
|
|
69
|
-
{{= true }}
|
|
70
|
-
|
|
71
|
-
**** VARIABLE: "= false" ===> "false"
|
|
72
|
-
{{= false }}
|
|
73
|
-
|
|
74
|
-
**** VARIABLE: "= 1" ===> "1"
|
|
75
|
-
{{= 1 }}
|
|
76
|
-
|
|
77
|
-
**** VARIABLE: "= 0xff" ===> "255"
|
|
78
|
-
{{= 0xff }}
|
|
79
|
-
|
|
80
|
-
**** VARIABLE: "= 0o11" ===> "9"
|
|
81
|
-
{{= 0o11 }}
|
|
82
|
-
|
|
83
|
-
**** VARIABLE: "= 0b11" ===> "3"
|
|
84
|
-
{{= 0b11 }}
|
|
85
|
-
|
|
86
|
-
**** VARIABLE: "= 'formula_variable_static_squote_00'" ===> "formula_variable_static_squote_00"
|
|
87
|
-
{{= 'formula_variable_static_squote_00' }}
|
|
88
|
-
|
|
89
|
-
**** VARIABLE: "= 'formula_variable_static_squote_""01'" ===> "formula_variable_static_squote_""01"
|
|
90
|
-
{{= 'formula_variable_static_squote_""01' }}
|
|
91
|
-
|
|
92
|
-
**** VARIABLE: "= "formula_variable_static_squote_10"" ===> "formula_variable_static_squote_10"
|
|
93
|
-
{{= "formula_variable_static_squote_10" }}
|
|
94
|
-
|
|
95
|
-
**** VARIABLE: "= "formula_variable_static_squote_''11"" ===> "formula_variable_static_squote_''11"
|
|
96
|
-
{{= "formula_variable_static_squote_''11" }}
|
|
97
|
-
|
|
98
|
-
**** VARIABLE: "= %formula_variable_array_01%" ===> "array_value_00,array_value_01"
|
|
99
|
-
{{= %formula_variable_array_01% }}
|
|
100
|
-
|
|
101
|
-
**** VARIABLE: "= %formula_variable_array_01%.length" ===> "2"
|
|
102
|
-
{{= %formula_variable_array_01%.length }}
|
|
103
|
-
|
|
104
|
-
**** VARIABLE: "= %formula_variable_array_01%.size" ===> "2"
|
|
105
|
-
{{= %formula_variable_array_01%.size }}
|
|
106
|
-
|
|
107
|
-
**** VARIABLE: "= %formula_variable_array_01%.count" ===> "2"
|
|
108
|
-
{{= %formula_variable_array_01%.count }}
|
|
109
|
-
|
|
110
|
-
**** VARIABLE: "= %formula_variable_array_01%[0]" ===> "array_value_00"
|
|
111
|
-
{{= %formula_variable_array_01%[0] }}
|
|
112
|
-
|
|
113
|
-
**** VARIABLE: "= %formula_variable_array_01%["1"]" ===> "array_value_01"
|
|
114
|
-
{{= %formula_variable_array_01%["1"] }}
|
|
115
|
-
|
|
116
|
-
**** VARIABLE: "= %formula_variable_array_01%['1']" ===> "array_value_01"
|
|
117
|
-
{{= %formula_variable_array_01%['1'] }}
|
|
118
|
-
|
|
119
|
-
**** VARIABLE: "= %formula_variable_array_01%{0}" ===> "array_value_00"
|
|
120
|
-
{{= %formula_variable_array_01%{0} }}
|
|
121
|
-
|
|
122
|
-
**** VARIABLE: "= %formula_variable_array_01%{"1"}" ===> "array_value_01"
|
|
123
|
-
{{= %formula_variable_array_01%{"1"} }}
|
|
124
|
-
|
|
125
|
-
**** VARIABLE: "= %formula_variable_array_01%{'1'}" ===> "array_value_01"
|
|
126
|
-
{{= %formula_variable_array_01%{'1'} }}
|
|
127
|
-
|
|
128
|
-
**** VARIABLE: "= %formula_variable_object_01%" ===> "[object Object]"
|
|
129
|
-
{{= %formula_variable_object_01% }}
|
|
130
|
-
|
|
131
|
-
**** VARIABLE: "= %formula_variable_object_01%.length" ===> "4"
|
|
132
|
-
{{= %formula_variable_object_01%.length }}
|
|
133
|
-
|
|
134
|
-
**** VARIABLE: "= %formula_variable_object_01%.size" ===> "4"
|
|
135
|
-
{{= %formula_variable_object_01%.size }}
|
|
136
|
-
|
|
137
|
-
**** VARIABLE: "= %formula_variable_object_01%.count" ===> "4"
|
|
138
|
-
{{= %formula_variable_object_01%.count }}
|
|
139
|
-
|
|
140
|
-
**** VARIABLE: "= %formula_variable_object_01%{'object_key_00'}" ===> "object_value_00"
|
|
141
|
-
{{= %formula_variable_object_01%{'object_key_00'} }}
|
|
142
|
-
|
|
143
|
-
**** VARIABLE: "= %formula_variable_object_01%{"object_key_01"}" ===> "object_value_01"
|
|
144
|
-
{{= %formula_variable_object_01%{"object_key_01"} }}
|
|
145
|
-
|
|
146
|
-
**** VARIABLE: "= %formula_variable_object_01%{'object_key_02'}" ===> "object_value_02_01,object_value_02_02"
|
|
147
|
-
{{= %formula_variable_object_01%{'object_key_02'} }}
|
|
148
|
-
|
|
149
|
-
**** VARIABLE: "%temp_val% = %formula_variable_object_01%{'object_key_02'}" ===> "%temp_val%[0]" ===> "object_value_02_01"
|
|
150
|
-
{{ %temp_val% = %formula_variable_object_01%{'object_key_02'} }}{{= %temp_val%[0] }}
|
|
151
|
-
|
|
152
|
-
**** VARIABLE: "= %formula_variable_object_01%{'object_key_03'}" ===> "[object Object]"
|
|
153
|
-
{{= %formula_variable_object_01%{'object_key_03'} }}
|
|
154
|
-
|
|
155
|
-
**** VARIABLE: "%temp_val% = %formula_variable_object_01%{'object_key_03'}" ===> "%temp_val%['object_valkey_03_00']" ===> "true"
|
|
156
|
-
{{ %temp_val% = %formula_variable_object_01%{'object_key_03'} }}{{= %temp_val%['object_valkey_03_00'] }}
|
|
157
|
-
|
|
158
|
-
**** VARIABLE: "%temp_val% = %formula_variable_object_01%{'object_key_03'}" ===> "%temp_val%['object_valkey_03_01']" ===> "object_valval_03_01"
|
|
159
|
-
{{ %temp_val% = %formula_variable_object_01%{'object_key_03'} }}{{= %temp_val%['object_valkey_03_01'] }}
|
|
160
|
-
|
|
161
|
-
############################################################
|
|
162
|
-
#### Formula : Calculate
|
|
163
|
-
############################################################
|
|
164
|
-
##
|
|
165
|
-
## Test > Formula > Calculate > NOT
|
|
166
|
-
##
|
|
167
|
-
**** NOT: "= !true" ===> "false"
|
|
168
|
-
{{= !true }}
|
|
169
|
-
|
|
170
|
-
**** NOT: "= !false" ===> "true"
|
|
171
|
-
{{= !false }}
|
|
172
|
-
|
|
173
|
-
**** NOT: "= !%formula_calculate_not_00%"(!true) ===> "false"
|
|
174
|
-
{{= !%formula_calculate_not_00% }}
|
|
175
|
-
|
|
176
|
-
**** NOT: "= !%formula_calculate_not_01%"(!false) ===> "true"
|
|
177
|
-
{{= !%formula_calculate_not_01% }}
|
|
178
|
-
|
|
179
|
-
##
|
|
180
|
-
## Test > Formula > Calculate > INCREMENT
|
|
181
|
-
##
|
|
182
|
-
**** INCREMENT: "= ++0" ===> "1"
|
|
183
|
-
{{= ++0 }}
|
|
184
|
-
|
|
185
|
-
**** INCREMENT: "= ++%formula_calculate_inc_00%"(++0) ===> "1"
|
|
186
|
-
{{= ++%formula_calculate_inc_00% }}
|
|
187
|
-
|
|
188
|
-
**** INCREMENT: "= 0++" ===> "0"
|
|
189
|
-
{{= 0++ }}
|
|
190
|
-
|
|
191
|
-
**** INCREMENT: "= %formula_calculate_inc_00%++"(1++) ===> "1"
|
|
192
|
-
{{= %formula_calculate_inc_00%++ }}
|
|
193
|
-
|
|
194
|
-
##
|
|
195
|
-
## Test > Formula > Calculate > DECREMENT
|
|
196
|
-
##
|
|
197
|
-
**** DECREMENT: "= --1" ===> "0"
|
|
198
|
-
{{= --1 }}
|
|
199
|
-
|
|
200
|
-
**** DECREMENT: "= --%formula_calculate_dec_00%"(--2) ===> "1"
|
|
201
|
-
{{= --%formula_calculate_dec_00% }}
|
|
202
|
-
|
|
203
|
-
**** DECREMENT: "= 1--" ===> "1"
|
|
204
|
-
{{= 1-- }}
|
|
205
|
-
|
|
206
|
-
**** DECREMENT: "= %formula_calculate_dec_00%--"(1--) ===> 1
|
|
207
|
-
{{= %formula_calculate_dec_00%-- }}
|
|
208
|
-
|
|
209
|
-
##
|
|
210
|
-
## Test > Formula > Calculate > SET
|
|
211
|
-
##
|
|
212
|
-
**** SET: "= %formula_calculate_set_00% = null" ===> ""
|
|
213
|
-
{{= %formula_calculate_set_00% = null }}
|
|
214
|
-
|
|
215
|
-
**** SET: "= %formula_calculate_set_00% = true" ===> "true"
|
|
216
|
-
{{= %formula_calculate_set_00% = true }}
|
|
217
|
-
|
|
218
|
-
**** SET: "= %formula_calculate_set_00% = false" ===> "false"
|
|
219
|
-
{{= %formula_calculate_set_00% = false }}
|
|
220
|
-
|
|
221
|
-
**** SET: "= %formula_calculate_set_00% = 1" ===> "1"
|
|
222
|
-
{{= %formula_calculate_set_00% = 1 }}
|
|
223
|
-
|
|
224
|
-
**** SET: "= %formula_calculate_set_00% = x11" ===> "17"
|
|
225
|
-
{{= %formula_calculate_set_00% = x11 }}
|
|
226
|
-
|
|
227
|
-
**** SET: "= %formula_calculate_set_00% = 0x12" ===> "18"
|
|
228
|
-
{{= %formula_calculate_set_00% = 0x12 }}
|
|
229
|
-
|
|
230
|
-
**** SET: "= %formula_calculate_set_00% = 0o11" ===> "9"
|
|
231
|
-
{{= %formula_calculate_set_00% = 0o11 }}
|
|
232
|
-
|
|
233
|
-
**** SET: "= %formula_calculate_set_00% = 0b11" ===> "3"
|
|
234
|
-
{{= %formula_calculate_set_00% = 0b11 }}
|
|
235
|
-
|
|
236
|
-
**** SET: "= %formula_calculate_set_00% = 'squate string'" ===> "squate string"
|
|
237
|
-
{{= %formula_calculate_set_00% = 'squate string' }}
|
|
238
|
-
|
|
239
|
-
**** SET: "= %formula_calculate_set_00% = "dquate string"" ===> "dquate string"
|
|
240
|
-
{{= %formula_calculate_set_00% = "dquate string" }}
|
|
241
|
-
|
|
242
|
-
**** SET: "= %formula_calculate_set_00% = %formula_calculate_set_01%"(100) ===> "100"
|
|
243
|
-
{{= %formula_calculate_set_00% = %formula_calculate_set_01% }}
|
|
244
|
-
|
|
245
|
-
##
|
|
246
|
-
## Test > Formula > Calculate > PLUS
|
|
247
|
-
##
|
|
248
|
-
**** PLUS: "= 1 + 1" ===> "2"
|
|
249
|
-
{{= 1 + 1 }}
|
|
250
|
-
|
|
251
|
-
**** PLUS: "= 1 + x1" ===> "2"
|
|
252
|
-
{{= 1 + x1 }}
|
|
253
|
-
|
|
254
|
-
**** PLUS: "= 1 + 0x1" ===> "2"
|
|
255
|
-
{{= 1 + 0x1 }}
|
|
256
|
-
|
|
257
|
-
**** PLUS: "= 1 + 0o1" ===> "2"
|
|
258
|
-
{{= 1 + 0o1 }}
|
|
259
|
-
|
|
260
|
-
**** PLUS: "= 1 + 0b1" ===> "2"
|
|
261
|
-
{{= 1 + 0b1 }}
|
|
262
|
-
|
|
263
|
-
**** PLUS: "= x1 + 1" ===> "2"
|
|
264
|
-
{{= x1 + 1 }}
|
|
265
|
-
|
|
266
|
-
**** PLUS: "= 0x1 + 1" ===> "2"
|
|
267
|
-
{{= 0x1 + 1 }}
|
|
268
|
-
|
|
269
|
-
**** PLUS: "= 0o1 + 1" ===> "2"
|
|
270
|
-
{{= 0o1 + 1 }}
|
|
271
|
-
|
|
272
|
-
**** PLUS: "= 0b1 + 1" ===> "2"
|
|
273
|
-
{{= 0b1 + 1 }}
|
|
274
|
-
|
|
275
|
-
**** PLUS: "= %formula_calculate_plus_00% + 1" ===> "11"
|
|
276
|
-
{{= %formula_calculate_plus_00% + 1 }}
|
|
277
|
-
|
|
278
|
-
**** PLUS: "= %formula_calculate_plus_00% + x1" ===> "11"
|
|
279
|
-
{{= %formula_calculate_plus_00% + x1 }}
|
|
280
|
-
|
|
281
|
-
**** PLUS: "= %formula_calculate_plus_00% + 0x1" ===> "11"
|
|
282
|
-
{{= %formula_calculate_plus_00% + 0x1 }}
|
|
283
|
-
|
|
284
|
-
**** PLUS: "= %formula_calculate_plus_00% + 0o1" ===> "11"
|
|
285
|
-
{{= %formula_calculate_plus_00% + 0o1 }}
|
|
286
|
-
|
|
287
|
-
**** PLUS: "= %formula_calculate_plus_00% + 0b1" ===> "11"
|
|
288
|
-
{{= %formula_calculate_plus_00% + 0b1 }}
|
|
289
|
-
|
|
290
|
-
**** PLUS: "= 1 + %formula_calculate_plus_01%" ===> "21"
|
|
291
|
-
{{= 1 + %formula_calculate_plus_01% }}
|
|
292
|
-
|
|
293
|
-
**** PLUS: "= x1 + %formula_calculate_plus_01%" ===> "21"
|
|
294
|
-
{{= x1 + %formula_calculate_plus_01% }}
|
|
295
|
-
|
|
296
|
-
**** PLUS: "= 0x1 + %formula_calculate_plus_01%" ===> "21"
|
|
297
|
-
{{= 0x1 + %formula_calculate_plus_01% }}
|
|
298
|
-
|
|
299
|
-
**** PLUS: "= 0o1 + %formula_calculate_plus_01%" ===> "21"
|
|
300
|
-
{{= 0o1 + %formula_calculate_plus_01% }}
|
|
301
|
-
|
|
302
|
-
**** PLUS: "= 0b1 + %formula_calculate_plus_01%" ===> "21"
|
|
303
|
-
{{= 0b1 + %formula_calculate_plus_01% }}
|
|
304
|
-
|
|
305
|
-
**** PLUS: "= %formula_calculate_plus_00% + %formula_calculate_plus_00%" ===> "20"
|
|
306
|
-
{{= %formula_calculate_plus_00% + %formula_calculate_plus_00% }}
|
|
307
|
-
|
|
308
|
-
**** PLUS: "= %formula_calculate_plus_00% + %formula_calculate_plus_01%" ===> "30"
|
|
309
|
-
{{= %formula_calculate_plus_00% + %formula_calculate_plus_01% }}
|
|
310
|
-
|
|
311
|
-
**** PLUS: "= 'test' + 'string'" ===> "teststring"
|
|
312
|
-
{{= 'test' + 'string' }}
|
|
313
|
-
|
|
314
|
-
**** PLUS: "= 'test' + "string"" ===> "teststring"
|
|
315
|
-
{{= 'test' + "string" }}
|
|
316
|
-
|
|
317
|
-
**** PLUS: "= "test" + 'string'" ===> "teststring"
|
|
318
|
-
{{= "test" + 'string' }}
|
|
319
|
-
|
|
320
|
-
**** PLUS: "= "test" + "string"" ===> "teststring"
|
|
321
|
-
{{= "test" + "string" }}
|
|
322
|
-
|
|
323
|
-
**** PLUS: "= %formula_calculate_plus_02% + 'string'" ===> "teststring"
|
|
324
|
-
{{= %formula_calculate_plus_02% + 'string' }}
|
|
325
|
-
|
|
326
|
-
**** PLUS: "= %formula_calculate_plus_02% + "string"" ===> "teststring"
|
|
327
|
-
{{= %formula_calculate_plus_02% + "string" }}
|
|
328
|
-
|
|
329
|
-
**** PLUS: "= 'test' + %formula_calculate_plus_03%" ===> "teststring"
|
|
330
|
-
{{= 'test' + %formula_calculate_plus_03% }}
|
|
331
|
-
|
|
332
|
-
**** PLUS: "= "test" + %formula_calculate_plus_03%" ===> "teststring"
|
|
333
|
-
{{= "test" + %formula_calculate_plus_03% }}
|
|
334
|
-
|
|
335
|
-
**** PLUS: "= %formula_calculate_plus_02% + %formula_calculate_plus_02%" ===> "testtest"
|
|
336
|
-
{{= %formula_calculate_plus_02% + %formula_calculate_plus_02% }}
|
|
337
|
-
|
|
338
|
-
**** PLUS: "= %formula_calculate_plus_02% + %formula_calculate_plus_03%" ===> "teststring"
|
|
339
|
-
{{= %formula_calculate_plus_02% + %formula_calculate_plus_03% }}
|
|
340
|
-
|
|
341
|
-
**** PLUS: "= null + null" ===> ""
|
|
342
|
-
{{= null + null }}
|
|
343
|
-
|
|
344
|
-
**** PLUS: "= null + 'string'" ===> "string"
|
|
345
|
-
{{= null + 'string' }}
|
|
346
|
-
|
|
347
|
-
**** PLUS: "= null + 1" ===> "01"
|
|
348
|
-
{{= null + 1 }}
|
|
349
|
-
|
|
350
|
-
**** PLUS: "= 'test' + null" ===> "test"
|
|
351
|
-
{{= 'test' + null }}
|
|
352
|
-
|
|
353
|
-
**** PLUS: "= 1 + null" ===> "1"
|
|
354
|
-
{{= 1 + null }}
|
|
355
|
-
|
|
356
|
-
**** PLUS: "= 'test' + 1" ===> "test1"
|
|
357
|
-
{{= 'test' + 1 }}
|
|
358
|
-
|
|
359
|
-
##
|
|
360
|
-
## Test > Formula > Calculate > SUB
|
|
361
|
-
##
|
|
362
|
-
**** SUB: "= 2 - 1" ===> "1"
|
|
363
|
-
{{= 2 - 1 }}
|
|
364
|
-
|
|
365
|
-
**** SUB: "= 2 - x1" ===> "1"
|
|
366
|
-
{{= 2 - x1 }}
|
|
367
|
-
|
|
368
|
-
**** SUB: "= 2 - 0x1" ===> "1"
|
|
369
|
-
{{= 2 - 0x1 }}
|
|
370
|
-
|
|
371
|
-
**** SUB: "= 2 - 0o1" ===> "1"
|
|
372
|
-
{{= 2 - 0o1 }}
|
|
373
|
-
|
|
374
|
-
**** SUB: "= 2 - 0b1" ===> "1"
|
|
375
|
-
{{= 2 - 0b1 }}
|
|
376
|
-
|
|
377
|
-
**** SUB: "= x2 - 1" ===> "1"
|
|
378
|
-
{{= x2 - 1 }}
|
|
379
|
-
|
|
380
|
-
**** SUB: "= 0x2 - 1" ===> "1"
|
|
381
|
-
{{= 0x2 - 1 }}
|
|
382
|
-
|
|
383
|
-
**** SUB: "= 0o2 - 1" ===> "1"
|
|
384
|
-
{{= 0o2 - 1 }}
|
|
385
|
-
|
|
386
|
-
**** SUB: "= 0b1 - 1" ===> "0"
|
|
387
|
-
{{= 0b1 - 1 }}
|
|
388
|
-
|
|
389
|
-
**** SUB: "= 0 - 1" ===> "-1"
|
|
390
|
-
{{= 0 - 1 }}
|
|
391
|
-
|
|
392
|
-
**** SUB: "= %formula_calculate_sub_00% - 1" ===> "99"
|
|
393
|
-
{{= %formula_calculate_sub_00% - 1 }}
|
|
394
|
-
|
|
395
|
-
**** SUB: "= 200 - %formula_calculate_sub_00%" ===> "100"
|
|
396
|
-
{{= 200 - %formula_calculate_sub_00% }}
|
|
397
|
-
|
|
398
|
-
**** SUB: "= %formula_calculate_sub_00% - %formula_calculate_sub_01%" ===> "90"
|
|
399
|
-
{{= %formula_calculate_sub_00% - %formula_calculate_sub_01% }}
|
|
400
|
-
|
|
401
|
-
**** SUB: "= %formula_calculate_sub_01% - %formula_calculate_sub_00%" ===> "-90"
|
|
402
|
-
{{= %formula_calculate_sub_01% - %formula_calculate_sub_00% }}
|
|
403
|
-
|
|
404
|
-
##
|
|
405
|
-
## Test > Formula > Calculate > DIV
|
|
406
|
-
##
|
|
407
|
-
**** DIV: "= 2 / 1" ===> "2"
|
|
408
|
-
{{= 2 / 1 }}
|
|
409
|
-
|
|
410
|
-
**** DIV: "= 2 / x1" ===> "2"
|
|
411
|
-
{{= 2 / x1 }}
|
|
412
|
-
|
|
413
|
-
**** DIV: "= 2 / 0x1" ===> "2"
|
|
414
|
-
{{= 2 / 0x1 }}
|
|
415
|
-
|
|
416
|
-
**** DIV: "= 2 / 0o1" ===> "2"
|
|
417
|
-
{{= 2 / 0o1 }}
|
|
418
|
-
|
|
419
|
-
**** DIV: "= 2 / 0b1" ===> "2"
|
|
420
|
-
{{= 2 / 0b1 }}
|
|
421
|
-
|
|
422
|
-
**** DIV: "= x2 / 1" ===> "2"
|
|
423
|
-
{{= x2 / 1 }}
|
|
424
|
-
|
|
425
|
-
**** DIV: "= 0x2 / 1" ===> "2"
|
|
426
|
-
{{= 0x2 / 1 }}
|
|
427
|
-
|
|
428
|
-
**** DIV: "= 0o2 / 1" ===> "2"
|
|
429
|
-
{{= 0o2 / 1 }}
|
|
430
|
-
|
|
431
|
-
**** DIV: "= 0b1 / 1" ===> "1"
|
|
432
|
-
{{= 0b1 / 1 }}
|
|
433
|
-
|
|
434
|
-
**** DIV: "= 0 / 1" ===> "0"
|
|
435
|
-
{{= 0 / 1 }}
|
|
436
|
-
|
|
437
|
-
**** DIV: "= %formula_calculate_div_00% / 10" ===> "10"
|
|
438
|
-
{{= %formula_calculate_div_00% / 10 }}
|
|
439
|
-
|
|
440
|
-
**** DIV: "= 200 / %formula_calculate_div_00%" ===> "2"
|
|
441
|
-
{{= 200 / %formula_calculate_div_00% }}
|
|
442
|
-
|
|
443
|
-
**** DIV: "= %formula_calculate_div_00% / %formula_calculate_div_01%" ===> "10"
|
|
444
|
-
{{= %formula_calculate_div_00% / %formula_calculate_div_01% }}
|
|
445
|
-
|
|
446
|
-
**** DIV: "= %formula_calculate_div_01% / %formula_calculate_div_00%" ===> "0.1"
|
|
447
|
-
{{= %formula_calculate_div_01% / %formula_calculate_div_00% }}
|
|
448
|
-
|
|
449
|
-
##
|
|
450
|
-
## Test > Formula > Calculate > MUL
|
|
451
|
-
##
|
|
452
|
-
**** MUL: "= 2 * 1" ===> "2"
|
|
453
|
-
{{= 2 * 1 }}
|
|
454
|
-
|
|
455
|
-
**** MUL: "= 2 * x1" ===> "2"
|
|
456
|
-
{{= 2 * x1 }}
|
|
457
|
-
|
|
458
|
-
**** MUL: "= 2 * 0x1" ===> "2"
|
|
459
|
-
{{= 2 * 0x1 }}
|
|
460
|
-
|
|
461
|
-
**** MUL: "= 2 * 0o1" ===> "2"
|
|
462
|
-
{{= 2 * 0o1 }}
|
|
463
|
-
|
|
464
|
-
**** MUL: "= 2 * 0b1" ===> "2"
|
|
465
|
-
{{= 2 * 0b1 }}
|
|
466
|
-
|
|
467
|
-
**** MUL: "= x2 * 1" ===> "2"
|
|
468
|
-
{{= x2 * 1 }}
|
|
469
|
-
|
|
470
|
-
**** MUL: "= 0x2 * 1" ===> "2"
|
|
471
|
-
{{= 0x2 * 1 }}
|
|
472
|
-
|
|
473
|
-
**** MUL: "= 0o2 * 1" ===> "2"
|
|
474
|
-
{{= 0o2 * 1 }}
|
|
475
|
-
|
|
476
|
-
**** MUL: "= 0b1 * 1" ===> "1"
|
|
477
|
-
{{= 0b1 * 1 }}
|
|
478
|
-
|
|
479
|
-
**** MUL: "= 0 * 1" ===> "0"
|
|
480
|
-
{{= 0 * 1 }}
|
|
481
|
-
|
|
482
|
-
**** MUL: "= %formula_calculate_mul_00% * 10" ===> "50"
|
|
483
|
-
{{= %formula_calculate_mul_00% * 10 }}
|
|
484
|
-
|
|
485
|
-
**** MUL: "= 20 * %formula_calculate_mul_00%" ===> "100"
|
|
486
|
-
{{= 20 * %formula_calculate_mul_00% }}
|
|
487
|
-
|
|
488
|
-
**** MUL: "= %formula_calculate_mul_00% * %formula_calculate_mul_01%" ===> "100"
|
|
489
|
-
{{= %formula_calculate_mul_00% * %formula_calculate_mul_01% }}
|
|
490
|
-
|
|
491
|
-
**** MUL: "= %formula_calculate_mul_01% * %formula_calculate_mul_00%" ===> "100"
|
|
492
|
-
{{= %formula_calculate_mul_01% * %formula_calculate_mul_00% }}
|
|
493
|
-
|
|
494
|
-
##
|
|
495
|
-
## Test > Formula > Calculate > REM
|
|
496
|
-
##
|
|
497
|
-
**** REM: "= 35 % 6" ===> "5"
|
|
498
|
-
{{= 35 % 6 }}
|
|
499
|
-
|
|
500
|
-
**** REM: "= 35 % x6" ===> "5"
|
|
501
|
-
{{= 35 % x6 }}
|
|
502
|
-
|
|
503
|
-
**** REM: "= 35 % 0x6" ===> "5"
|
|
504
|
-
{{= 35 % 0x6 }}
|
|
505
|
-
|
|
506
|
-
**** REM: "= 35 % 0o6" ===> "5"
|
|
507
|
-
{{= 35 % 0o6 }}
|
|
508
|
-
|
|
509
|
-
**** REM: "= 35 % 0b110" ===> "5"
|
|
510
|
-
{{= 35 % 0b110 }}
|
|
511
|
-
|
|
512
|
-
**** REM: "= x23 % 6" ===> "5"
|
|
513
|
-
{{= x23 % 6 }}
|
|
514
|
-
|
|
515
|
-
**** REM: "= 0x23 % 6" ===> "5"
|
|
516
|
-
{{= 0x23 % 6 }}
|
|
517
|
-
|
|
518
|
-
**** REM: "= 0o65 % 6" ===> "5"
|
|
519
|
-
{{= 0o65 % 6 }}
|
|
520
|
-
|
|
521
|
-
**** REM: "= 0b100011 % 6" ===> "5"
|
|
522
|
-
{{= 0b100011 % 6 }}
|
|
523
|
-
|
|
524
|
-
**** REM: "= 6 % 35" ===> "6"
|
|
525
|
-
{{= 6 % 35 }}
|
|
526
|
-
|
|
527
|
-
**** REM: "= %formula_calculate_rem_00% % 6" ===> "5"
|
|
528
|
-
{{= %formula_calculate_rem_00% % 6 }}
|
|
529
|
-
|
|
530
|
-
**** REM: "= 35 % %formula_calculate_rem_01%" ===> "5"
|
|
531
|
-
{{= 35 % %formula_calculate_rem_01% }}
|
|
532
|
-
|
|
533
|
-
**** REM: "= %formula_calculate_rem_00% % %formula_calculate_rem_01%" ===> "5"
|
|
534
|
-
{{= %formula_calculate_rem_00% % %formula_calculate_rem_01% }}
|
|
535
|
-
|
|
536
|
-
**** REM: "= %formula_calculate_rem_01% % %formula_calculate_rem_00%" ===> "6"
|
|
537
|
-
{{= %formula_calculate_rem_01% % %formula_calculate_rem_00% }}
|
|
538
|
-
|
|
539
|
-
##
|
|
540
|
-
## Test > Formula > Calculate > LSHIFT
|
|
541
|
-
##
|
|
542
|
-
**** LSHIFT: "= 10 << 4" ===> "160"
|
|
543
|
-
{{= 10 << 4 }}
|
|
544
|
-
|
|
545
|
-
**** LSHIFT: "= 10 << x4" ===> "160"
|
|
546
|
-
{{= 10 << x4 }}
|
|
547
|
-
|
|
548
|
-
**** LSHIFT: "= 10 << 0x4" ===> "160"
|
|
549
|
-
{{= 10 << 0x4 }}
|
|
550
|
-
|
|
551
|
-
**** LSHIFT: "= 10 << 0o4" ===> "160"
|
|
552
|
-
{{= 10 << 0o4 }}
|
|
553
|
-
|
|
554
|
-
**** LSHIFT: "= 10 << 0b100" ===> "160"
|
|
555
|
-
{{= 10 << 0b100 }}
|
|
556
|
-
|
|
557
|
-
**** LSHIFT: "= xa << 4" ===> "160"
|
|
558
|
-
{{= xa << 4 }}
|
|
559
|
-
|
|
560
|
-
**** LSHIFT: "= 0xa << 4" ===> "160"
|
|
561
|
-
{{= 0xa << 4 }}
|
|
562
|
-
|
|
563
|
-
**** LSHIFT: "= 0o12 << 4" ===> "160"
|
|
564
|
-
{{= 0o12 << 4 }}
|
|
565
|
-
|
|
566
|
-
**** LSHIFT: "= 0b1010 << 4" ===> "160"
|
|
567
|
-
{{= 0b1010 << 4 }}
|
|
568
|
-
|
|
569
|
-
**** LSHIFT: "= %formula_calculate_lshift_00% << 4" ===> "160"
|
|
570
|
-
{{= %formula_calculate_lshift_00% << 4 }}
|
|
571
|
-
|
|
572
|
-
**** LSHIFT: "= 10 << %formula_calculate_lshift_01%" ===> "160"
|
|
573
|
-
{{= 10 << %formula_calculate_lshift_01% }}
|
|
574
|
-
|
|
575
|
-
**** LSHIFT: "= %formula_calculate_lshift_00% << %formula_calculate_lshift_01%" ===> "160"
|
|
576
|
-
{{= %formula_calculate_lshift_00% << %formula_calculate_lshift_01% }}
|
|
577
|
-
|
|
578
|
-
##
|
|
579
|
-
## Test > Formula > Calculate > RSHIFT
|
|
580
|
-
##
|
|
581
|
-
**** RSHIFT: "= 43690 >> 4" ===> "2730"
|
|
582
|
-
{{= 43690 >> 4 }}
|
|
583
|
-
|
|
584
|
-
**** RSHIFT: "= 43690 >> x4" ===> "2730"
|
|
585
|
-
{{= 43690 >> x4 }}
|
|
586
|
-
|
|
587
|
-
**** RSHIFT: "= 43690 >> 0x4" ===> "2730"
|
|
588
|
-
{{= 43690 >> 0x4 }}
|
|
589
|
-
|
|
590
|
-
**** RSHIFT: "= 43690 >> 0o4" ===> "2730"
|
|
591
|
-
{{= 43690 >> 0o4 }}
|
|
592
|
-
|
|
593
|
-
**** RSHIFT: "= 43690 >> 0b100" ===> "2730"
|
|
594
|
-
{{= 43690 >> 0b100 }}
|
|
595
|
-
|
|
596
|
-
**** RSHIFT: "= xaaaa >> 4" ===> "2730"
|
|
597
|
-
{{= xaaaa >> 4 }}
|
|
598
|
-
|
|
599
|
-
**** RSHIFT: "= 0xaaaa >> 4" ===> "2730"
|
|
600
|
-
{{= 0xaaaa >> 4 }}
|
|
601
|
-
|
|
602
|
-
**** RSHIFT: "= 0o125252 >> 4" ===> "2730"
|
|
603
|
-
{{= 0o125252 >> 4 }}
|
|
604
|
-
|
|
605
|
-
**** RSHIFT: "= 0b1010101010101010 >> 4" ===> "2730"
|
|
606
|
-
{{= 0b1010101010101010 >> 4 }}
|
|
607
|
-
|
|
608
|
-
**** RSHIFT: "= %formula_calculate_rshift_00% >> 4" ===> "2730"
|
|
609
|
-
{{= %formula_calculate_rshift_00% >> 4 }}
|
|
610
|
-
|
|
611
|
-
**** RSHIFT: "= 43690 >> %formula_calculate_rshift_01%" ===> "2730"
|
|
612
|
-
{{= 43690 >> %formula_calculate_rshift_01% }}
|
|
613
|
-
|
|
614
|
-
**** RSHIFT: "= %formula_calculate_rshift_00% >> %formula_calculate_rshift_01%" ===> "2730"
|
|
615
|
-
{{= %formula_calculate_rshift_00% >> %formula_calculate_rshift_01% }}
|
|
616
|
-
|
|
617
|
-
##
|
|
618
|
-
## Test > Formula > Calculate > AMP
|
|
619
|
-
##
|
|
620
|
-
**** AMP: "= 65535 & 43690" ===> "43690"
|
|
621
|
-
{{= 65535 & 43690 }}
|
|
622
|
-
|
|
623
|
-
**** AMP: "= 65535 & xaaaa" ===> "43690"
|
|
624
|
-
{{= 65535 & xaaaa }}
|
|
625
|
-
|
|
626
|
-
**** AMP: "= 65535 & 0xaaaa" ===> "43690"
|
|
627
|
-
{{= 65535 & 0xaaaa }}
|
|
628
|
-
|
|
629
|
-
**** AMP: "= 65535 & 0o125252" ===> "43690"
|
|
630
|
-
{{= 65535 & 0o125252 }}
|
|
631
|
-
|
|
632
|
-
**** AMP: "= 65535 & 0b1010101010101010" ===> "43690"
|
|
633
|
-
{{= 65535 & 0b1010101010101010 }}
|
|
634
|
-
|
|
635
|
-
**** AMP: "= xffff & 43690" ===> "43690"
|
|
636
|
-
{{= xffff & 43690 }}
|
|
637
|
-
|
|
638
|
-
**** AMP: "= 0xffff & 43690" ===> "43690"
|
|
639
|
-
{{= 0xffff & 43690 }}
|
|
640
|
-
|
|
641
|
-
**** AMP: "= 0o177777 & 43690" ===> "43690"
|
|
642
|
-
{{= 0o177777 & 43690 }}
|
|
643
|
-
|
|
644
|
-
**** AMP: "= 0b1111111111111111 & 43690" ===> "43690"
|
|
645
|
-
{{= 0b1111111111111111 & 43690 }}
|
|
646
|
-
|
|
647
|
-
**** AMP: "= %formula_calculate_amp_00% & 43690" ===> "43690"
|
|
648
|
-
{{= %formula_calculate_amp_00% & 43690 }}
|
|
649
|
-
|
|
650
|
-
**** AMP: "= 65535 & %formula_calculate_amp_01%" ===> "43690"
|
|
651
|
-
{{= 65535 & %formula_calculate_amp_01% }}
|
|
652
|
-
|
|
653
|
-
**** AMP: "= %formula_calculate_amp_00% & %formula_calculate_amp_01%" ===> "43690"
|
|
654
|
-
{{= %formula_calculate_amp_00% & %formula_calculate_amp_01% }}
|
|
655
|
-
|
|
656
|
-
**** AMP: "= true & true" ===> "1"
|
|
657
|
-
{{= true & true }}
|
|
658
|
-
|
|
659
|
-
**** AMP: "= true & false" ===> "0"
|
|
660
|
-
{{= true & false }}
|
|
661
|
-
|
|
662
|
-
**** AMP: "= false & true" ===> "0"
|
|
663
|
-
{{= false & true }}
|
|
664
|
-
|
|
665
|
-
**** AMP: "= false & false" ===> "0"
|
|
666
|
-
{{= false & false }}
|
|
667
|
-
|
|
668
|
-
**** AMP: "= %formula_calculate_amp_02% & true" ===> "1"
|
|
669
|
-
{{= %formula_calculate_amp_02% & true }}
|
|
670
|
-
|
|
671
|
-
**** AMP: "= %formula_calculate_amp_02% & false" ===> "0"
|
|
672
|
-
{{= %formula_calculate_amp_02% & false }}
|
|
673
|
-
|
|
674
|
-
**** AMP: "= true & %formula_calculate_amp_02%" ===> "1"
|
|
675
|
-
{{= true & %formula_calculate_amp_02% }}
|
|
676
|
-
|
|
677
|
-
**** AMP: "= false & %formula_calculate_amp_02%" ===> "0"
|
|
678
|
-
{{= false & %formula_calculate_amp_02% }}
|
|
679
|
-
|
|
680
|
-
**** AMP: "= %formula_calculate_amp_03% & true" ===> "0"
|
|
681
|
-
{{= %formula_calculate_amp_03% & true }}
|
|
682
|
-
|
|
683
|
-
**** AMP: "= %formula_calculate_amp_03% & false" ===> "0"
|
|
684
|
-
{{= %formula_calculate_amp_03% & false }}
|
|
685
|
-
|
|
686
|
-
**** AMP: "= true & %formula_calculate_amp_03%" ===> "0"
|
|
687
|
-
{{= true & %formula_calculate_amp_03% }}
|
|
688
|
-
|
|
689
|
-
**** AMP: "= false & %formula_calculate_amp_03%" ===> "0"
|
|
690
|
-
{{= false & %formula_calculate_amp_03% }}
|
|
691
|
-
|
|
692
|
-
**** AMP: "= %formula_calculate_amp_02% & %formula_calculate_amp_03%" ===> "0"
|
|
693
|
-
{{= %formula_calculate_amp_02% & %formula_calculate_amp_03% }}
|
|
694
|
-
|
|
695
|
-
##
|
|
696
|
-
## Test > Formula > Calculate > VARTBAR
|
|
697
|
-
##
|
|
698
|
-
**** VARBAR: "= 21845 | 43690" ===> "65535"
|
|
699
|
-
{{= 21845 | 43690 }}
|
|
700
|
-
|
|
701
|
-
**** VARBAR: "= 21845 | xaaaa" ===> "65535"
|
|
702
|
-
{{= 21845 | xaaaa }}
|
|
703
|
-
|
|
704
|
-
**** VARBAR: "= 21845 | 0xaaaa" ===> "65535"
|
|
705
|
-
{{= 21845 | 0xaaaa }}
|
|
706
|
-
|
|
707
|
-
**** VARBAR: "= 21845 | 0o125252" ===> "65535"
|
|
708
|
-
{{= 21845 | 0o125252 }}
|
|
709
|
-
|
|
710
|
-
**** VARBAR: "= 21845 | 0b1010101010101010" ===> "65535"
|
|
711
|
-
{{= 21845 | 0b1010101010101010 }}
|
|
712
|
-
|
|
713
|
-
**** VARBAR: "= x5555 | 43690" ===> "65535"
|
|
714
|
-
{{= x5555 | 43690 }}
|
|
715
|
-
|
|
716
|
-
**** VARBAR: "= 0x5555 | 43690" ===> "65535"
|
|
717
|
-
{{= 0x5555 | 43690 }}
|
|
718
|
-
|
|
719
|
-
**** VARBAR: "= 0o52525 | 43690" ===> "65535"
|
|
720
|
-
{{= 0o52525 | 43690 }}
|
|
721
|
-
|
|
722
|
-
**** VARBAR: "= 0b101010101010101 | 43690" ===> "65535"
|
|
723
|
-
{{= 0b101010101010101 | 43690 }}
|
|
724
|
-
|
|
725
|
-
**** VARBAR: "= %formula_calculate_vartbar_00% | 43690" ===> "65535"
|
|
726
|
-
{{= %formula_calculate_vartbar_00% | 43690 }}
|
|
727
|
-
|
|
728
|
-
**** VARBAR: "= 21845 | %formula_calculate_vartbar_01%" ===> "65535"
|
|
729
|
-
{{= 21845 | %formula_calculate_vartbar_01% }}
|
|
730
|
-
|
|
731
|
-
**** VARBAR: "= %formula_calculate_vartbar_00% | %formula_calculate_vartbar_01%" ===> "65535"
|
|
732
|
-
{{= %formula_calculate_vartbar_00% | %formula_calculate_vartbar_01% }}
|
|
733
|
-
|
|
734
|
-
**** VARBAR: "= true | true" ===> "1"
|
|
735
|
-
{{= true | true }}
|
|
736
|
-
|
|
737
|
-
**** VARBAR: "= true | false" ===> "1"
|
|
738
|
-
{{= true | false }}
|
|
739
|
-
|
|
740
|
-
**** VARBAR: "= false | true" ===> "1"
|
|
741
|
-
{{= false | true }}
|
|
742
|
-
|
|
743
|
-
**** VARBAR: "= false | false" ===> "0"
|
|
744
|
-
{{= false | false }}
|
|
745
|
-
|
|
746
|
-
**** VARBAR: "= %formula_calculate_vartbar_02% | true" ===> "1"
|
|
747
|
-
{{= %formula_calculate_vartbar_02% | true }}
|
|
748
|
-
|
|
749
|
-
**** VARBAR: "= %formula_calculate_vartbar_02% | false" ===> "1"
|
|
750
|
-
{{= %formula_calculate_vartbar_02% | false }}
|
|
751
|
-
|
|
752
|
-
**** VARBAR: "= true | %formula_calculate_vartbar_02%" ===> "1"
|
|
753
|
-
{{= true | %formula_calculate_vartbar_02% }}
|
|
754
|
-
|
|
755
|
-
**** VARBAR: "= false | %formula_calculate_vartbar_02%" ===> "1"
|
|
756
|
-
{{= false | %formula_calculate_vartbar_02% }}
|
|
757
|
-
|
|
758
|
-
**** VARBAR: "= %formula_calculate_vartbar_03% | true" ===> "1"
|
|
759
|
-
{{= %formula_calculate_vartbar_03% | true }}
|
|
760
|
-
|
|
761
|
-
**** VARBAR: "= %formula_calculate_vartbar_03% | false" ===> "0"
|
|
762
|
-
{{= %formula_calculate_vartbar_03% | false }}
|
|
763
|
-
|
|
764
|
-
**** VARBAR: "= true | %formula_calculate_vartbar_03%" ===> "1"
|
|
765
|
-
{{= true | %formula_calculate_vartbar_03% }}
|
|
766
|
-
|
|
767
|
-
**** VARBAR: "= false | %formula_calculate_vartbar_03%" ===> "0"
|
|
768
|
-
{{= false | %formula_calculate_vartbar_03% }}
|
|
769
|
-
|
|
770
|
-
**** VARBAR: "= %formula_calculate_vartbar_02% | %formula_calculate_vartbar_03%" ===> "1"
|
|
771
|
-
{{= %formula_calculate_vartbar_02% | %formula_calculate_vartbar_03% }}
|
|
772
|
-
|
|
773
|
-
############################################################
|
|
774
|
-
#### Formula : Condition
|
|
775
|
-
############################################################
|
|
776
|
-
##
|
|
777
|
-
## Test > Formula > Condition > AND
|
|
778
|
-
##
|
|
779
|
-
**** AND: "= null && null" ===> "false"
|
|
780
|
-
{{= null && null }}
|
|
781
|
-
|
|
782
|
-
**** AND: "= null && true" ===> "false"
|
|
783
|
-
{{= null && true }}
|
|
784
|
-
|
|
785
|
-
**** AND: "= null && false" ===> "false"
|
|
786
|
-
{{= null && false }}
|
|
787
|
-
|
|
788
|
-
**** AND: "= null && 0" ===> "false"
|
|
789
|
-
{{= null && 0 }}
|
|
790
|
-
|
|
791
|
-
**** AND: "= null && 1" ===> "false"
|
|
792
|
-
{{= null && 1 }}
|
|
793
|
-
|
|
794
|
-
**** AND: "= null && 'string'" ===> "false"
|
|
795
|
-
{{= null && 'string' }}
|
|
796
|
-
|
|
797
|
-
**** AND: "= null && %formula_cond_and_00%" ===> "false"
|
|
798
|
-
{{= null && %formula_cond_and_00% }}
|
|
799
|
-
|
|
800
|
-
**** AND: "= null && %formula_cond_and_01%" ===> "false"
|
|
801
|
-
{{= null && %formula_cond_and_01% }}
|
|
802
|
-
|
|
803
|
-
**** AND: "= null && %formula_cond_and_02%" ===> "false"
|
|
804
|
-
{{= null && %formula_cond_and_02% }}
|
|
805
|
-
|
|
806
|
-
**** AND: "= null && %formula_cond_and_03%" ===> "false"
|
|
807
|
-
{{= null && %formula_cond_and_03% }}
|
|
808
|
-
|
|
809
|
-
**** AND: "= null && %formula_cond_and_04%" ===> "false"
|
|
810
|
-
{{= null && %formula_cond_and_04% }}
|
|
811
|
-
|
|
812
|
-
**** AND: "= null && %formula_cond_and_05%" ===> "false"
|
|
813
|
-
{{= null && %formula_cond_and_05% }}
|
|
814
|
-
|
|
815
|
-
**** AND: "= true && null" ===> "false"
|
|
816
|
-
{{= true && null }}
|
|
817
|
-
|
|
818
|
-
**** AND: "= false && null" ===> "false"
|
|
819
|
-
{{= false && null }}
|
|
820
|
-
|
|
821
|
-
**** AND: "= 0 && null" ===> "false"
|
|
822
|
-
{{= 0 && null }}
|
|
823
|
-
|
|
824
|
-
**** AND: "= 1 && null" ===> "false"
|
|
825
|
-
{{= 1 && null }}
|
|
826
|
-
|
|
827
|
-
**** AND: "= 'string' && null" ===> "false"
|
|
828
|
-
{{= 'string' && null }}
|
|
829
|
-
|
|
830
|
-
**** AND: "= %formula_cond_and_00% && null" ===> "false"
|
|
831
|
-
{{= %formula_cond_and_00% && null }}
|
|
832
|
-
|
|
833
|
-
**** AND: "= %formula_cond_and_01% && null" ===> "false"
|
|
834
|
-
{{= %formula_cond_and_01% && null }}
|
|
835
|
-
|
|
836
|
-
**** AND: "= %formula_cond_and_02% && null" ===> "false"
|
|
837
|
-
{{= %formula_cond_and_02% && null }}
|
|
838
|
-
|
|
839
|
-
**** AND: "= %formula_cond_and_03% && null" ===> "false"
|
|
840
|
-
{{= %formula_cond_and_03% && null }}
|
|
841
|
-
|
|
842
|
-
**** AND: "= %formula_cond_and_04% && null" ===> "false"
|
|
843
|
-
{{= %formula_cond_and_04% && null }}
|
|
844
|
-
|
|
845
|
-
**** AND: "= %formula_cond_and_05% && null" ===> "false"
|
|
846
|
-
{{= %formula_cond_and_05% && null }}
|
|
847
|
-
|
|
848
|
-
**** AND: "= true && true" ===> "true"
|
|
849
|
-
{{= true && true }}
|
|
850
|
-
|
|
851
|
-
**** AND: "= true && false" ===> "false"
|
|
852
|
-
{{= true && false }}
|
|
853
|
-
|
|
854
|
-
**** AND: "= true && 0" ===> "false"
|
|
855
|
-
{{= true && 0 }}
|
|
856
|
-
|
|
857
|
-
**** AND: "= true && 1" ===> "true"
|
|
858
|
-
{{= true && 1 }}
|
|
859
|
-
|
|
860
|
-
**** AND: "= true && 'string'" ===> "true"
|
|
861
|
-
{{= true && 'string' }}
|
|
862
|
-
|
|
863
|
-
**** AND: "= true && %formula_cond_and_00%" ===> "false"
|
|
864
|
-
{{= true && %formula_cond_and_00% }}
|
|
865
|
-
|
|
866
|
-
**** AND: "= true && %formula_cond_and_01%" ===> "true"
|
|
867
|
-
{{= true && %formula_cond_and_01% }}
|
|
868
|
-
|
|
869
|
-
**** AND: "= true && %formula_cond_and_02%" ===> "false"
|
|
870
|
-
{{= true && %formula_cond_and_02% }}
|
|
871
|
-
|
|
872
|
-
**** AND: "= true && %formula_cond_and_03%" ===> "false"
|
|
873
|
-
{{= true && %formula_cond_and_03% }}
|
|
874
|
-
|
|
875
|
-
**** AND: "= true && %formula_cond_and_04%" ===> "true"
|
|
876
|
-
{{= true && %formula_cond_and_04% }}
|
|
877
|
-
|
|
878
|
-
**** AND: "= true && %formula_cond_and_05%" ===> "true"
|
|
879
|
-
{{= true && %formula_cond_and_05% }}
|
|
880
|
-
|
|
881
|
-
**** AND: "= true && true" ===> "true"
|
|
882
|
-
{{= true && true }}
|
|
883
|
-
|
|
884
|
-
**** AND: "= false && true" ===> "false"
|
|
885
|
-
{{= false && true }}
|
|
886
|
-
|
|
887
|
-
**** AND: "= 0 && true" ===> "false"
|
|
888
|
-
{{= 0 && true }}
|
|
889
|
-
|
|
890
|
-
**** AND: "= 1 && true" ===> "true"
|
|
891
|
-
{{= 1 && true }}
|
|
892
|
-
|
|
893
|
-
**** AND: "= 'string' && true" ===> "true"
|
|
894
|
-
{{= 'string' && true }}
|
|
895
|
-
|
|
896
|
-
**** AND: "= %formula_cond_and_00% && true" ===> "false"
|
|
897
|
-
{{= %formula_cond_and_00% && true }}
|
|
898
|
-
|
|
899
|
-
**** AND: "= %formula_cond_and_01% && true" ===> "true"
|
|
900
|
-
{{= %formula_cond_and_01% && true }}
|
|
901
|
-
|
|
902
|
-
**** AND: "= %formula_cond_and_02% && true" ===> "false"
|
|
903
|
-
{{= %formula_cond_and_02% && true }}
|
|
904
|
-
|
|
905
|
-
**** AND: "= %formula_cond_and_03% && true" ===> "false"
|
|
906
|
-
{{= %formula_cond_and_03% && true }}
|
|
907
|
-
|
|
908
|
-
**** AND: "= %formula_cond_and_04% && true" ===> "true"
|
|
909
|
-
{{= %formula_cond_and_04% && true }}
|
|
910
|
-
|
|
911
|
-
**** AND: "= %formula_cond_and_05% && true" ===> "true"
|
|
912
|
-
{{= %formula_cond_and_05% && true }}
|
|
913
|
-
|
|
914
|
-
**** AND: "= false && true" ===> "false"
|
|
915
|
-
{{= false && true }}
|
|
916
|
-
|
|
917
|
-
**** AND: "= false && false" ===> "false"
|
|
918
|
-
{{= false && false }}
|
|
919
|
-
|
|
920
|
-
**** AND: "= false && 0" ===> "false"
|
|
921
|
-
{{= false && 0 }}
|
|
922
|
-
|
|
923
|
-
**** AND: "= false && 1" ===> "false"
|
|
924
|
-
{{= false && 1 }}
|
|
925
|
-
|
|
926
|
-
**** AND: "= false && 'string'" ===> "false"
|
|
927
|
-
{{= false && 'string' }}
|
|
928
|
-
|
|
929
|
-
**** AND: "= false && %formula_cond_and_00%" ===> "false"
|
|
930
|
-
{{= false && %formula_cond_and_00% }}
|
|
931
|
-
|
|
932
|
-
**** AND: "= false && %formula_cond_and_01%" ===> "false"
|
|
933
|
-
{{= false && %formula_cond_and_01% }}
|
|
934
|
-
|
|
935
|
-
**** AND: "= false && %formula_cond_and_02%" ===> "false"
|
|
936
|
-
{{= false && %formula_cond_and_02% }}
|
|
937
|
-
|
|
938
|
-
**** AND: "= false && %formula_cond_and_03%" ===> "false"
|
|
939
|
-
{{= false && %formula_cond_and_03% }}
|
|
940
|
-
|
|
941
|
-
**** AND: "= false && %formula_cond_and_04%" ===> "false"
|
|
942
|
-
{{= false && %formula_cond_and_04% }}
|
|
943
|
-
|
|
944
|
-
**** AND: "= false && %formula_cond_and_05%" ===> "false"
|
|
945
|
-
{{= false && %formula_cond_and_05% }}
|
|
946
|
-
|
|
947
|
-
**** AND: "= true && false" ===> "false"
|
|
948
|
-
{{= true && false }}
|
|
949
|
-
|
|
950
|
-
**** AND: "= false && false" ===> "false"
|
|
951
|
-
{{= false && false }}
|
|
952
|
-
|
|
953
|
-
**** AND: "= 0 && false" ===> "false"
|
|
954
|
-
{{= 0 && false }}
|
|
955
|
-
|
|
956
|
-
**** AND: "= 1 && false" ===> "false"
|
|
957
|
-
{{= 1 && false }}
|
|
958
|
-
|
|
959
|
-
**** AND: "= 'string' && false" ===> "false"
|
|
960
|
-
{{= 'string' && false }}
|
|
961
|
-
|
|
962
|
-
**** AND: "= %formula_cond_and_00% && false" ===> "false"
|
|
963
|
-
{{= %formula_cond_and_00% && false }}
|
|
964
|
-
|
|
965
|
-
**** AND: "= %formula_cond_and_01% && false" ===> "false"
|
|
966
|
-
{{= %formula_cond_and_01% && false }}
|
|
967
|
-
|
|
968
|
-
**** AND: "= %formula_cond_and_02% && false" ===> "false"
|
|
969
|
-
{{= %formula_cond_and_02% && false }}
|
|
970
|
-
|
|
971
|
-
**** AND: "= %formula_cond_and_03% && false" ===> "false"
|
|
972
|
-
{{= %formula_cond_and_03% && false }}
|
|
973
|
-
|
|
974
|
-
**** AND: "= %formula_cond_and_04% && false" ===> "false"
|
|
975
|
-
{{= %formula_cond_and_04% && false }}
|
|
976
|
-
|
|
977
|
-
**** AND: "= %formula_cond_and_05% && false" ===> "false"
|
|
978
|
-
{{= %formula_cond_and_05% && false }}
|
|
979
|
-
|
|
980
|
-
**** AND: "= 0 && true" ===> "false"
|
|
981
|
-
{{= 0 && true }}
|
|
982
|
-
|
|
983
|
-
**** AND: "= 0 && false" ===> "false"
|
|
984
|
-
{{= 0 && false }}
|
|
985
|
-
|
|
986
|
-
**** AND: "= 0 && 0" ===> "false"
|
|
987
|
-
{{= 0 && 0 }}
|
|
988
|
-
|
|
989
|
-
**** AND: "= 0 && 1" ===> "false"
|
|
990
|
-
{{= 0 && 1 }}
|
|
991
|
-
|
|
992
|
-
**** AND: "= 0 && 'string'" ===> "false"
|
|
993
|
-
{{= 0 && 'string' }}
|
|
994
|
-
|
|
995
|
-
**** AND: "= 0 && %formula_cond_and_00%" ===> "false"
|
|
996
|
-
{{= 0 && %formula_cond_and_00% }}
|
|
997
|
-
|
|
998
|
-
**** AND: "= 0 && %formula_cond_and_01%" ===> "false"
|
|
999
|
-
{{= 0 && %formula_cond_and_01% }}
|
|
1000
|
-
|
|
1001
|
-
**** AND: "= 0 && %formula_cond_and_02%" ===> "false"
|
|
1002
|
-
{{= 0 && %formula_cond_and_02% }}
|
|
1003
|
-
|
|
1004
|
-
**** AND: "= 0 && %formula_cond_and_03%" ===> "false"
|
|
1005
|
-
{{= 0 && %formula_cond_and_03% }}
|
|
1006
|
-
|
|
1007
|
-
**** AND: "= 0 && %formula_cond_and_04%" ===> "false"
|
|
1008
|
-
{{= 0 && %formula_cond_and_04% }}
|
|
1009
|
-
|
|
1010
|
-
**** AND: "= 0 && %formula_cond_and_05%" ===> "false"
|
|
1011
|
-
{{= 0 && %formula_cond_and_05% }}
|
|
1012
|
-
|
|
1013
|
-
**** AND: "= true && 0" ===> "false"
|
|
1014
|
-
{{= true && 0 }}
|
|
1015
|
-
|
|
1016
|
-
**** AND: "= false && 0" ===> "false"
|
|
1017
|
-
{{= false && 0 }}
|
|
1018
|
-
|
|
1019
|
-
**** AND: "= 0 && 0" ===> "false"
|
|
1020
|
-
{{= 0 && 0 }}
|
|
1021
|
-
|
|
1022
|
-
**** AND: "= 1 && 0" ===> "false"
|
|
1023
|
-
{{= 1 && 0 }}
|
|
1024
|
-
|
|
1025
|
-
**** AND: "= 'string' && 0" ===> "false"
|
|
1026
|
-
{{= 'string' && 0 }}
|
|
1027
|
-
|
|
1028
|
-
**** AND: "= %formula_cond_and_00% && 0" ===> "false"
|
|
1029
|
-
{{= %formula_cond_and_00% && 0 }}
|
|
1030
|
-
|
|
1031
|
-
**** AND: "= %formula_cond_and_01% && 0" ===> "false"
|
|
1032
|
-
{{= %formula_cond_and_01% && 0 }}
|
|
1033
|
-
|
|
1034
|
-
**** AND: "= %formula_cond_and_02% && 0" ===> "false"
|
|
1035
|
-
{{= %formula_cond_and_02% && 0 }}
|
|
1036
|
-
|
|
1037
|
-
**** AND: "= %formula_cond_and_03% && 0" ===> "false"
|
|
1038
|
-
{{= %formula_cond_and_03% && 0 }}
|
|
1039
|
-
|
|
1040
|
-
**** AND: "= %formula_cond_and_04% && 0" ===> "false"
|
|
1041
|
-
{{= %formula_cond_and_04% && 0 }}
|
|
1042
|
-
|
|
1043
|
-
**** AND: "= %formula_cond_and_05% && 0" ===> "false"
|
|
1044
|
-
{{= %formula_cond_and_05% && 0 }}
|
|
1045
|
-
|
|
1046
|
-
**** AND: "= 1 && true" ===> "true"
|
|
1047
|
-
{{= 1 && true }}
|
|
1048
|
-
|
|
1049
|
-
**** AND: "= 1 && false" ===> "false"
|
|
1050
|
-
{{= 1 && false }}
|
|
1051
|
-
|
|
1052
|
-
**** AND: "= 1 && 0" ===> "false"
|
|
1053
|
-
{{= 1 && 0 }}
|
|
1054
|
-
|
|
1055
|
-
**** AND: "= 1 && 1" ===> "true"
|
|
1056
|
-
{{= 1 && 1 }}
|
|
1057
|
-
|
|
1058
|
-
**** AND: "= 1 && 'string'" ===> "true"
|
|
1059
|
-
{{= 1 && 'string' }}
|
|
1060
|
-
|
|
1061
|
-
**** AND: "= 1 && %formula_cond_and_00%" ===> "false"
|
|
1062
|
-
{{= 1 && %formula_cond_and_00% }}
|
|
1063
|
-
|
|
1064
|
-
**** AND: "= 1 && %formula_cond_and_01%" ===> "true"
|
|
1065
|
-
{{= 1 && %formula_cond_and_01% }}
|
|
1066
|
-
|
|
1067
|
-
**** AND: "= 1 && %formula_cond_and_02%" ===> "false"
|
|
1068
|
-
{{= 1 && %formula_cond_and_02% }}
|
|
1069
|
-
|
|
1070
|
-
**** AND: "= 1 && %formula_cond_and_03%" ===> "false"
|
|
1071
|
-
{{= 1 && %formula_cond_and_03% }}
|
|
1072
|
-
|
|
1073
|
-
**** AND: "= 1 && %formula_cond_and_04%" ===> "true"
|
|
1074
|
-
{{= 1 && %formula_cond_and_04% }}
|
|
1075
|
-
|
|
1076
|
-
**** AND: "= 1 && %formula_cond_and_05%" ===> "true"
|
|
1077
|
-
{{= 1 && %formula_cond_and_05% }}
|
|
1078
|
-
|
|
1079
|
-
**** AND: "= true && 1" ===> "true"
|
|
1080
|
-
{{= true && 1 }}
|
|
1081
|
-
|
|
1082
|
-
**** AND: "= false && 1" ===> "false"
|
|
1083
|
-
{{= false && 1 }}
|
|
1084
|
-
|
|
1085
|
-
**** AND: "= 0 && 1" ===> "false"
|
|
1086
|
-
{{= 0 && 1 }}
|
|
1087
|
-
|
|
1088
|
-
**** AND: "= 1 && 1" ===> "true"
|
|
1089
|
-
{{= 1 && 1 }}
|
|
1090
|
-
|
|
1091
|
-
**** AND: "= 'string' && 1" ===> "true"
|
|
1092
|
-
{{= 'string' && 1 }}
|
|
1093
|
-
|
|
1094
|
-
**** AND: "= %formula_cond_and_00% && 1" ===> "false"
|
|
1095
|
-
{{= %formula_cond_and_00% && 1 }}
|
|
1096
|
-
|
|
1097
|
-
**** AND: "= %formula_cond_and_01% && 1" ===> "true"
|
|
1098
|
-
{{= %formula_cond_and_01% && 1 }}
|
|
1099
|
-
|
|
1100
|
-
**** AND: "= %formula_cond_and_02% && 1" ===> "false"
|
|
1101
|
-
{{= %formula_cond_and_02% && 1 }}
|
|
1102
|
-
|
|
1103
|
-
**** AND: "= %formula_cond_and_03% && 1" ===> "false"
|
|
1104
|
-
{{= %formula_cond_and_03% && 1 }}
|
|
1105
|
-
|
|
1106
|
-
**** AND: "= %formula_cond_and_04% && 1" ===> "true"
|
|
1107
|
-
{{= %formula_cond_and_04% && 1 }}
|
|
1108
|
-
|
|
1109
|
-
**** AND: "= %formula_cond_and_05% && 1" ===> "true"
|
|
1110
|
-
{{= %formula_cond_and_05% && 1 }}
|
|
1111
|
-
|
|
1112
|
-
**** AND: "= 'string' && true" ===> "true"
|
|
1113
|
-
{{= 'string' && true }}
|
|
1114
|
-
|
|
1115
|
-
**** AND: "= 'string' && false" ===> "false"
|
|
1116
|
-
{{= 'string' && false }}
|
|
1117
|
-
|
|
1118
|
-
**** AND: "= 'string' && 0" ===> "false"
|
|
1119
|
-
{{= 'string' && 0 }}
|
|
1120
|
-
|
|
1121
|
-
**** AND: "= 'string' && 1" ===> "true"
|
|
1122
|
-
{{= 'string' && 1 }}
|
|
1123
|
-
|
|
1124
|
-
**** AND: "= 'string' && 'string'" ===> "true"
|
|
1125
|
-
{{= 'string' && 'string' }}
|
|
1126
|
-
|
|
1127
|
-
**** AND: "= 'string' && %formula_cond_and_00%" ===> "false"
|
|
1128
|
-
{{= 'string' && %formula_cond_and_00% }}
|
|
1129
|
-
|
|
1130
|
-
**** AND: "= 'string' && %formula_cond_and_01%" ===> "true"
|
|
1131
|
-
{{= 'string' && %formula_cond_and_01% }}
|
|
1132
|
-
|
|
1133
|
-
**** AND: "= 'string' && %formula_cond_and_02%" ===> "false"
|
|
1134
|
-
{{= 'string' && %formula_cond_and_02% }}
|
|
1135
|
-
|
|
1136
|
-
**** AND: "= 'string' && %formula_cond_and_03%" ===> "false"
|
|
1137
|
-
{{= 'string' && %formula_cond_and_03% }}
|
|
1138
|
-
|
|
1139
|
-
**** AND: "= 'string' && %formula_cond_and_04%" ===> "true"
|
|
1140
|
-
{{= 'string' && %formula_cond_and_04% }}
|
|
1141
|
-
|
|
1142
|
-
**** AND: "= 'string' && %formula_cond_and_05%" ===> "true"
|
|
1143
|
-
{{= 'string' && %formula_cond_and_05% }}
|
|
1144
|
-
|
|
1145
|
-
**** AND: "= true && 'string'" ===> "true"
|
|
1146
|
-
{{= true && 'string' }}
|
|
1147
|
-
|
|
1148
|
-
**** AND: "= false && 'string'" ===> "false"
|
|
1149
|
-
{{= false && 'string' }}
|
|
1150
|
-
|
|
1151
|
-
**** AND: "= 0 && 'string'" ===> "false"
|
|
1152
|
-
{{= 0 && 'string' }}
|
|
1153
|
-
|
|
1154
|
-
**** AND: "= 1 && 'string'" ===> "true"
|
|
1155
|
-
{{= 1 && 'string' }}
|
|
1156
|
-
|
|
1157
|
-
**** AND: "= 'string' && 'string'" ===> "true"
|
|
1158
|
-
{{= 'string' && 'string' }}
|
|
1159
|
-
|
|
1160
|
-
**** AND: "= %formula_cond_and_00% && 'string'" ===> "false"
|
|
1161
|
-
{{= %formula_cond_and_00% && 'string' }}
|
|
1162
|
-
|
|
1163
|
-
**** AND: "= %formula_cond_and_01% && 'string'" ===> "true"
|
|
1164
|
-
{{= %formula_cond_and_01% && 'string' }}
|
|
1165
|
-
|
|
1166
|
-
**** AND: "= %formula_cond_and_02% && 'string'" ===> "false"
|
|
1167
|
-
{{= %formula_cond_and_02% && 'string' }}
|
|
1168
|
-
|
|
1169
|
-
**** AND: "= %formula_cond_and_03% && 'string'" ===> "false"
|
|
1170
|
-
{{= %formula_cond_and_03% && 'string' }}
|
|
1171
|
-
|
|
1172
|
-
**** AND: "= %formula_cond_and_04% && 'string'" ===> "true"
|
|
1173
|
-
{{= %formula_cond_and_04% && 'string' }}
|
|
1174
|
-
|
|
1175
|
-
**** AND: "= %formula_cond_and_05% && 'string'" ===> "true"
|
|
1176
|
-
{{= %formula_cond_and_05% && 'string' }}
|
|
1177
|
-
|
|
1178
|
-
**** AND: "= %formula_cond_and_00% && %formula_cond_and_00%" ===> "false"
|
|
1179
|
-
{{= %formula_cond_and_00% && %formula_cond_and_00% }}
|
|
1180
|
-
|
|
1181
|
-
**** AND: "= %formula_cond_and_00% && %formula_cond_and_01%" ===> "false"
|
|
1182
|
-
{{= %formula_cond_and_00% && %formula_cond_and_01% }}
|
|
1183
|
-
|
|
1184
|
-
**** AND: "= %formula_cond_and_00% && %formula_cond_and_02%" ===> "false"
|
|
1185
|
-
{{= %formula_cond_and_00% && %formula_cond_and_02% }}
|
|
1186
|
-
|
|
1187
|
-
**** AND: "= %formula_cond_and_00% && %formula_cond_and_03%" ===> "false"
|
|
1188
|
-
{{= %formula_cond_and_00% && %formula_cond_and_03% }}
|
|
1189
|
-
|
|
1190
|
-
**** AND: "= %formula_cond_and_00% && %formula_cond_and_04%" ===> "false"
|
|
1191
|
-
{{= %formula_cond_and_00% && %formula_cond_and_04% }}
|
|
1192
|
-
|
|
1193
|
-
**** AND: "= %formula_cond_and_00% && %formula_cond_and_05%" ===> "false"
|
|
1194
|
-
{{= %formula_cond_and_00% && %formula_cond_and_05% }}
|
|
1195
|
-
|
|
1196
|
-
**** AND: "= %formula_cond_and_01% && %formula_cond_and_01%" ===> "true"
|
|
1197
|
-
{{= %formula_cond_and_01% && %formula_cond_and_01% }}
|
|
1198
|
-
|
|
1199
|
-
**** AND: "= %formula_cond_and_01% && %formula_cond_and_02%" ===> "false"
|
|
1200
|
-
{{= %formula_cond_and_01% && %formula_cond_and_02% }}
|
|
1201
|
-
|
|
1202
|
-
**** AND: "= %formula_cond_and_01% && %formula_cond_and_03%" ===> "false"
|
|
1203
|
-
{{= %formula_cond_and_01% && %formula_cond_and_03% }}
|
|
1204
|
-
|
|
1205
|
-
**** AND: "= %formula_cond_and_01% && %formula_cond_and_04%" ===> "true"
|
|
1206
|
-
{{= %formula_cond_and_01% && %formula_cond_and_04% }}
|
|
1207
|
-
|
|
1208
|
-
**** AND: "= %formula_cond_and_01% && %formula_cond_and_05%" ===> "true"
|
|
1209
|
-
{{= %formula_cond_and_01% && %formula_cond_and_05% }}
|
|
1210
|
-
|
|
1211
|
-
**** AND: "= %formula_cond_and_02% && %formula_cond_and_02%" ===> "false"
|
|
1212
|
-
{{= %formula_cond_and_02% && %formula_cond_and_02% }}
|
|
1213
|
-
|
|
1214
|
-
**** AND: "= %formula_cond_and_02% && %formula_cond_and_03%" ===> "false"
|
|
1215
|
-
{{= %formula_cond_and_02% && %formula_cond_and_03% }}
|
|
1216
|
-
|
|
1217
|
-
**** AND: "= %formula_cond_and_02% && %formula_cond_and_04%" ===> "false"
|
|
1218
|
-
{{= %formula_cond_and_02% && %formula_cond_and_04% }}
|
|
1219
|
-
|
|
1220
|
-
**** AND: "= %formula_cond_and_02% && %formula_cond_and_05%" ===> "false"
|
|
1221
|
-
{{= %formula_cond_and_02% && %formula_cond_and_05% }}
|
|
1222
|
-
|
|
1223
|
-
**** AND: "= %formula_cond_and_03% && %formula_cond_and_03%" ===> "false"
|
|
1224
|
-
{{= %formula_cond_and_03% && %formula_cond_and_03% }}
|
|
1225
|
-
|
|
1226
|
-
**** AND: "= %formula_cond_and_03% && %formula_cond_and_04%" ===> "false"
|
|
1227
|
-
{{= %formula_cond_and_03% && %formula_cond_and_04% }}
|
|
1228
|
-
|
|
1229
|
-
**** AND: "= %formula_cond_and_03% && %formula_cond_and_05%" ===> "false"
|
|
1230
|
-
{{= %formula_cond_and_03% && %formula_cond_and_05% }}
|
|
1231
|
-
|
|
1232
|
-
**** AND: "= %formula_cond_and_04% && %formula_cond_and_04%" ===> "true"
|
|
1233
|
-
{{= %formula_cond_and_04% && %formula_cond_and_04% }}
|
|
1234
|
-
|
|
1235
|
-
**** AND: "= %formula_cond_and_04% && %formula_cond_and_05%" ===> "true"
|
|
1236
|
-
{{= %formula_cond_and_04% && %formula_cond_and_05% }}
|
|
1237
|
-
|
|
1238
|
-
**** AND: "= %formula_cond_and_05% && %formula_cond_and_05%" ===> "true"
|
|
1239
|
-
{{= %formula_cond_and_05% && %formula_cond_and_05% }}
|
|
1240
|
-
|
|
1241
|
-
##
|
|
1242
|
-
## Test > Formula > Condition > OR
|
|
1243
|
-
##
|
|
1244
|
-
**** OR: "= null || null" ===> "false"
|
|
1245
|
-
{{= null || null }}
|
|
1246
|
-
|
|
1247
|
-
**** OR: "= null || true" ===> "true"
|
|
1248
|
-
{{= null || true }}
|
|
1249
|
-
|
|
1250
|
-
**** OR: "= null || false" ===> "false"
|
|
1251
|
-
{{= null || false }}
|
|
1252
|
-
|
|
1253
|
-
**** OR: "= null || 0" ===> "false"
|
|
1254
|
-
{{= null || 0 }}
|
|
1255
|
-
|
|
1256
|
-
**** OR: "= null || 1" ===> "true"
|
|
1257
|
-
{{= null || 1 }}
|
|
1258
|
-
|
|
1259
|
-
**** OR: "= null || 'string'" ===> "true"
|
|
1260
|
-
{{= null || 'string' }}
|
|
1261
|
-
|
|
1262
|
-
**** OR: "= null || %formula_cond_or_00%" ===> "false"
|
|
1263
|
-
{{= null || %formula_cond_or_00% }}
|
|
1264
|
-
|
|
1265
|
-
**** OR: "= null || %formula_cond_or_01%" ===> "true"
|
|
1266
|
-
{{= null || %formula_cond_or_01% }}
|
|
1267
|
-
|
|
1268
|
-
**** OR: "= null || %formula_cond_or_02%" ===> "false"
|
|
1269
|
-
{{= null || %formula_cond_or_02% }}
|
|
1270
|
-
|
|
1271
|
-
**** OR: "= null || %formula_cond_or_03%" ===> "false"
|
|
1272
|
-
{{= null || %formula_cond_or_03% }}
|
|
1273
|
-
|
|
1274
|
-
**** OR: "= null || %formula_cond_or_04%" ===> "true"
|
|
1275
|
-
{{= null || %formula_cond_or_04% }}
|
|
1276
|
-
|
|
1277
|
-
**** OR: "= null || %formula_cond_or_05%" ===> "true"
|
|
1278
|
-
{{= null || %formula_cond_or_05% }}
|
|
1279
|
-
|
|
1280
|
-
**** OR: "= true || null" ===> "true"
|
|
1281
|
-
{{= true || null }}
|
|
1282
|
-
|
|
1283
|
-
**** OR: "= false || null" ===> "false"
|
|
1284
|
-
{{= false || null }}
|
|
1285
|
-
|
|
1286
|
-
**** OR: "= 0 || null" ===> "false"
|
|
1287
|
-
{{= 0 || null }}
|
|
1288
|
-
|
|
1289
|
-
**** OR: "= 1 || null" ===> "true"
|
|
1290
|
-
{{= 1 || null }}
|
|
1291
|
-
|
|
1292
|
-
**** OR: "= 'string' || null" ===> "true"
|
|
1293
|
-
{{= 'string' || null }}
|
|
1294
|
-
|
|
1295
|
-
**** OR: "= %formula_cond_or_00% || null" ===> "false"
|
|
1296
|
-
{{= %formula_cond_or_00% || null }}
|
|
1297
|
-
|
|
1298
|
-
**** OR: "= %formula_cond_or_01% || null" ===> "true"
|
|
1299
|
-
{{= %formula_cond_or_01% || null }}
|
|
1300
|
-
|
|
1301
|
-
**** OR: "= %formula_cond_or_02% || null" ===> "false"
|
|
1302
|
-
{{= %formula_cond_or_02% || null }}
|
|
1303
|
-
|
|
1304
|
-
**** OR: "= %formula_cond_or_03% || null" ===> "false"
|
|
1305
|
-
{{= %formula_cond_or_03% || null }}
|
|
1306
|
-
|
|
1307
|
-
**** OR: "= %formula_cond_or_04% || null" ===> "true"
|
|
1308
|
-
{{= %formula_cond_or_04% || null }}
|
|
1309
|
-
|
|
1310
|
-
**** OR: "= %formula_cond_or_05% || null" ===> "true"
|
|
1311
|
-
{{= %formula_cond_or_05% || null }}
|
|
1312
|
-
|
|
1313
|
-
**** OR: "= true || true" ===> "true"
|
|
1314
|
-
{{= true || true }}
|
|
1315
|
-
|
|
1316
|
-
**** OR: "= true || false" ===> "true"
|
|
1317
|
-
{{= true || false }}
|
|
1318
|
-
|
|
1319
|
-
**** OR: "= true || 0" ===> "true"
|
|
1320
|
-
{{= true || 0 }}
|
|
1321
|
-
|
|
1322
|
-
**** OR: "= true || 1" ===> "true"
|
|
1323
|
-
{{= true || 1 }}
|
|
1324
|
-
|
|
1325
|
-
**** OR: "= true || 'string'" ===> "true"
|
|
1326
|
-
{{= true || 'string' }}
|
|
1327
|
-
|
|
1328
|
-
**** OR: "= true || %formula_cond_or_00%" ===> "true"
|
|
1329
|
-
{{= true || %formula_cond_or_00% }}
|
|
1330
|
-
|
|
1331
|
-
**** OR: "= true || %formula_cond_or_01%" ===> "true"
|
|
1332
|
-
{{= true || %formula_cond_or_01% }}
|
|
1333
|
-
|
|
1334
|
-
**** OR: "= true || %formula_cond_or_02%" ===> "true"
|
|
1335
|
-
{{= true || %formula_cond_or_02% }}
|
|
1336
|
-
|
|
1337
|
-
**** OR: "= true || %formula_cond_or_03%" ===> "true"
|
|
1338
|
-
{{= true || %formula_cond_or_03% }}
|
|
1339
|
-
|
|
1340
|
-
**** OR: "= true || %formula_cond_or_04%" ===> "true"
|
|
1341
|
-
{{= true || %formula_cond_or_04% }}
|
|
1342
|
-
|
|
1343
|
-
**** OR: "= true || %formula_cond_or_05%" ===> "true"
|
|
1344
|
-
{{= true || %formula_cond_or_05% }}
|
|
1345
|
-
|
|
1346
|
-
**** OR: "= true || true" ===> "true"
|
|
1347
|
-
{{= true || true }}
|
|
1348
|
-
|
|
1349
|
-
**** OR: "= false || true" ===> "true"
|
|
1350
|
-
{{= false || true }}
|
|
1351
|
-
|
|
1352
|
-
**** OR: "= 0 || true" ===> "true"
|
|
1353
|
-
{{= 0 || true }}
|
|
1354
|
-
|
|
1355
|
-
**** OR: "= 1 || true" ===> "true"
|
|
1356
|
-
{{= 1 || true }}
|
|
1357
|
-
|
|
1358
|
-
**** OR: "= 'string' || true" ===> "true"
|
|
1359
|
-
{{= 'string' || true }}
|
|
1360
|
-
|
|
1361
|
-
**** OR: "= %formula_cond_or_00% || true" ===> "true"
|
|
1362
|
-
{{= %formula_cond_or_00% || true }}
|
|
1363
|
-
|
|
1364
|
-
**** OR: "= %formula_cond_or_01% || true" ===> "true"
|
|
1365
|
-
{{= %formula_cond_or_01% || true }}
|
|
1366
|
-
|
|
1367
|
-
**** OR: "= %formula_cond_or_02% || true" ===> "true"
|
|
1368
|
-
{{= %formula_cond_or_02% || true }}
|
|
1369
|
-
|
|
1370
|
-
**** OR: "= %formula_cond_or_03% || true" ===> "true"
|
|
1371
|
-
{{= %formula_cond_or_03% || true }}
|
|
1372
|
-
|
|
1373
|
-
**** OR: "= %formula_cond_or_04% || true" ===> "true"
|
|
1374
|
-
{{= %formula_cond_or_04% || true }}
|
|
1375
|
-
|
|
1376
|
-
**** OR: "= %formula_cond_or_05% || true" ===> "true"
|
|
1377
|
-
{{= %formula_cond_or_05% || true }}
|
|
1378
|
-
|
|
1379
|
-
**** OR: "= false || true" ===> "true"
|
|
1380
|
-
{{= false || true }}
|
|
1381
|
-
|
|
1382
|
-
**** OR: "= false || false" ===> "false"
|
|
1383
|
-
{{= false || false }}
|
|
1384
|
-
|
|
1385
|
-
**** OR: "= false || 0" ===> "false"
|
|
1386
|
-
{{= false || 0 }}
|
|
1387
|
-
|
|
1388
|
-
**** OR: "= false || 1" ===> "true"
|
|
1389
|
-
{{= false || 1 }}
|
|
1390
|
-
|
|
1391
|
-
**** OR: "= false || 'string'" ===> "true"
|
|
1392
|
-
{{= false || 'string' }}
|
|
1393
|
-
|
|
1394
|
-
**** OR: "= false || %formula_cond_or_00%" ===> "false"
|
|
1395
|
-
{{= false || %formula_cond_or_00% }}
|
|
1396
|
-
|
|
1397
|
-
**** OR: "= false || %formula_cond_or_01%" ===> "true"
|
|
1398
|
-
{{= false || %formula_cond_or_01% }}
|
|
1399
|
-
|
|
1400
|
-
**** OR: "= false || %formula_cond_or_02%" ===> "false"
|
|
1401
|
-
{{= false || %formula_cond_or_02% }}
|
|
1402
|
-
|
|
1403
|
-
**** OR: "= false || %formula_cond_or_03%" ===> "false"
|
|
1404
|
-
{{= false || %formula_cond_or_03% }}
|
|
1405
|
-
|
|
1406
|
-
**** OR: "= false || %formula_cond_or_04%" ===> "true"
|
|
1407
|
-
{{= false || %formula_cond_or_04% }}
|
|
1408
|
-
|
|
1409
|
-
**** OR: "= false || %formula_cond_or_05%" ===> "true"
|
|
1410
|
-
{{= false || %formula_cond_or_05% }}
|
|
1411
|
-
|
|
1412
|
-
**** OR: "= true || false" ===> "true"
|
|
1413
|
-
{{= true || false }}
|
|
1414
|
-
|
|
1415
|
-
**** OR: "= false || false" ===> "false"
|
|
1416
|
-
{{= false || false }}
|
|
1417
|
-
|
|
1418
|
-
**** OR: "= 0 || false" ===> "false"
|
|
1419
|
-
{{= 0 || false }}
|
|
1420
|
-
|
|
1421
|
-
**** OR: "= 1 || false" ===> "true"
|
|
1422
|
-
{{= 1 || false }}
|
|
1423
|
-
|
|
1424
|
-
**** OR: "= 'string' || false" ===> "true"
|
|
1425
|
-
{{= 'string' || false }}
|
|
1426
|
-
|
|
1427
|
-
**** OR: "= %formula_cond_or_00% || false" ===> "false"
|
|
1428
|
-
{{= %formula_cond_or_00% || false }}
|
|
1429
|
-
|
|
1430
|
-
**** OR: "= %formula_cond_or_01% || false" ===> "true"
|
|
1431
|
-
{{= %formula_cond_or_01% || false }}
|
|
1432
|
-
|
|
1433
|
-
**** OR: "= %formula_cond_or_02% || false" ===> "false"
|
|
1434
|
-
{{= %formula_cond_or_02% || false }}
|
|
1435
|
-
|
|
1436
|
-
**** OR: "= %formula_cond_or_03% || false" ===> "false"
|
|
1437
|
-
{{= %formula_cond_or_03% || false }}
|
|
1438
|
-
|
|
1439
|
-
**** OR: "= %formula_cond_or_04% || false" ===> "true"
|
|
1440
|
-
{{= %formula_cond_or_04% || false }}
|
|
1441
|
-
|
|
1442
|
-
**** OR: "= %formula_cond_or_05% || false" ===> "true"
|
|
1443
|
-
{{= %formula_cond_or_05% || false }}
|
|
1444
|
-
|
|
1445
|
-
**** OR: "= 0 || true" ===> "true"
|
|
1446
|
-
{{= 0 || true }}
|
|
1447
|
-
|
|
1448
|
-
**** OR: "= 0 || false" ===> "false"
|
|
1449
|
-
{{= 0 || false }}
|
|
1450
|
-
|
|
1451
|
-
**** OR: "= 0 || 0" ===> "false"
|
|
1452
|
-
{{= 0 || 0 }}
|
|
1453
|
-
|
|
1454
|
-
**** OR: "= 0 || 1" ===> "true"
|
|
1455
|
-
{{= 0 || 1 }}
|
|
1456
|
-
|
|
1457
|
-
**** OR: "= 0 || 'string'" ===> "true"
|
|
1458
|
-
{{= 0 || 'string' }}
|
|
1459
|
-
|
|
1460
|
-
**** OR: "= 0 || %formula_cond_or_00%" ===> "false"
|
|
1461
|
-
{{= 0 || %formula_cond_or_00% }}
|
|
1462
|
-
|
|
1463
|
-
**** OR: "= 0 || %formula_cond_or_01%" ===> "true"
|
|
1464
|
-
{{= 0 || %formula_cond_or_01% }}
|
|
1465
|
-
|
|
1466
|
-
**** OR: "= 0 || %formula_cond_or_02%" ===> "false"
|
|
1467
|
-
{{= 0 || %formula_cond_or_02% }}
|
|
1468
|
-
|
|
1469
|
-
**** OR: "= 0 || %formula_cond_or_03%" ===> "false"
|
|
1470
|
-
{{= 0 || %formula_cond_or_03% }}
|
|
1471
|
-
|
|
1472
|
-
**** OR: "= 0 || %formula_cond_or_04%" ===> "true"
|
|
1473
|
-
{{= 0 || %formula_cond_or_04% }}
|
|
1474
|
-
|
|
1475
|
-
**** OR: "= 0 || %formula_cond_or_05%" ===> "true"
|
|
1476
|
-
{{= 0 || %formula_cond_or_05% }}
|
|
1477
|
-
|
|
1478
|
-
**** OR: "= true || 0" ===> "true"
|
|
1479
|
-
{{= true || 0 }}
|
|
1480
|
-
|
|
1481
|
-
**** OR: "= false || 0" ===> "false"
|
|
1482
|
-
{{= false || 0 }}
|
|
1483
|
-
|
|
1484
|
-
**** OR: "= 0 || 0" ===> "false"
|
|
1485
|
-
{{= 0 || 0 }}
|
|
1486
|
-
|
|
1487
|
-
**** OR: "= 1 || 0" ===> "true"
|
|
1488
|
-
{{= 1 || 0 }}
|
|
1489
|
-
|
|
1490
|
-
**** OR: "= 'string' || 0" ===> "true"
|
|
1491
|
-
{{= 'string' || 0 }}
|
|
1492
|
-
|
|
1493
|
-
**** OR: "= %formula_cond_or_00% || 0" ===> "false"
|
|
1494
|
-
{{= %formula_cond_or_00% || 0 }}
|
|
1495
|
-
|
|
1496
|
-
**** OR: "= %formula_cond_or_01% || 0" ===> "true"
|
|
1497
|
-
{{= %formula_cond_or_01% || 0 }}
|
|
1498
|
-
|
|
1499
|
-
**** OR: "= %formula_cond_or_02% || 0" ===> "false"
|
|
1500
|
-
{{= %formula_cond_or_02% || 0 }}
|
|
1501
|
-
|
|
1502
|
-
**** OR: "= %formula_cond_or_03% || 0" ===> "false"
|
|
1503
|
-
{{= %formula_cond_or_03% || 0 }}
|
|
1504
|
-
|
|
1505
|
-
**** OR: "= %formula_cond_or_04% || 0" ===> "true"
|
|
1506
|
-
{{= %formula_cond_or_04% || 0 }}
|
|
1507
|
-
|
|
1508
|
-
**** OR: "= %formula_cond_or_05% || 0" ===> "true"
|
|
1509
|
-
{{= %formula_cond_or_05% || 0 }}
|
|
1510
|
-
|
|
1511
|
-
**** OR: "= 1 || true" ===> "true"
|
|
1512
|
-
{{= 1 || true }}
|
|
1513
|
-
|
|
1514
|
-
**** OR: "= 1 || false" ===> "true"
|
|
1515
|
-
{{= 1 || false }}
|
|
1516
|
-
|
|
1517
|
-
**** OR: "= 1 || 0" ===> "true"
|
|
1518
|
-
{{= 1 || 0 }}
|
|
1519
|
-
|
|
1520
|
-
**** OR: "= 1 || 1" ===> "true"
|
|
1521
|
-
{{= 1 || 1 }}
|
|
1522
|
-
|
|
1523
|
-
**** OR: "= 1 || 'string'" ===> "true"
|
|
1524
|
-
{{= 1 || 'string' }}
|
|
1525
|
-
|
|
1526
|
-
**** OR: "= 1 || %formula_cond_or_00%" ===> "true"
|
|
1527
|
-
{{= 1 || %formula_cond_or_00% }}
|
|
1528
|
-
|
|
1529
|
-
**** OR: "= 1 || %formula_cond_or_01%" ===> "true"
|
|
1530
|
-
{{= 1 || %formula_cond_or_01% }}
|
|
1531
|
-
|
|
1532
|
-
**** OR: "= 1 || %formula_cond_or_02%" ===> "true"
|
|
1533
|
-
{{= 1 || %formula_cond_or_02% }}
|
|
1534
|
-
|
|
1535
|
-
**** OR: "= 1 || %formula_cond_or_03%" ===> "true"
|
|
1536
|
-
{{= 1 || %formula_cond_or_03% }}
|
|
1537
|
-
|
|
1538
|
-
**** OR: "= 1 || %formula_cond_or_04%" ===> "true"
|
|
1539
|
-
{{= 1 || %formula_cond_or_04% }}
|
|
1540
|
-
|
|
1541
|
-
**** OR: "= 1 || %formula_cond_or_05%" ===> "true"
|
|
1542
|
-
{{= 1 || %formula_cond_or_05% }}
|
|
1543
|
-
|
|
1544
|
-
**** OR: "= true || 1" ===> "true"
|
|
1545
|
-
{{= true || 1 }}
|
|
1546
|
-
|
|
1547
|
-
**** OR: "= false || 1" ===> "true"
|
|
1548
|
-
{{= false || 1 }}
|
|
1549
|
-
|
|
1550
|
-
**** OR: "= 0 || 1" ===> "true"
|
|
1551
|
-
{{= 0 || 1 }}
|
|
1552
|
-
|
|
1553
|
-
**** OR: "= 1 || 1" ===> "true"
|
|
1554
|
-
{{= 1 || 1 }}
|
|
1555
|
-
|
|
1556
|
-
**** OR: "= 'string' || 1" ===> "true"
|
|
1557
|
-
{{= 'string' || 1 }}
|
|
1558
|
-
|
|
1559
|
-
**** OR: "= %formula_cond_or_00% || 1" ===> "true"
|
|
1560
|
-
{{= %formula_cond_or_00% || 1 }}
|
|
1561
|
-
|
|
1562
|
-
**** OR: "= %formula_cond_or_01% || 1" ===> "true"
|
|
1563
|
-
{{= %formula_cond_or_01% || 1 }}
|
|
1564
|
-
|
|
1565
|
-
**** OR: "= %formula_cond_or_02% || 1" ===> "true"
|
|
1566
|
-
{{= %formula_cond_or_02% || 1 }}
|
|
1567
|
-
|
|
1568
|
-
**** OR: "= %formula_cond_or_03% || 1" ===> "true"
|
|
1569
|
-
{{= %formula_cond_or_03% || 1 }}
|
|
1570
|
-
|
|
1571
|
-
**** OR: "= %formula_cond_or_04% || 1" ===> "true"
|
|
1572
|
-
{{= %formula_cond_or_04% || 1 }}
|
|
1573
|
-
|
|
1574
|
-
**** OR: "= %formula_cond_or_05% || 1" ===> "true"
|
|
1575
|
-
{{= %formula_cond_or_05% || 1 }}
|
|
1576
|
-
|
|
1577
|
-
**** OR: "= 'string' || true" ===> "true"
|
|
1578
|
-
{{= 'string' || true }}
|
|
1579
|
-
|
|
1580
|
-
**** OR: "= 'string' || false" ===> "true"
|
|
1581
|
-
{{= 'string' || false }}
|
|
1582
|
-
|
|
1583
|
-
**** OR: "= 'string' || 0" ===> "true"
|
|
1584
|
-
{{= 'string' || 0 }}
|
|
1585
|
-
|
|
1586
|
-
**** OR: "= 'string' || 1" ===> "true"
|
|
1587
|
-
{{= 'string' || 1 }}
|
|
1588
|
-
|
|
1589
|
-
**** OR: "= 'string' || 'string'" ===> "true"
|
|
1590
|
-
{{= 'string' || 'string' }}
|
|
1591
|
-
|
|
1592
|
-
**** OR: "= 'string' || %formula_cond_or_00%" ===> "true"
|
|
1593
|
-
{{= 'string' || %formula_cond_or_00% }}
|
|
1594
|
-
|
|
1595
|
-
**** OR: "= 'string' || %formula_cond_or_01%" ===> "true"
|
|
1596
|
-
{{= 'string' || %formula_cond_or_01% }}
|
|
1597
|
-
|
|
1598
|
-
**** OR: "= 'string' || %formula_cond_or_02%" ===> "true"
|
|
1599
|
-
{{= 'string' || %formula_cond_or_02% }}
|
|
1600
|
-
|
|
1601
|
-
**** OR: "= 'string' || %formula_cond_or_03%" ===> "true"
|
|
1602
|
-
{{= 'string' || %formula_cond_or_03% }}
|
|
1603
|
-
|
|
1604
|
-
**** OR: "= 'string' || %formula_cond_or_04%" ===> "true"
|
|
1605
|
-
{{= 'string' || %formula_cond_or_04% }}
|
|
1606
|
-
|
|
1607
|
-
**** OR: "= 'string' || %formula_cond_or_05%" ===> "true"
|
|
1608
|
-
{{= 'string' || %formula_cond_or_05% }}
|
|
1609
|
-
|
|
1610
|
-
**** OR: "= true || 'string'" ===> "true"
|
|
1611
|
-
{{= true || 'string' }}
|
|
1612
|
-
|
|
1613
|
-
**** OR: "= false || 'string'" ===> "true"
|
|
1614
|
-
{{= false || 'string' }}
|
|
1615
|
-
|
|
1616
|
-
**** OR: "= 0 || 'string'" ===> "true"
|
|
1617
|
-
{{= 0 || 'string' }}
|
|
1618
|
-
|
|
1619
|
-
**** OR: "= 1 || 'string'" ===> "true"
|
|
1620
|
-
{{= 1 || 'string' }}
|
|
1621
|
-
|
|
1622
|
-
**** OR: "= 'string' || 'string'" ===> "true"
|
|
1623
|
-
{{= 'string' || 'string' }}
|
|
1624
|
-
|
|
1625
|
-
**** OR: "= %formula_cond_or_00% || 'string'" ===> "true"
|
|
1626
|
-
{{= %formula_cond_or_00% || 'string' }}
|
|
1627
|
-
|
|
1628
|
-
**** OR: "= %formula_cond_or_01% || 'string'" ===> "true"
|
|
1629
|
-
{{= %formula_cond_or_01% || 'string' }}
|
|
1630
|
-
|
|
1631
|
-
**** OR: "= %formula_cond_or_02% || 'string'" ===> "true"
|
|
1632
|
-
{{= %formula_cond_or_02% || 'string' }}
|
|
1633
|
-
|
|
1634
|
-
**** OR: "= %formula_cond_or_03% || 'string'" ===> "true"
|
|
1635
|
-
{{= %formula_cond_or_03% || 'string' }}
|
|
1636
|
-
|
|
1637
|
-
**** OR: "= %formula_cond_or_04% || 'string'" ===> "true"
|
|
1638
|
-
{{= %formula_cond_or_04% || 'string' }}
|
|
1639
|
-
|
|
1640
|
-
**** OR: "= %formula_cond_or_05% || 'string'" ===> "true"
|
|
1641
|
-
{{= %formula_cond_or_05% || 'string' }}
|
|
1642
|
-
|
|
1643
|
-
**** OR: "= %formula_cond_or_00% || %formula_cond_or_00%" ===> "false"
|
|
1644
|
-
{{= %formula_cond_or_00% || %formula_cond_or_00% }}
|
|
1645
|
-
|
|
1646
|
-
**** OR: "= %formula_cond_or_00% || %formula_cond_or_01%" ===> "true"
|
|
1647
|
-
{{= %formula_cond_or_00% || %formula_cond_or_01% }}
|
|
1648
|
-
|
|
1649
|
-
**** OR: "= %formula_cond_or_00% || %formula_cond_or_02%" ===> "false"
|
|
1650
|
-
{{= %formula_cond_or_00% || %formula_cond_or_02% }}
|
|
1651
|
-
|
|
1652
|
-
**** OR: "= %formula_cond_or_00% || %formula_cond_or_03%" ===> "false"
|
|
1653
|
-
{{= %formula_cond_or_00% || %formula_cond_or_03% }}
|
|
1654
|
-
|
|
1655
|
-
**** OR: "= %formula_cond_or_00% || %formula_cond_or_04%" ===> "true"
|
|
1656
|
-
{{= %formula_cond_or_00% || %formula_cond_or_04% }}
|
|
1657
|
-
|
|
1658
|
-
**** OR: "= %formula_cond_or_00% || %formula_cond_or_05%" ===> "true"
|
|
1659
|
-
{{= %formula_cond_or_00% || %formula_cond_or_05% }}
|
|
1660
|
-
|
|
1661
|
-
**** OR: "= %formula_cond_or_01% || %formula_cond_or_01%" ===> "true"
|
|
1662
|
-
{{= %formula_cond_or_01% || %formula_cond_or_01% }}
|
|
1663
|
-
|
|
1664
|
-
**** OR: "= %formula_cond_or_01% || %formula_cond_or_02%" ===> "true"
|
|
1665
|
-
{{= %formula_cond_or_01% || %formula_cond_or_02% }}
|
|
1666
|
-
|
|
1667
|
-
**** OR: "= %formula_cond_or_01% || %formula_cond_or_03%" ===> "true"
|
|
1668
|
-
{{= %formula_cond_or_01% || %formula_cond_or_03% }}
|
|
1669
|
-
|
|
1670
|
-
**** OR: "= %formula_cond_or_01% || %formula_cond_or_04%" ===> "true"
|
|
1671
|
-
{{= %formula_cond_or_01% || %formula_cond_or_04% }}
|
|
1672
|
-
|
|
1673
|
-
**** OR: "= %formula_cond_or_01% || %formula_cond_or_05%" ===> "true"
|
|
1674
|
-
{{= %formula_cond_or_01% || %formula_cond_or_05% }}
|
|
1675
|
-
|
|
1676
|
-
**** OR: "= %formula_cond_or_02% || %formula_cond_or_02%" ===> "false"
|
|
1677
|
-
{{= %formula_cond_or_02% || %formula_cond_or_02% }}
|
|
1678
|
-
|
|
1679
|
-
**** OR: "= %formula_cond_or_02% || %formula_cond_or_03%" ===> "false"
|
|
1680
|
-
{{= %formula_cond_or_02% || %formula_cond_or_03% }}
|
|
1681
|
-
|
|
1682
|
-
**** OR: "= %formula_cond_or_02% || %formula_cond_or_04%" ===> "true"
|
|
1683
|
-
{{= %formula_cond_or_02% || %formula_cond_or_04% }}
|
|
1684
|
-
|
|
1685
|
-
**** OR: "= %formula_cond_or_02% || %formula_cond_or_05%" ===> "true"
|
|
1686
|
-
{{= %formula_cond_or_02% || %formula_cond_or_05% }}
|
|
1687
|
-
|
|
1688
|
-
**** OR: "= %formula_cond_or_03% || %formula_cond_or_03%" ===> "false"
|
|
1689
|
-
{{= %formula_cond_or_03% || %formula_cond_or_03% }}
|
|
1690
|
-
|
|
1691
|
-
**** OR: "= %formula_cond_or_03% || %formula_cond_or_04%" ===> "true"
|
|
1692
|
-
{{= %formula_cond_or_03% || %formula_cond_or_04% }}
|
|
1693
|
-
|
|
1694
|
-
**** OR: "= %formula_cond_or_03% || %formula_cond_or_05%" ===> "true"
|
|
1695
|
-
{{= %formula_cond_or_03% || %formula_cond_or_05% }}
|
|
1696
|
-
|
|
1697
|
-
**** OR: "= %formula_cond_or_04% || %formula_cond_or_04%" ===> "true"
|
|
1698
|
-
{{= %formula_cond_or_04% || %formula_cond_or_04% }}
|
|
1699
|
-
|
|
1700
|
-
**** OR: "= %formula_cond_or_04% || %formula_cond_or_05%" ===> "true"
|
|
1701
|
-
{{= %formula_cond_or_04% || %formula_cond_or_05% }}
|
|
1702
|
-
|
|
1703
|
-
**** OR: "= %formula_cond_or_05% || %formula_cond_or_05%" ===> "true"
|
|
1704
|
-
{{= %formula_cond_or_05% || %formula_cond_or_05% }}
|
|
1705
|
-
|
|
1706
|
-
##
|
|
1707
|
-
## Test > Formula > Condition > LESS
|
|
1708
|
-
##
|
|
1709
|
-
**** LESS: "= 1 < 2" ===> "true"
|
|
1710
|
-
{{= 1 < 2 }}
|
|
1711
|
-
|
|
1712
|
-
**** LESS: "= 1 < 1" ===> "false"
|
|
1713
|
-
{{= 1 < 1 }}
|
|
1714
|
-
|
|
1715
|
-
**** LESS: "= 1 < 0" ===> "false"
|
|
1716
|
-
{{= 1 < 0 }}
|
|
1717
|
-
|
|
1718
|
-
**** LESS: "= 1 < %formula_cond_less_02%" ===> "true"
|
|
1719
|
-
{{= 1 < %formula_cond_less_02% }}
|
|
1720
|
-
|
|
1721
|
-
**** LESS: "= 1 < %formula_cond_less_01%" ===> "false"
|
|
1722
|
-
{{= 1 < %formula_cond_less_01% }}
|
|
1723
|
-
|
|
1724
|
-
**** LESS: "= 1 < %formula_cond_less_00%" ===> "false"
|
|
1725
|
-
{{= 1 < %formula_cond_less_00% }}
|
|
1726
|
-
|
|
1727
|
-
**** LESS: "= 0 < 1" ===> "true"
|
|
1728
|
-
{{= 0 < 1 }}
|
|
1729
|
-
|
|
1730
|
-
**** LESS: "= 1 < 1" ===> "false"
|
|
1731
|
-
{{= 1 < 1 }}
|
|
1732
|
-
|
|
1733
|
-
**** LESS: "= 2 < 1" ===> "false"
|
|
1734
|
-
{{= 2 < 1 }}
|
|
1735
|
-
|
|
1736
|
-
**** LESS: "= %formula_cond_less_00% < 1" ===> "true"
|
|
1737
|
-
{{= %formula_cond_less_00% < 1 }}
|
|
1738
|
-
|
|
1739
|
-
**** LESS: "= %formula_cond_less_01% < 1" ===> "false"
|
|
1740
|
-
{{= %formula_cond_less_01% < 1 }}
|
|
1741
|
-
|
|
1742
|
-
**** LESS: "= %formula_cond_less_02% < 1" ===> "false"
|
|
1743
|
-
{{= %formula_cond_less_02% < 1 }}
|
|
1744
|
-
|
|
1745
|
-
**** LESS: "= %formula_cond_less_00% < %formula_cond_less_00%" ===> "false"
|
|
1746
|
-
{{= %formula_cond_less_00% < %formula_cond_less_00% }}
|
|
1747
|
-
|
|
1748
|
-
**** LESS: "= %formula_cond_less_00% < %formula_cond_less_01%" ===> "true"
|
|
1749
|
-
{{= %formula_cond_less_00% < %formula_cond_less_01% }}
|
|
1750
|
-
|
|
1751
|
-
**** LESS: "= %formula_cond_less_00% < %formula_cond_less_02%" ===> "true"
|
|
1752
|
-
{{= %formula_cond_less_00% < %formula_cond_less_02% }}
|
|
1753
|
-
|
|
1754
|
-
**** LESS: "= %formula_cond_less_01% < %formula_cond_less_00%" ===> "false"
|
|
1755
|
-
{{= %formula_cond_less_01% < %formula_cond_less_00% }}
|
|
1756
|
-
|
|
1757
|
-
**** LESS: "= %formula_cond_less_01% < %formula_cond_less_01%" ===> "false"
|
|
1758
|
-
{{= %formula_cond_less_01% < %formula_cond_less_01% }}
|
|
1759
|
-
|
|
1760
|
-
**** LESS: "= %formula_cond_less_01% < %formula_cond_less_02%" ===> "true"
|
|
1761
|
-
{{= %formula_cond_less_01% < %formula_cond_less_02% }}
|
|
1762
|
-
|
|
1763
|
-
**** LESS: "= %formula_cond_less_02% < %formula_cond_less_00%" ===> "false"
|
|
1764
|
-
{{= %formula_cond_less_02% < %formula_cond_less_00% }}
|
|
1765
|
-
|
|
1766
|
-
**** LESS: "= %formula_cond_less_02% < %formula_cond_less_01%" ===> "false"
|
|
1767
|
-
{{= %formula_cond_less_02% < %formula_cond_less_01% }}
|
|
1768
|
-
|
|
1769
|
-
**** LESS: "= %formula_cond_less_02% < %formula_cond_less_02%" ===> "false"
|
|
1770
|
-
{{= %formula_cond_less_02% < %formula_cond_less_02% }}
|
|
1771
|
-
|
|
1772
|
-
##
|
|
1773
|
-
## Test > Formula > Condition > GREAT
|
|
1774
|
-
##
|
|
1775
|
-
**** GREAT: "= 1 > 2" ===> "false"
|
|
1776
|
-
{{= 1 > 2 }}
|
|
1777
|
-
|
|
1778
|
-
**** GREAT: "= 1 > 1" ===> "false"
|
|
1779
|
-
{{= 1 > 1 }}
|
|
1780
|
-
|
|
1781
|
-
**** GREAT: "= 1 > 0" ===> "true"
|
|
1782
|
-
{{= 1 > 0 }}
|
|
1783
|
-
|
|
1784
|
-
**** GREAT: "= 1 > %formula_cond_great_02%" ===> "false"
|
|
1785
|
-
{{= 1 > %formula_cond_great_02% }}
|
|
1786
|
-
|
|
1787
|
-
**** GREAT: "= 1 > %formula_cond_great_01%" ===> "false"
|
|
1788
|
-
{{= 1 > %formula_cond_great_01% }}
|
|
1789
|
-
|
|
1790
|
-
**** GREAT: "= 1 > %formula_cond_great_00%" ===> "true"
|
|
1791
|
-
{{= 1 > %formula_cond_great_00% }}
|
|
1792
|
-
|
|
1793
|
-
**** GREAT: "= 0 > 1" ===> "false"
|
|
1794
|
-
{{= 0 > 1 }}
|
|
1795
|
-
|
|
1796
|
-
**** GREAT: "= 1 > 1" ===> "false"
|
|
1797
|
-
{{= 1 > 1 }}
|
|
1798
|
-
|
|
1799
|
-
**** GREAT: "= 2 > 1" ===> "true"
|
|
1800
|
-
{{= 2 > 1 }}
|
|
1801
|
-
|
|
1802
|
-
**** GREAT: "= %formula_cond_great_00% > 1" ===> "false"
|
|
1803
|
-
{{= %formula_cond_great_00% > 1 }}
|
|
1804
|
-
|
|
1805
|
-
**** GREAT: "= %formula_cond_great_01% > 1" ===> "false"
|
|
1806
|
-
{{= %formula_cond_great_01% > 1 }}
|
|
1807
|
-
|
|
1808
|
-
**** GREAT: "= %formula_cond_great_02% > 1" ===> "true"
|
|
1809
|
-
{{= %formula_cond_great_02% > 1 }}
|
|
1810
|
-
|
|
1811
|
-
**** GREAT: "= %formula_cond_great_00% > %formula_cond_great_00%" ===> "false"
|
|
1812
|
-
{{= %formula_cond_great_00% > %formula_cond_great_00% }}
|
|
1813
|
-
|
|
1814
|
-
**** GREAT: "= %formula_cond_great_00% > %formula_cond_great_01%" ===> "false"
|
|
1815
|
-
{{= %formula_cond_great_00% > %formula_cond_great_01% }}
|
|
1816
|
-
|
|
1817
|
-
**** GREAT: "= %formula_cond_great_00% > %formula_cond_great_02%" ===> "false"
|
|
1818
|
-
{{= %formula_cond_great_00% > %formula_cond_great_02% }}
|
|
1819
|
-
|
|
1820
|
-
**** GREAT: "= %formula_cond_great_01% > %formula_cond_great_00%" ===> "true"
|
|
1821
|
-
{{= %formula_cond_great_01% > %formula_cond_great_00% }}
|
|
1822
|
-
|
|
1823
|
-
**** GREAT: "= %formula_cond_great_01% > %formula_cond_great_01%" ===> "false"
|
|
1824
|
-
{{= %formula_cond_great_01% > %formula_cond_great_01% }}
|
|
1825
|
-
|
|
1826
|
-
**** GREAT: "= %formula_cond_great_01% > %formula_cond_great_02%" ===> "false"
|
|
1827
|
-
{{= %formula_cond_great_01% > %formula_cond_great_02% }}
|
|
1828
|
-
|
|
1829
|
-
**** GREAT: "= %formula_cond_great_02% > %formula_cond_great_00%" ===> "true"
|
|
1830
|
-
{{= %formula_cond_great_02% > %formula_cond_great_00% }}
|
|
1831
|
-
|
|
1832
|
-
**** GREAT: "= %formula_cond_great_02% > %formula_cond_great_01%" ===> "true"
|
|
1833
|
-
{{= %formula_cond_great_02% > %formula_cond_great_01% }}
|
|
1834
|
-
|
|
1835
|
-
**** GREAT: "= %formula_cond_great_02% > %formula_cond_great_02%" ===> "false"
|
|
1836
|
-
{{= %formula_cond_great_02% > %formula_cond_great_02% }}
|
|
1837
|
-
|
|
1838
|
-
##
|
|
1839
|
-
## Test > Formula > Condition > LESSEQ
|
|
1840
|
-
##
|
|
1841
|
-
**** LESSEQ: "= 1 <= 2" ===> "true"
|
|
1842
|
-
{{= 1 <= 2 }}
|
|
1843
|
-
|
|
1844
|
-
**** LESSEQ: "= 1 <= 1" ===> "true"
|
|
1845
|
-
{{= 1 <= 1 }}
|
|
1846
|
-
|
|
1847
|
-
**** LESSEQ: "= 1 <= 0" ===> "false"
|
|
1848
|
-
{{= 1 <= 0 }}
|
|
1849
|
-
|
|
1850
|
-
**** LESSEQ: "= 1 <= %formula_cond_lesseq_02%" ===> "true"
|
|
1851
|
-
{{= 1 <= %formula_cond_lesseq_02% }}
|
|
1852
|
-
|
|
1853
|
-
**** LESSEQ: "= 1 <= %formula_cond_lesseq_01%" ===> "true"
|
|
1854
|
-
{{= 1 <= %formula_cond_lesseq_01% }}
|
|
1855
|
-
|
|
1856
|
-
**** LESSEQ: "= 1 <= %formula_cond_lesseq_00%" ===> "false"
|
|
1857
|
-
{{= 1 <= %formula_cond_lesseq_00% }}
|
|
1858
|
-
|
|
1859
|
-
**** LESSEQ: "= 0 <= 1" ===> "true"
|
|
1860
|
-
{{= 0 <= 1 }}
|
|
1861
|
-
|
|
1862
|
-
**** LESSEQ: "= 1 <= 1" ===> "true"
|
|
1863
|
-
{{= 1 <= 1 }}
|
|
1864
|
-
|
|
1865
|
-
**** LESSEQ: "= 2 <= 1" ===> "false"
|
|
1866
|
-
{{= 2 <= 1 }}
|
|
1867
|
-
|
|
1868
|
-
**** LESSEQ: "= %formula_cond_lesseq_00% <= 1" ===> "true"
|
|
1869
|
-
{{= %formula_cond_lesseq_00% <= 1 }}
|
|
1870
|
-
|
|
1871
|
-
**** LESSEQ: "= %formula_cond_lesseq_01% <= 1" ===> "true"
|
|
1872
|
-
{{= %formula_cond_lesseq_01% <= 1 }}
|
|
1873
|
-
|
|
1874
|
-
**** LESSEQ: "= %formula_cond_lesseq_02% <= 1" ===> "false"
|
|
1875
|
-
{{= %formula_cond_lesseq_02% <= 1 }}
|
|
1876
|
-
|
|
1877
|
-
**** LESSEQ: "= %formula_cond_lesseq_00% <= %formula_cond_lesseq_00%" ===> "true"
|
|
1878
|
-
{{= %formula_cond_lesseq_00% <= %formula_cond_lesseq_00% }}
|
|
1879
|
-
|
|
1880
|
-
**** LESSEQ: "= %formula_cond_lesseq_00% <= %formula_cond_lesseq_01%" ===> "true"
|
|
1881
|
-
{{= %formula_cond_lesseq_00% <= %formula_cond_lesseq_01% }}
|
|
1882
|
-
|
|
1883
|
-
**** LESSEQ: "= %formula_cond_lesseq_00% <= %formula_cond_lesseq_02%" ===> "true"
|
|
1884
|
-
{{= %formula_cond_lesseq_00% <= %formula_cond_lesseq_02% }}
|
|
1885
|
-
|
|
1886
|
-
**** LESSEQ: "= %formula_cond_lesseq_01% <= %formula_cond_lesseq_00%" ===> "false"
|
|
1887
|
-
{{= %formula_cond_lesseq_01% <= %formula_cond_lesseq_00% }}
|
|
1888
|
-
|
|
1889
|
-
**** LESSEQ: "= %formula_cond_lesseq_01% <= %formula_cond_lesseq_01%" ===> "true"
|
|
1890
|
-
{{= %formula_cond_lesseq_01% <= %formula_cond_lesseq_01% }}
|
|
1891
|
-
|
|
1892
|
-
**** LESSEQ: "= %formula_cond_lesseq_01% <= %formula_cond_lesseq_02%" ===> "true"
|
|
1893
|
-
{{= %formula_cond_lesseq_01% <= %formula_cond_lesseq_02% }}
|
|
1894
|
-
|
|
1895
|
-
**** LESSEQ: "= %formula_cond_lesseq_02% <= %formula_cond_lesseq_00%" ===> "false"
|
|
1896
|
-
{{= %formula_cond_lesseq_02% <= %formula_cond_lesseq_00% }}
|
|
1897
|
-
|
|
1898
|
-
**** LESSEQ: "= %formula_cond_lesseq_02% <= %formula_cond_lesseq_01%" ===> "false"
|
|
1899
|
-
{{= %formula_cond_lesseq_02% <= %formula_cond_lesseq_01% }}
|
|
1900
|
-
|
|
1901
|
-
**** LESSEQ: "= %formula_cond_lesseq_02% <= %formula_cond_lesseq_02%" ===> "true"
|
|
1902
|
-
{{= %formula_cond_lesseq_02% <= %formula_cond_lesseq_02% }}
|
|
1903
|
-
|
|
1904
|
-
##
|
|
1905
|
-
## Test > Formula > Condition > GREATEQ
|
|
1906
|
-
##
|
|
1907
|
-
**** GREATEQ: "= 1 >= 2" ===> "false"
|
|
1908
|
-
{{= 1 >= 2 }}
|
|
1909
|
-
|
|
1910
|
-
**** GREATEQ: "= 1 >= 1" ===> "true"
|
|
1911
|
-
{{= 1 >= 1 }}
|
|
1912
|
-
|
|
1913
|
-
**** GREATEQ: "= 1 >= 0" ===> "true"
|
|
1914
|
-
{{= 1 >= 0 }}
|
|
1915
|
-
|
|
1916
|
-
**** GREATEQ: "= 1 >= %formula_cond_greateq_02%" ===> "false"
|
|
1917
|
-
{{= 1 >= %formula_cond_greateq_02% }}
|
|
1918
|
-
|
|
1919
|
-
**** GREATEQ: "= 1 >= %formula_cond_greateq_01%" ===> "true"
|
|
1920
|
-
{{= 1 >= %formula_cond_greateq_01% }}
|
|
1921
|
-
|
|
1922
|
-
**** GREATEQ: "= 1 >= %formula_cond_greateq_00%" ===> "true"
|
|
1923
|
-
{{= 1 >= %formula_cond_greateq_00% }}
|
|
1924
|
-
|
|
1925
|
-
**** GREATEQ: "= 0 >= 1" ===> "false"
|
|
1926
|
-
{{= 0 >= 1 }}
|
|
1927
|
-
|
|
1928
|
-
**** GREATEQ: "= 1 >= 1" ===> "true"
|
|
1929
|
-
{{= 1 >= 1 }}
|
|
1930
|
-
|
|
1931
|
-
**** GREATEQ: "= 2 >= 1" ===> "true"
|
|
1932
|
-
{{= 2 >= 1 }}
|
|
1933
|
-
|
|
1934
|
-
**** GREATEQ: "= %formula_cond_greateq_00% >= 1" ===> "false"
|
|
1935
|
-
{{= %formula_cond_greateq_00% >= 1 }}
|
|
1936
|
-
|
|
1937
|
-
**** GREATEQ: "= %formula_cond_greateq_01% >= 1" ===> "true"
|
|
1938
|
-
{{= %formula_cond_greateq_01% >= 1 }}
|
|
1939
|
-
|
|
1940
|
-
**** GREATEQ: "= %formula_cond_greateq_02% >= 1" ===> "true"
|
|
1941
|
-
{{= %formula_cond_greateq_02% >= 1 }}
|
|
1942
|
-
|
|
1943
|
-
**** GREATEQ: "= %formula_cond_greateq_00% >= %formula_cond_greateq_00%" ===> "true"
|
|
1944
|
-
{{= %formula_cond_greateq_00% >= %formula_cond_greateq_00% }}
|
|
1945
|
-
|
|
1946
|
-
**** GREATEQ: "= %formula_cond_greateq_00% >= %formula_cond_greateq_01%" ===> "false"
|
|
1947
|
-
{{= %formula_cond_greateq_00% >= %formula_cond_greateq_01% }}
|
|
1948
|
-
|
|
1949
|
-
**** GREATEQ: "= %formula_cond_greateq_00% >= %formula_cond_greateq_02%" ===> "false"
|
|
1950
|
-
{{= %formula_cond_greateq_00% >= %formula_cond_greateq_02% }}
|
|
1951
|
-
|
|
1952
|
-
**** GREATEQ: "= %formula_cond_greateq_01% >= %formula_cond_greateq_00%" ===> "true"
|
|
1953
|
-
{{= %formula_cond_greateq_01% >= %formula_cond_greateq_00% }}
|
|
1954
|
-
|
|
1955
|
-
**** GREATEQ: "= %formula_cond_greateq_01% >= %formula_cond_greateq_01%" ===> "true"
|
|
1956
|
-
{{= %formula_cond_greateq_01% >= %formula_cond_greateq_01% }}
|
|
1957
|
-
|
|
1958
|
-
**** GREATEQ: "= %formula_cond_greateq_01% >= %formula_cond_greateq_02%" ===> "false"
|
|
1959
|
-
{{= %formula_cond_greateq_01% >= %formula_cond_greateq_02% }}
|
|
1960
|
-
|
|
1961
|
-
**** GREATEQ: "= %formula_cond_greateq_02% >= %formula_cond_greateq_00%" ===> "true"
|
|
1962
|
-
{{= %formula_cond_greateq_02% >= %formula_cond_greateq_00% }}
|
|
1963
|
-
|
|
1964
|
-
**** GREATEQ: "= %formula_cond_greateq_02% >= %formula_cond_greateq_01%" ===> "true"
|
|
1965
|
-
{{= %formula_cond_greateq_02% >= %formula_cond_greateq_01% }}
|
|
1966
|
-
|
|
1967
|
-
**** GREATEQ: "= %formula_cond_greateq_02% >= %formula_cond_greateq_02%" ===> "true"
|
|
1968
|
-
{{= %formula_cond_greateq_02% >= %formula_cond_greateq_02% }}
|
|
1969
|
-
|
|
1970
|
-
##
|
|
1971
|
-
## Test > Formula > Condition > EQ
|
|
1972
|
-
##
|
|
1973
|
-
**** EQ: "= null == null" ===> "true"
|
|
1974
|
-
{{= null == null }}
|
|
1975
|
-
|
|
1976
|
-
**** EQ: "= null == true" ===> "false"
|
|
1977
|
-
{{= null == true }}
|
|
1978
|
-
|
|
1979
|
-
**** EQ: "= null == false" ===> "true"
|
|
1980
|
-
{{= null == false }}
|
|
1981
|
-
|
|
1982
|
-
**** EQ: "= null == 0" ===> "true"
|
|
1983
|
-
{{= null == 0 }}
|
|
1984
|
-
|
|
1985
|
-
**** EQ: "= null == 1" ===> "false"
|
|
1986
|
-
{{= null == 1 }}
|
|
1987
|
-
|
|
1988
|
-
**** EQ: "= null == 'string'" ===> "false"
|
|
1989
|
-
{{= null == 'string' }}
|
|
1990
|
-
|
|
1991
|
-
**** EQ: "= null == %formula_cond_eq_00%" ===> "true"
|
|
1992
|
-
{{= null == %formula_cond_eq_00% }}
|
|
1993
|
-
|
|
1994
|
-
**** EQ: "= null == %formula_cond_eq_01%" ===> "false"
|
|
1995
|
-
{{= null == %formula_cond_eq_01% }}
|
|
1996
|
-
|
|
1997
|
-
**** EQ: "= null == %formula_cond_eq_02%" ===> "true"
|
|
1998
|
-
{{= null == %formula_cond_eq_02% }}
|
|
1999
|
-
|
|
2000
|
-
**** EQ: "= null == %formula_cond_eq_03%" ===> "true"
|
|
2001
|
-
{{= null == %formula_cond_eq_03% }}
|
|
2002
|
-
|
|
2003
|
-
**** EQ: "= null == %formula_cond_eq_04%" ===> "false"
|
|
2004
|
-
{{= null == %formula_cond_eq_04% }}
|
|
2005
|
-
|
|
2006
|
-
**** EQ: "= null == %formula_cond_eq_05%" ===> "false"
|
|
2007
|
-
{{= null == %formula_cond_eq_05% }}
|
|
2008
|
-
|
|
2009
|
-
**** EQ: "= true == null" ===> "false"
|
|
2010
|
-
{{= true == null }}
|
|
2011
|
-
|
|
2012
|
-
**** EQ: "= false == null" ===> "true"
|
|
2013
|
-
{{= false == null }}
|
|
2014
|
-
|
|
2015
|
-
**** EQ: "= 0 == null" ===> "true"
|
|
2016
|
-
{{= 0 == null }}
|
|
2017
|
-
|
|
2018
|
-
**** EQ: "= 1 == null" ===> "false"
|
|
2019
|
-
{{= 1 == null }}
|
|
2020
|
-
|
|
2021
|
-
**** EQ: "= 'string' == null" ===> "false"
|
|
2022
|
-
{{= 'string' == null }}
|
|
2023
|
-
|
|
2024
|
-
**** EQ: "= %formula_cond_eq_00% == null" ===> "true"
|
|
2025
|
-
{{= %formula_cond_eq_00% == null }}
|
|
2026
|
-
|
|
2027
|
-
**** EQ: "= %formula_cond_eq_01% == null" ===> "false"
|
|
2028
|
-
{{= %formula_cond_eq_01% == null }}
|
|
2029
|
-
|
|
2030
|
-
**** EQ: "= %formula_cond_eq_02% == null" ===> "true"
|
|
2031
|
-
{{= %formula_cond_eq_02% == null }}
|
|
2032
|
-
|
|
2033
|
-
**** EQ: "= %formula_cond_eq_03% == null" ===> "true"
|
|
2034
|
-
{{= %formula_cond_eq_03% == null }}
|
|
2035
|
-
|
|
2036
|
-
**** EQ: "= %formula_cond_eq_04% == null" ===> "false"
|
|
2037
|
-
{{= %formula_cond_eq_04% == null }}
|
|
2038
|
-
|
|
2039
|
-
**** EQ: "= %formula_cond_eq_05% == null" ===> "false"
|
|
2040
|
-
{{= %formula_cond_eq_05% == null }}
|
|
2041
|
-
|
|
2042
|
-
**** EQ: "= true == null" ===> "false"
|
|
2043
|
-
{{= true == null }}
|
|
2044
|
-
|
|
2045
|
-
**** EQ: "= true == true" ===> "true"
|
|
2046
|
-
{{= true == true }}
|
|
2047
|
-
|
|
2048
|
-
**** EQ: "= true == false" ===> "false"
|
|
2049
|
-
{{= true == false }}
|
|
2050
|
-
|
|
2051
|
-
**** EQ: "= true == 0" ===> "false"
|
|
2052
|
-
{{= true == 0 }}
|
|
2053
|
-
|
|
2054
|
-
**** EQ: "= true == 1" ===> "true"
|
|
2055
|
-
{{= true == 1 }}
|
|
2056
|
-
|
|
2057
|
-
**** EQ: "= true == 'string'" ===> "true"
|
|
2058
|
-
{{= true == 'string' }}
|
|
2059
|
-
|
|
2060
|
-
**** EQ: "= true == %formula_cond_eq_00%" ===> "false"
|
|
2061
|
-
{{= true == %formula_cond_eq_00% }}
|
|
2062
|
-
|
|
2063
|
-
**** EQ: "= true == %formula_cond_eq_01%" ===> "true"
|
|
2064
|
-
{{= true == %formula_cond_eq_01% }}
|
|
2065
|
-
|
|
2066
|
-
**** EQ: "= true == %formula_cond_eq_02%" ===> "false"
|
|
2067
|
-
{{= true == %formula_cond_eq_02% }}
|
|
2068
|
-
|
|
2069
|
-
**** EQ: "= true == %formula_cond_eq_03%" ===> "false"
|
|
2070
|
-
{{= true == %formula_cond_eq_03% }}
|
|
2071
|
-
|
|
2072
|
-
**** EQ: "= true == %formula_cond_eq_04%" ===> "true"
|
|
2073
|
-
{{= true == %formula_cond_eq_04% }}
|
|
2074
|
-
|
|
2075
|
-
**** EQ: "= true == %formula_cond_eq_05%" ===> "true"
|
|
2076
|
-
{{= true == %formula_cond_eq_05% }}
|
|
2077
|
-
|
|
2078
|
-
**** EQ: "= true == true" ===> "true"
|
|
2079
|
-
{{= true == true }}
|
|
2080
|
-
|
|
2081
|
-
**** EQ: "= false == true" ===> "false"
|
|
2082
|
-
{{= false == true }}
|
|
2083
|
-
|
|
2084
|
-
**** EQ: "= 0 == true" ===> "false"
|
|
2085
|
-
{{= 0 == true }}
|
|
2086
|
-
|
|
2087
|
-
**** EQ: "= 1 == true" ===> "true"
|
|
2088
|
-
{{= 1 == true }}
|
|
2089
|
-
|
|
2090
|
-
**** EQ: "= 'string' == true" ===> "true"
|
|
2091
|
-
{{= 'string' == true }}
|
|
2092
|
-
|
|
2093
|
-
**** EQ: "= %formula_cond_eq_00% == true" ===> "false"
|
|
2094
|
-
{{= %formula_cond_eq_00% == true }}
|
|
2095
|
-
|
|
2096
|
-
**** EQ: "= %formula_cond_eq_01% == true" ===> "true"
|
|
2097
|
-
{{= %formula_cond_eq_01% == true }}
|
|
2098
|
-
|
|
2099
|
-
**** EQ: "= %formula_cond_eq_02% == true" ===> "false"
|
|
2100
|
-
{{= %formula_cond_eq_02% == true }}
|
|
2101
|
-
|
|
2102
|
-
**** EQ: "= %formula_cond_eq_03% == true" ===> "false"
|
|
2103
|
-
{{= %formula_cond_eq_03% == true }}
|
|
2104
|
-
|
|
2105
|
-
**** EQ: "= %formula_cond_eq_04% == true" ===> "true"
|
|
2106
|
-
{{= %formula_cond_eq_04% == true }}
|
|
2107
|
-
|
|
2108
|
-
**** EQ: "= %formula_cond_eq_05% == true" ===> "true"
|
|
2109
|
-
{{= %formula_cond_eq_05% == true }}
|
|
2110
|
-
|
|
2111
|
-
**** EQ: "= false == null" ===> "true"
|
|
2112
|
-
{{= false == null }}
|
|
2113
|
-
|
|
2114
|
-
**** EQ: "= false == true" ===> "false"
|
|
2115
|
-
{{= false == true }}
|
|
2116
|
-
|
|
2117
|
-
**** EQ: "= false == false" ===> "true"
|
|
2118
|
-
{{= false == false }}
|
|
2119
|
-
|
|
2120
|
-
**** EQ: "= false == 0" ===> "true"
|
|
2121
|
-
{{= false == 0 }}
|
|
2122
|
-
|
|
2123
|
-
**** EQ: "= false == 1" ===> "false"
|
|
2124
|
-
{{= false == 1 }}
|
|
2125
|
-
|
|
2126
|
-
**** EQ: "= false == 'string'" ===> "false"
|
|
2127
|
-
{{= false == 'string' }}
|
|
2128
|
-
|
|
2129
|
-
**** EQ: "= false == %formula_cond_eq_00%" ===> "true"
|
|
2130
|
-
{{= false == %formula_cond_eq_00% }}
|
|
2131
|
-
|
|
2132
|
-
**** EQ: "= false == %formula_cond_eq_01%" ===> "false"
|
|
2133
|
-
{{= false == %formula_cond_eq_01% }}
|
|
2134
|
-
|
|
2135
|
-
**** EQ: "= false == %formula_cond_eq_02%" ===> "true"
|
|
2136
|
-
{{= false == %formula_cond_eq_02% }}
|
|
2137
|
-
|
|
2138
|
-
**** EQ: "= false == %formula_cond_eq_03%" ===> "true"
|
|
2139
|
-
{{= false == %formula_cond_eq_03% }}
|
|
2140
|
-
|
|
2141
|
-
**** EQ: "= false == %formula_cond_eq_04%" ===> "false"
|
|
2142
|
-
{{= false == %formula_cond_eq_04% }}
|
|
2143
|
-
|
|
2144
|
-
**** EQ: "= false == %formula_cond_eq_05%" ===> "false"
|
|
2145
|
-
{{= false == %formula_cond_eq_05% }}
|
|
2146
|
-
|
|
2147
|
-
**** EQ: "= true == false" ===> "false"
|
|
2148
|
-
{{= true == false }}
|
|
2149
|
-
|
|
2150
|
-
**** EQ: "= false == false" ===> "true"
|
|
2151
|
-
{{= false == false }}
|
|
2152
|
-
|
|
2153
|
-
**** EQ: "= 0 == false" ===> "true"
|
|
2154
|
-
{{= 0 == false }}
|
|
2155
|
-
|
|
2156
|
-
**** EQ: "= 1 == false" ===> "false"
|
|
2157
|
-
{{= 1 == false }}
|
|
2158
|
-
|
|
2159
|
-
**** EQ: "= 'string' == false" ===> "false"
|
|
2160
|
-
{{= 'string' == false }}
|
|
2161
|
-
|
|
2162
|
-
**** EQ: "= %formula_cond_eq_00% == false" ===> "true"
|
|
2163
|
-
{{= %formula_cond_eq_00% == false }}
|
|
2164
|
-
|
|
2165
|
-
**** EQ: "= %formula_cond_eq_01% == false" ===> "false"
|
|
2166
|
-
{{= %formula_cond_eq_01% == false }}
|
|
2167
|
-
|
|
2168
|
-
**** EQ: "= %formula_cond_eq_02% == false" ===> "true"
|
|
2169
|
-
{{= %formula_cond_eq_02% == false }}
|
|
2170
|
-
|
|
2171
|
-
**** EQ: "= %formula_cond_eq_03% == false" ===> "true"
|
|
2172
|
-
{{= %formula_cond_eq_03% == false }}
|
|
2173
|
-
|
|
2174
|
-
**** EQ: "= %formula_cond_eq_04% == false" ===> "false"
|
|
2175
|
-
{{= %formula_cond_eq_04% == false }}
|
|
2176
|
-
|
|
2177
|
-
**** EQ: "= %formula_cond_eq_05% == false" ===> "false"
|
|
2178
|
-
{{= %formula_cond_eq_05% == false }}
|
|
2179
|
-
|
|
2180
|
-
**** EQ: "= 0 == null" ===> "true"
|
|
2181
|
-
{{= 0 == null }}
|
|
2182
|
-
|
|
2183
|
-
**** EQ: "= 0 == true" ===> "false"
|
|
2184
|
-
{{= 0 == true }}
|
|
2185
|
-
|
|
2186
|
-
**** EQ: "= 0 == false" ===> "true"
|
|
2187
|
-
{{= 0 == false }}
|
|
2188
|
-
|
|
2189
|
-
**** EQ: "= 0 == 0" ===> "true"
|
|
2190
|
-
{{= 0 == 0 }}
|
|
2191
|
-
|
|
2192
|
-
**** EQ: "= 0 == 1" ===> "false"
|
|
2193
|
-
{{= 0 == 1 }}
|
|
2194
|
-
|
|
2195
|
-
**** EQ: "= 0 == 'string'" ===> "false"
|
|
2196
|
-
{{= 0 == 'string' }}
|
|
2197
|
-
|
|
2198
|
-
**** EQ: "= 0 == %formula_cond_eq_00%" ===> "true"
|
|
2199
|
-
{{= 0 == %formula_cond_eq_00% }}
|
|
2200
|
-
|
|
2201
|
-
**** EQ: "= 0 == %formula_cond_eq_01%" ===> "false"
|
|
2202
|
-
{{= 0 == %formula_cond_eq_01% }}
|
|
2203
|
-
|
|
2204
|
-
**** EQ: "= 0 == %formula_cond_eq_02%" ===> "true"
|
|
2205
|
-
{{= 0 == %formula_cond_eq_02% }}
|
|
2206
|
-
|
|
2207
|
-
**** EQ: "= 0 == %formula_cond_eq_03%" ===> "true"
|
|
2208
|
-
{{= 0 == %formula_cond_eq_03% }}
|
|
2209
|
-
|
|
2210
|
-
**** EQ: "= 0 == %formula_cond_eq_04%" ===> "false"
|
|
2211
|
-
{{= 0 == %formula_cond_eq_04% }}
|
|
2212
|
-
|
|
2213
|
-
**** EQ: "= 0 == %formula_cond_eq_05%" ===> "false"
|
|
2214
|
-
{{= 0 == %formula_cond_eq_05% }}
|
|
2215
|
-
|
|
2216
|
-
**** EQ: "= true == 0" ===> "false"
|
|
2217
|
-
{{= true == 0 }}
|
|
2218
|
-
|
|
2219
|
-
**** EQ: "= false == 0" ===> "true"
|
|
2220
|
-
{{= false == 0 }}
|
|
2221
|
-
|
|
2222
|
-
**** EQ: "= 0 == 0" ===> "true"
|
|
2223
|
-
{{= 0 == 0 }}
|
|
2224
|
-
|
|
2225
|
-
**** EQ: "= 1 == 0" ===> "false"
|
|
2226
|
-
{{= 1 == 0 }}
|
|
2227
|
-
|
|
2228
|
-
**** EQ: "= 'string' == 0" ===> "false"
|
|
2229
|
-
{{= 'string' == 0 }}
|
|
2230
|
-
|
|
2231
|
-
**** EQ: "= %formula_cond_eq_00% == 0" ===> "true"
|
|
2232
|
-
{{= %formula_cond_eq_00% == 0 }}
|
|
2233
|
-
|
|
2234
|
-
**** EQ: "= %formula_cond_eq_01% == 0" ===> "false"
|
|
2235
|
-
{{= %formula_cond_eq_01% == 0 }}
|
|
2236
|
-
|
|
2237
|
-
**** EQ: "= %formula_cond_eq_02% == 0" ===> "true"
|
|
2238
|
-
{{= %formula_cond_eq_02% == 0 }}
|
|
2239
|
-
|
|
2240
|
-
**** EQ: "= %formula_cond_eq_03% == 0" ===> "true"
|
|
2241
|
-
{{= %formula_cond_eq_03% == 0 }}
|
|
2242
|
-
|
|
2243
|
-
**** EQ: "= %formula_cond_eq_04% == 0" ===> "false"
|
|
2244
|
-
{{= %formula_cond_eq_04% == 0 }}
|
|
2245
|
-
|
|
2246
|
-
**** EQ: "= %formula_cond_eq_05% == 0" ===> "false"
|
|
2247
|
-
{{= %formula_cond_eq_05% == 0 }}
|
|
2248
|
-
|
|
2249
|
-
**** EQ: "= 1 == null" ===> "false"
|
|
2250
|
-
{{= 1 == null }}
|
|
2251
|
-
|
|
2252
|
-
**** EQ: "= 1 == true" ===> "true"
|
|
2253
|
-
{{= 1 == true }}
|
|
2254
|
-
|
|
2255
|
-
**** EQ: "= 1 == false" ===> "false"
|
|
2256
|
-
{{= 1 == false }}
|
|
2257
|
-
|
|
2258
|
-
**** EQ: "= 1 == 0" ===> "false"
|
|
2259
|
-
{{= 1 == 0 }}
|
|
2260
|
-
|
|
2261
|
-
**** EQ: "= 1 == 1" ===> "true"
|
|
2262
|
-
{{= 1 == 1 }}
|
|
2263
|
-
|
|
2264
|
-
**** EQ: "= 1 == 'string'" ===> "false"
|
|
2265
|
-
{{= 1 == 'string' }}
|
|
2266
|
-
|
|
2267
|
-
**** EQ: "= 1 == %formula_cond_eq_00%" ===> "false"
|
|
2268
|
-
{{= 1 == %formula_cond_eq_00% }}
|
|
2269
|
-
|
|
2270
|
-
**** EQ: "= 1 == %formula_cond_eq_01%" ===> "true"
|
|
2271
|
-
{{= 1 == %formula_cond_eq_01% }}
|
|
2272
|
-
|
|
2273
|
-
**** EQ: "= 1 == %formula_cond_eq_02%" ===> "false"
|
|
2274
|
-
{{= 1 == %formula_cond_eq_02% }}
|
|
2275
|
-
|
|
2276
|
-
**** EQ: "= 1 == %formula_cond_eq_03%" ===> "false"
|
|
2277
|
-
{{= 1 == %formula_cond_eq_03% }}
|
|
2278
|
-
|
|
2279
|
-
**** EQ: "= 1 == %formula_cond_eq_04%" ===> "true"
|
|
2280
|
-
{{= 1 == %formula_cond_eq_04% }}
|
|
2281
|
-
|
|
2282
|
-
**** EQ: "= 1 == %formula_cond_eq_05%" ===> "false"
|
|
2283
|
-
{{= 1 == %formula_cond_eq_05% }}
|
|
2284
|
-
|
|
2285
|
-
**** EQ: "= true == 1" ===> "true"
|
|
2286
|
-
{{= true == 1 }}
|
|
2287
|
-
|
|
2288
|
-
**** EQ: "= false == 1" ===> "false"
|
|
2289
|
-
{{= false == 1 }}
|
|
2290
|
-
|
|
2291
|
-
**** EQ: "= 0 == 1" ===> "false"
|
|
2292
|
-
{{= 0 == 1 }}
|
|
2293
|
-
|
|
2294
|
-
**** EQ: "= 1 == 1" ===> "true"
|
|
2295
|
-
{{= 1 == 1 }}
|
|
2296
|
-
|
|
2297
|
-
**** EQ: "= 'string' == 1" ===> "false"
|
|
2298
|
-
{{= 'string' == 1 }}
|
|
2299
|
-
|
|
2300
|
-
**** EQ: "= %formula_cond_eq_00% == 1" ===> "false"
|
|
2301
|
-
{{= %formula_cond_eq_00% == 1 }}
|
|
2302
|
-
|
|
2303
|
-
**** EQ: "= %formula_cond_eq_01% == 1" ===> "true"
|
|
2304
|
-
{{= %formula_cond_eq_01% == 1 }}
|
|
2305
|
-
|
|
2306
|
-
**** EQ: "= %formula_cond_eq_02% == 1" ===> "false"
|
|
2307
|
-
{{= %formula_cond_eq_02% == 1 }}
|
|
2308
|
-
|
|
2309
|
-
**** EQ: "= %formula_cond_eq_03% == 1" ===> "false"
|
|
2310
|
-
{{= %formula_cond_eq_03% == 1 }}
|
|
2311
|
-
|
|
2312
|
-
**** EQ: "= %formula_cond_eq_04% == 1" ===> "true"
|
|
2313
|
-
{{= %formula_cond_eq_04% == 1 }}
|
|
2314
|
-
|
|
2315
|
-
**** EQ: "= %formula_cond_eq_05% == 1" ===> "false"
|
|
2316
|
-
{{= %formula_cond_eq_05% == 1 }}
|
|
2317
|
-
|
|
2318
|
-
**** EQ: "= 'string' == null" ===> "false"
|
|
2319
|
-
{{= 'string' == null }}
|
|
2320
|
-
|
|
2321
|
-
**** EQ: "= 'string' == true" ===> "true"
|
|
2322
|
-
{{= 'string' == true }}
|
|
2323
|
-
|
|
2324
|
-
**** EQ: "= 'string' == false" ===> "false"
|
|
2325
|
-
{{= 'string' == false }}
|
|
2326
|
-
|
|
2327
|
-
**** EQ: "= 'string' == 0" ===> "false"
|
|
2328
|
-
{{= 'string' == 0 }}
|
|
2329
|
-
|
|
2330
|
-
**** EQ: "= 'string' == 1" ===> "false"
|
|
2331
|
-
{{= 'string' == 1 }}
|
|
2332
|
-
|
|
2333
|
-
**** EQ: "= 'string' == 'string'" ===> "true"
|
|
2334
|
-
{{= 'string' == 'string' }}
|
|
2335
|
-
|
|
2336
|
-
**** EQ: "= 'string' == %formula_cond_eq_00%" ===> "false"
|
|
2337
|
-
{{= 'string' == %formula_cond_eq_00% }}
|
|
2338
|
-
|
|
2339
|
-
**** EQ: "= 'string' == %formula_cond_eq_01%" ===> "true"
|
|
2340
|
-
{{= 'string' == %formula_cond_eq_01% }}
|
|
2341
|
-
|
|
2342
|
-
**** EQ: "= 'string' == %formula_cond_eq_02%" ===> "false"
|
|
2343
|
-
{{= 'string' == %formula_cond_eq_02% }}
|
|
2344
|
-
|
|
2345
|
-
**** EQ: "= 'string' == %formula_cond_eq_03%" ===> "false"
|
|
2346
|
-
{{= 'string' == %formula_cond_eq_03% }}
|
|
2347
|
-
|
|
2348
|
-
**** EQ: "= 'string' == %formula_cond_eq_04%" ===> "false"
|
|
2349
|
-
{{= 'string' == %formula_cond_eq_04% }}
|
|
2350
|
-
|
|
2351
|
-
**** EQ: "= 'string' == %formula_cond_eq_05%" ===> "true"
|
|
2352
|
-
{{= 'string' == %formula_cond_eq_05% }}
|
|
2353
|
-
|
|
2354
|
-
**** EQ: "= true == 'string'" ===> "true"
|
|
2355
|
-
{{= true == 'string' }}
|
|
2356
|
-
|
|
2357
|
-
**** EQ: "= false == 'string'" ===> "false"
|
|
2358
|
-
{{= false == 'string' }}
|
|
2359
|
-
|
|
2360
|
-
**** EQ: "= 0 == 'string'" ===> "false"
|
|
2361
|
-
{{= 0 == 'string' }}
|
|
2362
|
-
|
|
2363
|
-
**** EQ: "= 1 == 'string'" ===> "false"
|
|
2364
|
-
{{= 1 == 'string' }}
|
|
2365
|
-
|
|
2366
|
-
**** EQ: "= 'string' == 'string'" ===> "true"
|
|
2367
|
-
{{= 'string' == 'string' }}
|
|
2368
|
-
|
|
2369
|
-
**** EQ: "= %formula_cond_eq_00% == 'string'" ===> "false"
|
|
2370
|
-
{{= %formula_cond_eq_00% == 'string' }}
|
|
2371
|
-
|
|
2372
|
-
**** EQ: "= %formula_cond_eq_01% == 'string'" ===> "true"
|
|
2373
|
-
{{= %formula_cond_eq_01% == 'string' }}
|
|
2374
|
-
|
|
2375
|
-
**** EQ: "= %formula_cond_eq_02% == 'string'" ===> "false"
|
|
2376
|
-
{{= %formula_cond_eq_02% == 'string' }}
|
|
2377
|
-
|
|
2378
|
-
**** EQ: "= %formula_cond_eq_03% == 'string'" ===> "false"
|
|
2379
|
-
{{= %formula_cond_eq_03% == 'string' }}
|
|
2380
|
-
|
|
2381
|
-
**** EQ: "= %formula_cond_eq_04% == 'string'" ===> "false"
|
|
2382
|
-
{{= %formula_cond_eq_04% == 'string' }}
|
|
2383
|
-
|
|
2384
|
-
**** EQ: "= %formula_cond_eq_05% == 'string'" ===> "true"
|
|
2385
|
-
{{= %formula_cond_eq_05% == 'string' }}
|
|
2386
|
-
|
|
2387
|
-
##
|
|
2388
|
-
## Test > Formula > Condition > NOTEQ
|
|
2389
|
-
##
|
|
2390
|
-
**** NOTEQ: "= null != null" ===> "false"
|
|
2391
|
-
{{= null != null }}
|
|
2392
|
-
|
|
2393
|
-
**** NOTEQ: "= null != true" ===> "true"
|
|
2394
|
-
{{= null != true }}
|
|
2395
|
-
|
|
2396
|
-
**** NOTEQ: "= null != false" ===> "false"
|
|
2397
|
-
{{= null != false }}
|
|
2398
|
-
|
|
2399
|
-
**** NOTEQ: "= null != 0" ===> "false"
|
|
2400
|
-
{{= null != 0 }}
|
|
2401
|
-
|
|
2402
|
-
**** NOTEQ: "= null != 1" ===> "true"
|
|
2403
|
-
{{= null != 1 }}
|
|
2404
|
-
|
|
2405
|
-
**** NOTEQ: "= null != 'string'" ===> "true"
|
|
2406
|
-
{{= null != 'string' }}
|
|
2407
|
-
|
|
2408
|
-
**** NOTEQ: "= null != %formula_cond_noteq_00%" ===> "false"
|
|
2409
|
-
{{= null != %formula_cond_noteq_00% }}
|
|
2410
|
-
|
|
2411
|
-
**** NOTEQ: "= null != %formula_cond_noteq_01%" ===> "true"
|
|
2412
|
-
{{= null != %formula_cond_noteq_01% }}
|
|
2413
|
-
|
|
2414
|
-
**** NOTEQ: "= null != %formula_cond_noteq_02%" ===> "false"
|
|
2415
|
-
{{= null != %formula_cond_noteq_02% }}
|
|
2416
|
-
|
|
2417
|
-
**** NOTEQ: "= null != %formula_cond_noteq_03%" ===> "false"
|
|
2418
|
-
{{= null != %formula_cond_noteq_03% }}
|
|
2419
|
-
|
|
2420
|
-
**** NOTEQ: "= null != %formula_cond_noteq_04%" ===> "true"
|
|
2421
|
-
{{= null != %formula_cond_noteq_04% }}
|
|
2422
|
-
|
|
2423
|
-
**** NOTEQ: "= null != %formula_cond_noteq_05%" ===> "true"
|
|
2424
|
-
{{= null != %formula_cond_noteq_05% }}
|
|
2425
|
-
|
|
2426
|
-
**** NOTEQ: "= true != null" ===> "true"
|
|
2427
|
-
{{= true != null }}
|
|
2428
|
-
|
|
2429
|
-
**** NOTEQ: "= false != null" ===> "false"
|
|
2430
|
-
{{= false != null }}
|
|
2431
|
-
|
|
2432
|
-
**** NOTEQ: "= 0 != null" ===> "false"
|
|
2433
|
-
{{= 0 != null }}
|
|
2434
|
-
|
|
2435
|
-
**** NOTEQ: "= 1 != null" ===> "true"
|
|
2436
|
-
{{= 1 != null }}
|
|
2437
|
-
|
|
2438
|
-
**** NOTEQ: "= 'string' != null" ===> "true"
|
|
2439
|
-
{{= 'string' != null }}
|
|
2440
|
-
|
|
2441
|
-
**** NOTEQ: "= %formula_cond_noteq_00% != null" ===> "false"
|
|
2442
|
-
{{= %formula_cond_noteq_00% != null }}
|
|
2443
|
-
|
|
2444
|
-
**** NOTEQ: "= %formula_cond_noteq_01% != null" ===> "true"
|
|
2445
|
-
{{= %formula_cond_noteq_01% != null }}
|
|
2446
|
-
|
|
2447
|
-
**** NOTEQ: "= %formula_cond_noteq_02% != null" ===> "false"
|
|
2448
|
-
{{= %formula_cond_noteq_02% != null }}
|
|
2449
|
-
|
|
2450
|
-
**** NOTEQ: "= %formula_cond_noteq_03% != null" ===> "false"
|
|
2451
|
-
{{= %formula_cond_noteq_03% != null }}
|
|
2452
|
-
|
|
2453
|
-
**** NOTEQ: "= %formula_cond_noteq_04% != null" ===> "true"
|
|
2454
|
-
{{= %formula_cond_noteq_04% != null }}
|
|
2455
|
-
|
|
2456
|
-
**** NOTEQ: "= %formula_cond_noteq_05% != null" ===> "true"
|
|
2457
|
-
{{= %formula_cond_noteq_05% != null }}
|
|
2458
|
-
|
|
2459
|
-
**** NOTEQ: "= true != null" ===> "true"
|
|
2460
|
-
{{= true != null }}
|
|
2461
|
-
|
|
2462
|
-
**** NOTEQ: "= true != true" ===> "false"
|
|
2463
|
-
{{= true != true }}
|
|
2464
|
-
|
|
2465
|
-
**** NOTEQ: "= true != false" ===> "true"
|
|
2466
|
-
{{= true != false }}
|
|
2467
|
-
|
|
2468
|
-
**** NOTEQ: "= true != 0" ===> "true"
|
|
2469
|
-
{{= true != 0 }}
|
|
2470
|
-
|
|
2471
|
-
**** NOTEQ: "= true != 1" ===> "false"
|
|
2472
|
-
{{= true != 1 }}
|
|
2473
|
-
|
|
2474
|
-
**** NOTEQ: "= true != 'string'" ===> "false"
|
|
2475
|
-
{{= true != 'string' }}
|
|
2476
|
-
|
|
2477
|
-
**** NOTEQ: "= true != %formula_cond_noteq_00%" ===> "true"
|
|
2478
|
-
{{= true != %formula_cond_noteq_00% }}
|
|
2479
|
-
|
|
2480
|
-
**** NOTEQ: "= true != %formula_cond_noteq_01%" ===> "false"
|
|
2481
|
-
{{= true != %formula_cond_noteq_01% }}
|
|
2482
|
-
|
|
2483
|
-
**** NOTEQ: "= true != %formula_cond_noteq_02%" ===> "true"
|
|
2484
|
-
{{= true != %formula_cond_noteq_02% }}
|
|
2485
|
-
|
|
2486
|
-
**** NOTEQ: "= true != %formula_cond_noteq_03%" ===> "true"
|
|
2487
|
-
{{= true != %formula_cond_noteq_03% }}
|
|
2488
|
-
|
|
2489
|
-
**** NOTEQ: "= true != %formula_cond_noteq_04%" ===> "false"
|
|
2490
|
-
{{= true != %formula_cond_noteq_04% }}
|
|
2491
|
-
|
|
2492
|
-
**** NOTEQ: "= true != %formula_cond_noteq_05%" ===> "false"
|
|
2493
|
-
{{= true != %formula_cond_noteq_05% }}
|
|
2494
|
-
|
|
2495
|
-
**** NOTEQ: "= true != true" ===> "false"
|
|
2496
|
-
{{= true != true }}
|
|
2497
|
-
|
|
2498
|
-
**** NOTEQ: "= false != true" ===> "true"
|
|
2499
|
-
{{= false != true }}
|
|
2500
|
-
|
|
2501
|
-
**** NOTEQ: "= 0 != true" ===> "true"
|
|
2502
|
-
{{= 0 != true }}
|
|
2503
|
-
|
|
2504
|
-
**** NOTEQ: "= 1 != true" ===> "false"
|
|
2505
|
-
{{= 1 != true }}
|
|
2506
|
-
|
|
2507
|
-
**** NOTEQ: "= 'string' != true" ===> "false"
|
|
2508
|
-
{{= 'string' != true }}
|
|
2509
|
-
|
|
2510
|
-
**** NOTEQ: "= %formula_cond_noteq_00% != true" ===> "true"
|
|
2511
|
-
{{= %formula_cond_noteq_00% != true }}
|
|
2512
|
-
|
|
2513
|
-
**** NOTEQ: "= %formula_cond_noteq_01% != true" ===> "false"
|
|
2514
|
-
{{= %formula_cond_noteq_01% != true }}
|
|
2515
|
-
|
|
2516
|
-
**** NOTEQ: "= %formula_cond_noteq_02% != true" ===> "true"
|
|
2517
|
-
{{= %formula_cond_noteq_02% != true }}
|
|
2518
|
-
|
|
2519
|
-
**** NOTEQ: "= %formula_cond_noteq_03% != true" ===> "true"
|
|
2520
|
-
{{= %formula_cond_noteq_03% != true }}
|
|
2521
|
-
|
|
2522
|
-
**** NOTEQ: "= %formula_cond_noteq_04% != true" ===> "false"
|
|
2523
|
-
{{= %formula_cond_noteq_04% != true }}
|
|
2524
|
-
|
|
2525
|
-
**** NOTEQ: "= %formula_cond_noteq_05% != true" ===> "false"
|
|
2526
|
-
{{= %formula_cond_noteq_05% != true }}
|
|
2527
|
-
|
|
2528
|
-
**** NOTEQ: "= false != null" ===> "false"
|
|
2529
|
-
{{= false != null }}
|
|
2530
|
-
|
|
2531
|
-
**** NOTEQ: "= false != true" ===> "true"
|
|
2532
|
-
{{= false != true }}
|
|
2533
|
-
|
|
2534
|
-
**** NOTEQ: "= false != false" ===> "false"
|
|
2535
|
-
{{= false != false }}
|
|
2536
|
-
|
|
2537
|
-
**** NOTEQ: "= false != 0" ===> "false"
|
|
2538
|
-
{{= false != 0 }}
|
|
2539
|
-
|
|
2540
|
-
**** NOTEQ: "= false != 1" ===> "true"
|
|
2541
|
-
{{= false != 1 }}
|
|
2542
|
-
|
|
2543
|
-
**** NOTEQ: "= false != 'string'" ===> "true"
|
|
2544
|
-
{{= false != 'string' }}
|
|
2545
|
-
|
|
2546
|
-
**** NOTEQ: "= false != %formula_cond_noteq_00%" ===> "false"
|
|
2547
|
-
{{= false != %formula_cond_noteq_00% }}
|
|
2548
|
-
|
|
2549
|
-
**** NOTEQ: "= false != %formula_cond_noteq_01%" ===> "true"
|
|
2550
|
-
{{= false != %formula_cond_noteq_01% }}
|
|
2551
|
-
|
|
2552
|
-
**** NOTEQ: "= false != %formula_cond_noteq_02%" ===> "false"
|
|
2553
|
-
{{= false != %formula_cond_noteq_02% }}
|
|
2554
|
-
|
|
2555
|
-
**** NOTEQ: "= false != %formula_cond_noteq_03%" ===> "false"
|
|
2556
|
-
{{= false != %formula_cond_noteq_03% }}
|
|
2557
|
-
|
|
2558
|
-
**** NOTEQ: "= false != %formula_cond_noteq_04%" ===> "true"
|
|
2559
|
-
{{= false != %formula_cond_noteq_04% }}
|
|
2560
|
-
|
|
2561
|
-
**** NOTEQ: "= false != %formula_cond_noteq_05%" ===> "true"
|
|
2562
|
-
{{= false != %formula_cond_noteq_05% }}
|
|
2563
|
-
|
|
2564
|
-
**** NOTEQ: "= true != false" ===> "true"
|
|
2565
|
-
{{= true != false }}
|
|
2566
|
-
|
|
2567
|
-
**** NOTEQ: "= false != false" ===> "false"
|
|
2568
|
-
{{= false != false }}
|
|
2569
|
-
|
|
2570
|
-
**** NOTEQ: "= 0 != false" ===> "false"
|
|
2571
|
-
{{= 0 != false }}
|
|
2572
|
-
|
|
2573
|
-
**** NOTEQ: "= 1 != false" ===> "true"
|
|
2574
|
-
{{= 1 != false }}
|
|
2575
|
-
|
|
2576
|
-
**** NOTEQ: "= 'string' != false" ===> "true"
|
|
2577
|
-
{{= 'string' != false }}
|
|
2578
|
-
|
|
2579
|
-
**** NOTEQ: "= %formula_cond_noteq_00% != false" ===> "false"
|
|
2580
|
-
{{= %formula_cond_noteq_00% != false }}
|
|
2581
|
-
|
|
2582
|
-
**** NOTEQ: "= %formula_cond_noteq_01% != false" ===> "true"
|
|
2583
|
-
{{= %formula_cond_noteq_01% != false }}
|
|
2584
|
-
|
|
2585
|
-
**** NOTEQ: "= %formula_cond_noteq_02% != false" ===> "false"
|
|
2586
|
-
{{= %formula_cond_noteq_02% != false }}
|
|
2587
|
-
|
|
2588
|
-
**** NOTEQ: "= %formula_cond_noteq_03% != false" ===> "false"
|
|
2589
|
-
{{= %formula_cond_noteq_03% != false }}
|
|
2590
|
-
|
|
2591
|
-
**** NOTEQ: "= %formula_cond_noteq_04% != false" ===> "true"
|
|
2592
|
-
{{= %formula_cond_noteq_04% != false }}
|
|
2593
|
-
|
|
2594
|
-
**** NOTEQ: "= %formula_cond_noteq_05% != false" ===> "true"
|
|
2595
|
-
{{= %formula_cond_noteq_05% != false }}
|
|
2596
|
-
|
|
2597
|
-
**** NOTEQ: "= 0 != null" ===> "false"
|
|
2598
|
-
{{= 0 != null }}
|
|
2599
|
-
|
|
2600
|
-
**** NOTEQ: "= 0 != true" ===> "true"
|
|
2601
|
-
{{= 0 != true }}
|
|
2602
|
-
|
|
2603
|
-
**** NOTEQ: "= 0 != false" ===> "false"
|
|
2604
|
-
{{= 0 != false }}
|
|
2605
|
-
|
|
2606
|
-
**** NOTEQ: "= 0 != 0" ===> "false"
|
|
2607
|
-
{{= 0 != 0 }}
|
|
2608
|
-
|
|
2609
|
-
**** NOTEQ: "= 0 != 1" ===> "true"
|
|
2610
|
-
{{= 0 != 1 }}
|
|
2611
|
-
|
|
2612
|
-
**** NOTEQ: "= 0 != 'string'" ===> "true"
|
|
2613
|
-
{{= 0 != 'string' }}
|
|
2614
|
-
|
|
2615
|
-
**** NOTEQ: "= 0 != %formula_cond_noteq_00%" ===> "false"
|
|
2616
|
-
{{= 0 != %formula_cond_noteq_00% }}
|
|
2617
|
-
|
|
2618
|
-
**** NOTEQ: "= 0 != %formula_cond_noteq_01%" ===> "true"
|
|
2619
|
-
{{= 0 != %formula_cond_noteq_01% }}
|
|
2620
|
-
|
|
2621
|
-
**** NOTEQ: "= 0 != %formula_cond_noteq_02%" ===> "false"
|
|
2622
|
-
{{= 0 != %formula_cond_noteq_02% }}
|
|
2623
|
-
|
|
2624
|
-
**** NOTEQ: "= 0 != %formula_cond_noteq_03%" ===> "false"
|
|
2625
|
-
{{= 0 != %formula_cond_noteq_03% }}
|
|
2626
|
-
|
|
2627
|
-
**** NOTEQ: "= 0 != %formula_cond_noteq_04%" ===> "true"
|
|
2628
|
-
{{= 0 != %formula_cond_noteq_04% }}
|
|
2629
|
-
|
|
2630
|
-
**** NOTEQ: "= 0 != %formula_cond_noteq_05%" ===> "true"
|
|
2631
|
-
{{= 0 != %formula_cond_noteq_05% }}
|
|
2632
|
-
|
|
2633
|
-
**** NOTEQ: "= true != 0" ===> "true"
|
|
2634
|
-
{{= true != 0 }}
|
|
2635
|
-
|
|
2636
|
-
**** NOTEQ: "= false != 0" ===> "false"
|
|
2637
|
-
{{= false != 0 }}
|
|
2638
|
-
|
|
2639
|
-
**** NOTEQ: "= 0 != 0" ===> "false"
|
|
2640
|
-
{{= 0 != 0 }}
|
|
2641
|
-
|
|
2642
|
-
**** NOTEQ: "= 1 != 0" ===> "true"
|
|
2643
|
-
{{= 1 != 0 }}
|
|
2644
|
-
|
|
2645
|
-
**** NOTEQ: "= 'string' != 0" ===> "true"
|
|
2646
|
-
{{= 'string' != 0 }}
|
|
2647
|
-
|
|
2648
|
-
**** NOTEQ: "= %formula_cond_noteq_00% != 0" ===> "false"
|
|
2649
|
-
{{= %formula_cond_noteq_00% != 0 }}
|
|
2650
|
-
|
|
2651
|
-
**** NOTEQ: "= %formula_cond_noteq_01% != 0" ===> "true"
|
|
2652
|
-
{{= %formula_cond_noteq_01% != 0 }}
|
|
2653
|
-
|
|
2654
|
-
**** NOTEQ: "= %formula_cond_noteq_02% != 0" ===> "false"
|
|
2655
|
-
{{= %formula_cond_noteq_02% != 0 }}
|
|
2656
|
-
|
|
2657
|
-
**** NOTEQ: "= %formula_cond_noteq_03% != 0" ===> "false"
|
|
2658
|
-
{{= %formula_cond_noteq_03% != 0 }}
|
|
2659
|
-
|
|
2660
|
-
**** NOTEQ: "= %formula_cond_noteq_04% != 0" ===> "true"
|
|
2661
|
-
{{= %formula_cond_noteq_04% != 0 }}
|
|
2662
|
-
|
|
2663
|
-
**** NOTEQ: "= %formula_cond_noteq_05% != 0" ===> "true"
|
|
2664
|
-
{{= %formula_cond_noteq_05% != 0 }}
|
|
2665
|
-
|
|
2666
|
-
**** NOTEQ: "= 1 != null" ===> "true"
|
|
2667
|
-
{{= 1 != null }}
|
|
2668
|
-
|
|
2669
|
-
**** NOTEQ: "= 1 != true" ===> "false"
|
|
2670
|
-
{{= 1 != true }}
|
|
2671
|
-
|
|
2672
|
-
**** NOTEQ: "= 1 != false" ===> "true"
|
|
2673
|
-
{{= 1 != false }}
|
|
2674
|
-
|
|
2675
|
-
**** NOTEQ: "= 1 != 0" ===> "true"
|
|
2676
|
-
{{= 1 != 0 }}
|
|
2677
|
-
|
|
2678
|
-
**** NOTEQ: "= 1 != 1" ===> "false"
|
|
2679
|
-
{{= 1 != 1 }}
|
|
2680
|
-
|
|
2681
|
-
**** NOTEQ: "= 1 != 'string'" ===> "true"
|
|
2682
|
-
{{= 1 != 'string' }}
|
|
2683
|
-
|
|
2684
|
-
**** NOTEQ: "= 1 != %formula_cond_noteq_00%" ===> "true"
|
|
2685
|
-
{{= 1 != %formula_cond_noteq_00% }}
|
|
2686
|
-
|
|
2687
|
-
**** NOTEQ: "= 1 != %formula_cond_noteq_01%" ===> "false"
|
|
2688
|
-
{{= 1 != %formula_cond_noteq_01% }}
|
|
2689
|
-
|
|
2690
|
-
**** NOTEQ: "= 1 != %formula_cond_noteq_02%" ===> "true"
|
|
2691
|
-
{{= 1 != %formula_cond_noteq_02% }}
|
|
2692
|
-
|
|
2693
|
-
**** NOTEQ: "= 1 != %formula_cond_noteq_03%" ===> "true"
|
|
2694
|
-
{{= 1 != %formula_cond_noteq_03% }}
|
|
2695
|
-
|
|
2696
|
-
**** NOTEQ: "= 1 != %formula_cond_noteq_04%" ===> "false"
|
|
2697
|
-
{{= 1 != %formula_cond_noteq_04% }}
|
|
2698
|
-
|
|
2699
|
-
**** NOTEQ: "= 1 != %formula_cond_noteq_05%" ===> "true"
|
|
2700
|
-
{{= 1 != %formula_cond_noteq_05% }}
|
|
2701
|
-
|
|
2702
|
-
**** NOTEQ: "= true != 1" ===> "false"
|
|
2703
|
-
{{= true != 1 }}
|
|
2704
|
-
|
|
2705
|
-
**** NOTEQ: "= false != 1" ===> "true"
|
|
2706
|
-
{{= false != 1 }}
|
|
2707
|
-
|
|
2708
|
-
**** NOTEQ: "= 0 != 1" ===> "true"
|
|
2709
|
-
{{= 0 != 1 }}
|
|
2710
|
-
|
|
2711
|
-
**** NOTEQ: "= 1 != 1" ===> "false"
|
|
2712
|
-
{{= 1 != 1 }}
|
|
2713
|
-
|
|
2714
|
-
**** NOTEQ: "= 'string' != 1" ===> "true"
|
|
2715
|
-
{{= 'string' != 1 }}
|
|
2716
|
-
|
|
2717
|
-
**** NOTEQ: "= %formula_cond_noteq_00% != 1" ===> "true"
|
|
2718
|
-
{{= %formula_cond_noteq_00% != 1 }}
|
|
2719
|
-
|
|
2720
|
-
**** NOTEQ: "= %formula_cond_noteq_01% != 1" ===> "false"
|
|
2721
|
-
{{= %formula_cond_noteq_01% != 1 }}
|
|
2722
|
-
|
|
2723
|
-
**** NOTEQ: "= %formula_cond_noteq_02% != 1" ===> "true"
|
|
2724
|
-
{{= %formula_cond_noteq_02% != 1 }}
|
|
2725
|
-
|
|
2726
|
-
**** NOTEQ: "= %formula_cond_noteq_03% != 1" ===> "true"
|
|
2727
|
-
{{= %formula_cond_noteq_03% != 1 }}
|
|
2728
|
-
|
|
2729
|
-
**** NOTEQ: "= %formula_cond_noteq_04% != 1" ===> "false"
|
|
2730
|
-
{{= %formula_cond_noteq_04% != 1 }}
|
|
2731
|
-
|
|
2732
|
-
**** NOTEQ: "= %formula_cond_noteq_05% != 1" ===> "true"
|
|
2733
|
-
{{= %formula_cond_noteq_05% != 1 }}
|
|
2734
|
-
|
|
2735
|
-
**** NOTEQ: "= 'string' != null" ===> "true"
|
|
2736
|
-
{{= 'string' != null }}
|
|
2737
|
-
|
|
2738
|
-
**** NOTEQ: "= 'string' != true" ===> "false"
|
|
2739
|
-
{{= 'string' != true }}
|
|
2740
|
-
|
|
2741
|
-
**** NOTEQ: "= 'string' != false" ===> "true"
|
|
2742
|
-
{{= 'string' != false }}
|
|
2743
|
-
|
|
2744
|
-
**** NOTEQ: "= 'string' != 0" ===> "true"
|
|
2745
|
-
{{= 'string' != 0 }}
|
|
2746
|
-
|
|
2747
|
-
**** NOTEQ: "= 'string' != 1" ===> "true"
|
|
2748
|
-
{{= 'string' != 1 }}
|
|
2749
|
-
|
|
2750
|
-
**** NOTEQ: "= 'string' != 'string'" ===> "false"
|
|
2751
|
-
{{= 'string' != 'string' }}
|
|
2752
|
-
|
|
2753
|
-
**** NOTEQ: "= 'string' != %formula_cond_noteq_00%" ===> "true"
|
|
2754
|
-
{{= 'string' != %formula_cond_noteq_00% }}
|
|
2755
|
-
|
|
2756
|
-
**** NOTEQ: "= 'string' != %formula_cond_noteq_01%" ===> "false"
|
|
2757
|
-
{{= 'string' != %formula_cond_noteq_01% }}
|
|
2758
|
-
|
|
2759
|
-
**** NOTEQ: "= 'string' != %formula_cond_noteq_02%" ===> "true"
|
|
2760
|
-
{{= 'string' != %formula_cond_noteq_02% }}
|
|
2761
|
-
|
|
2762
|
-
**** NOTEQ: "= 'string' != %formula_cond_noteq_03%" ===> "true"
|
|
2763
|
-
{{= 'string' != %formula_cond_noteq_03% }}
|
|
2764
|
-
|
|
2765
|
-
**** NOTEQ: "= 'string' != %formula_cond_noteq_04%" ===> "true"
|
|
2766
|
-
{{= 'string' != %formula_cond_noteq_04% }}
|
|
2767
|
-
|
|
2768
|
-
**** NOTEQ: "= 'string' != %formula_cond_noteq_05%" ===> "false"
|
|
2769
|
-
{{= 'string' != %formula_cond_noteq_05% }}
|
|
2770
|
-
|
|
2771
|
-
**** NOTEQ: "= true != 'string'" ===> "false"
|
|
2772
|
-
{{= true != 'string' }}
|
|
2773
|
-
|
|
2774
|
-
**** NOTEQ: "= false != 'string'" ===> "true"
|
|
2775
|
-
{{= false != 'string' }}
|
|
2776
|
-
|
|
2777
|
-
**** NOTEQ: "= 0 != 'string'" ===> "true"
|
|
2778
|
-
{{= 0 != 'string' }}
|
|
2779
|
-
|
|
2780
|
-
**** NOTEQ: "= 1 != 'string'" ===> "true"
|
|
2781
|
-
{{= 1 != 'string' }}
|
|
2782
|
-
|
|
2783
|
-
**** NOTEQ: "= 'string' != 'string'" ===> "false"
|
|
2784
|
-
{{= 'string' != 'string' }}
|
|
2785
|
-
|
|
2786
|
-
**** NOTEQ: "= %formula_cond_noteq_00% != 'string'" ===> "true"
|
|
2787
|
-
{{= %formula_cond_noteq_00% != 'string' }}
|
|
2788
|
-
|
|
2789
|
-
**** NOTEQ: "= %formula_cond_noteq_01% != 'string'" ===> "false"
|
|
2790
|
-
{{= %formula_cond_noteq_01% != 'string' }}
|
|
2791
|
-
|
|
2792
|
-
**** NOTEQ: "= %formula_cond_noteq_02% != 'string'" ===> "true"
|
|
2793
|
-
{{= %formula_cond_noteq_02% != 'string' }}
|
|
2794
|
-
|
|
2795
|
-
**** NOTEQ: "= %formula_cond_noteq_03% != 'string'" ===> "true"
|
|
2796
|
-
{{= %formula_cond_noteq_03% != 'string' }}
|
|
2797
|
-
|
|
2798
|
-
**** NOTEQ: "= %formula_cond_noteq_04% != 'string'" ===> "true"
|
|
2799
|
-
{{= %formula_cond_noteq_04% != 'string' }}
|
|
2800
|
-
|
|
2801
|
-
**** NOTEQ: "= %formula_cond_noteq_05% != 'string'" ===> "false"
|
|
2802
|
-
{{= %formula_cond_noteq_05% != 'string' }}
|
|
2803
|
-
|
|
2804
|
-
############################################################
|
|
2805
|
-
#### Formula : Syntax
|
|
2806
|
-
############################################################
|
|
2807
|
-
##
|
|
2808
|
-
## Test > Formula > Syntax > IF/ELIF/ELSE/ENDIF
|
|
2809
|
-
##
|
|
2810
|
-
**** IF/ELIF/ELSE/ENDIF "if null"
|
|
2811
|
-
**** "elif false"
|
|
2812
|
-
**** "endif"
|
|
2813
|
-
**** ===> ""
|
|
2814
|
-
{{ if null }}
|
|
2815
|
-
condition true in if statement, thus come here.
|
|
2816
|
-
{{ elif false }}
|
|
2817
|
-
condition false in elif statement, thus not come here.
|
|
2818
|
-
{{ endif }}
|
|
2819
|
-
|
|
2820
|
-
**** IF/ELIF/ELSE/ENDIF "if true"
|
|
2821
|
-
**** "elif false"
|
|
2822
|
-
**** "elif true"
|
|
2823
|
-
**** "else"
|
|
2824
|
-
**** "endif"
|
|
2825
|
-
**** ===> "condition true in if statement, thus come here."
|
|
2826
|
-
{{ if true }}
|
|
2827
|
-
condition true in if statement, thus come here.
|
|
2828
|
-
{{ elif false }}
|
|
2829
|
-
condition false in elif statement, thus not come here.
|
|
2830
|
-
{{ elif true }}
|
|
2831
|
-
condition true in elif statement, but not come here.
|
|
2832
|
-
{{ else }}
|
|
2833
|
-
in else statement, thus not come here.
|
|
2834
|
-
{{ endif }}
|
|
2835
|
-
|
|
2836
|
-
**** IF/ELIF/ELSE/ENDIF "if null"
|
|
2837
|
-
**** "elif false"
|
|
2838
|
-
**** "elif true"
|
|
2839
|
-
**** "else"
|
|
2840
|
-
**** "endif"
|
|
2841
|
-
**** ===> "condition true in elif statement, thus come here."
|
|
2842
|
-
{{ if null }}
|
|
2843
|
-
condition false in if statement, thus not come here.
|
|
2844
|
-
{{ elif false }}
|
|
2845
|
-
condition false in elif statement, thus not come here.
|
|
2846
|
-
{{ elif true }}
|
|
2847
|
-
condition true in elif statement, thus come here.
|
|
2848
|
-
{{ else }}
|
|
2849
|
-
in else statement, thus not come here.
|
|
2850
|
-
{{ endif }}
|
|
2851
|
-
|
|
2852
|
-
**** IF/ELIF/ELSE/ENDIF "if %formula_syntax_if_00%(null)"
|
|
2853
|
-
**** "else"
|
|
2854
|
-
**** "endif"
|
|
2855
|
-
**** ===> "in else statement, thus come here."
|
|
2856
|
-
{{ if %formula_syntax_if_00% }}
|
|
2857
|
-
condition false in if statement, thus not come here.
|
|
2858
|
-
{{ else }}
|
|
2859
|
-
in else statement, thus come here.
|
|
2860
|
-
{{ endif }}
|
|
2861
|
-
|
|
2862
|
-
**** IF/ELIF/ELSE/ENDIF "if %formula_syntax_if_01%(true)"
|
|
2863
|
-
**** "else"
|
|
2864
|
-
**** "endif"
|
|
2865
|
-
**** ===> "condition true in if statement, thus come here."
|
|
2866
|
-
{{ if %formula_syntax_if_01% }}
|
|
2867
|
-
condition true in if statement, thus come here.
|
|
2868
|
-
{{ else }}
|
|
2869
|
-
in else statement, thus not come here.
|
|
2870
|
-
{{ endif }}
|
|
2871
|
-
|
|
2872
|
-
**** IF/ELIF/ELSE/ENDIF "if %formula_syntax_if_02%(false)"
|
|
2873
|
-
**** "else"
|
|
2874
|
-
**** "endif"
|
|
2875
|
-
**** ===> "in else statement, thus come here."
|
|
2876
|
-
{{ if %formula_syntax_if_02% }}
|
|
2877
|
-
condition false in if statement, thus not come here.
|
|
2878
|
-
{{ else }}
|
|
2879
|
-
in else statement, thus come here.
|
|
2880
|
-
{{ endif }}
|
|
2881
|
-
|
|
2882
|
-
**** IF/ELIF/ELSE/ENDIF "if %formula_syntax_if_03%(0)"
|
|
2883
|
-
**** "else"
|
|
2884
|
-
**** "endif"
|
|
2885
|
-
**** ===> "in else statement, thus come here."
|
|
2886
|
-
{{ if %formula_syntax_if_03% }}
|
|
2887
|
-
condition false in if statement, thus not come here.
|
|
2888
|
-
{{ else }}
|
|
2889
|
-
in else statement, thus come here.
|
|
2890
|
-
{{ endif }}
|
|
2891
|
-
|
|
2892
|
-
**** IF/ELIF/ELSE/ENDIF "if %formula_syntax_if_04%(1)"
|
|
2893
|
-
**** "else"
|
|
2894
|
-
**** "endif"
|
|
2895
|
-
**** ===> "condition true in if statement, thus come here."
|
|
2896
|
-
{{ if %formula_syntax_if_04% }}
|
|
2897
|
-
condition true in if statement, thus come here.
|
|
2898
|
-
{{ else }}
|
|
2899
|
-
in else statement, thus not come here.
|
|
2900
|
-
{{ endif }}
|
|
2901
|
-
|
|
2902
|
-
**** IF/ELIF/ELSE/ENDIF "if %formula_syntax_if_05%('string')"
|
|
2903
|
-
**** "else"
|
|
2904
|
-
**** "endif"
|
|
2905
|
-
**** ===> "condition true in if statement, thus come here."
|
|
2906
|
-
{{ if %formula_syntax_if_05% }}
|
|
2907
|
-
condition true in if statement, thus come here.
|
|
2908
|
-
{{ else }}
|
|
2909
|
-
in else statement, thus not come here.
|
|
2910
|
-
{{ endif }}
|
|
2911
|
-
|
|
2912
|
-
**** IF/ELIF/ELSE/ENDIF "if null == %formula_syntax_if_00%(null)"
|
|
2913
|
-
**** "else"
|
|
2914
|
-
**** "endif"
|
|
2915
|
-
**** ===> "condition true in if statement, thus come here."
|
|
2916
|
-
{{ if null == %formula_syntax_if_00% }}
|
|
2917
|
-
condition true in if statement, thus come here.
|
|
2918
|
-
{{ else }}
|
|
2919
|
-
in else statement, thus not come here.
|
|
2920
|
-
{{ endif }}
|
|
2921
|
-
|
|
2922
|
-
**** IF/ELIF/ELSE/ENDIF "if true == %formula_syntax_if_01%(true)"
|
|
2923
|
-
**** "else"
|
|
2924
|
-
**** "endif"
|
|
2925
|
-
**** ===> "condition true in if statement, thus come here."
|
|
2926
|
-
{{ if true == %formula_syntax_if_01% }}
|
|
2927
|
-
condition true in if statement, thus come here.
|
|
2928
|
-
{{ else }}
|
|
2929
|
-
in else statement, thus not come here.
|
|
2930
|
-
{{ endif }}
|
|
2931
|
-
|
|
2932
|
-
**** IF/ELIF/ELSE/ENDIF "if false == %formula_syntax_if_02%(false)"
|
|
2933
|
-
**** "else"
|
|
2934
|
-
**** "endif"
|
|
2935
|
-
**** ===> "condition true in if statement, thus come here."
|
|
2936
|
-
{{ if false == %formula_syntax_if_02% }}
|
|
2937
|
-
condition true in if statement, thus come here.
|
|
2938
|
-
{{ else }}
|
|
2939
|
-
in else statement, thus not come here.
|
|
2940
|
-
{{ endif }}
|
|
2941
|
-
|
|
2942
|
-
**** IF/ELIF/ELSE/ENDIF "if 0 == %formula_syntax_if_03%(0)"
|
|
2943
|
-
**** "else"
|
|
2944
|
-
**** "endif"
|
|
2945
|
-
**** ===> "condition true in if statement, thus come here."
|
|
2946
|
-
{{ if 0 == %formula_syntax_if_03% }}
|
|
2947
|
-
condition true in if statement, thus come here.
|
|
2948
|
-
{{ else }}
|
|
2949
|
-
in else statement, thus not come here.
|
|
2950
|
-
{{ endif }}
|
|
2951
|
-
|
|
2952
|
-
**** IF/ELIF/ELSE/ENDIF "if 1 == %formula_syntax_if_04%(1)"
|
|
2953
|
-
**** "else"
|
|
2954
|
-
**** "endif"
|
|
2955
|
-
**** ===> "condition true in if statement, thus come here."
|
|
2956
|
-
{{ if 1 == %formula_syntax_if_04% }}
|
|
2957
|
-
condition true in if statement, thus come here.
|
|
2958
|
-
{{ else }}
|
|
2959
|
-
in else statement, thus not come here.
|
|
2960
|
-
{{ endif }}
|
|
2961
|
-
|
|
2962
|
-
**** IF/ELIF/ELSE/ENDIF "if 'string' == %formula_syntax_if_05%('string')"
|
|
2963
|
-
**** "else"
|
|
2964
|
-
**** "endif"
|
|
2965
|
-
**** ===> "condition true in if statement, thus come here."
|
|
2966
|
-
{{ if 'string' == %formula_syntax_if_05% }}
|
|
2967
|
-
condition true in if statement, thus come here.
|
|
2968
|
-
{{ else }}
|
|
2969
|
-
in else statement, thus not come here.
|
|
2970
|
-
{{ endif }}
|
|
2971
|
-
|
|
2972
|
-
**** IF/ELIF/ELSE/ENDIF "if null != %formula_syntax_if_00%(null)"
|
|
2973
|
-
**** "else"
|
|
2974
|
-
**** "endif"
|
|
2975
|
-
**** ===> "in else statement, thus come here."
|
|
2976
|
-
{{ if null != %formula_syntax_if_00% }}
|
|
2977
|
-
condition false in if statement, thus not come here.
|
|
2978
|
-
{{ else }}
|
|
2979
|
-
in else statement, thus come here.
|
|
2980
|
-
{{ endif }}
|
|
2981
|
-
|
|
2982
|
-
**** IF/ELIF/ELSE/ENDIF "if true != %formula_syntax_if_01%(true)"
|
|
2983
|
-
**** "else"
|
|
2984
|
-
**** "endif"
|
|
2985
|
-
**** ===> "in else statement, thus come here."
|
|
2986
|
-
{{ if true != %formula_syntax_if_01% }}
|
|
2987
|
-
condition false in if statement, thus not come here.
|
|
2988
|
-
{{ else }}
|
|
2989
|
-
in else statement, thus come here.
|
|
2990
|
-
{{ endif }}
|
|
2991
|
-
|
|
2992
|
-
**** IF/ELIF/ELSE/ENDIF "if false != %formula_syntax_if_02%(false)"
|
|
2993
|
-
**** "else"
|
|
2994
|
-
**** "endif"
|
|
2995
|
-
**** ===> "in else statement, thus come here."
|
|
2996
|
-
{{ if false != %formula_syntax_if_02% }}
|
|
2997
|
-
condition false in if statement, thus not come here.
|
|
2998
|
-
{{ else }}
|
|
2999
|
-
in else statement, thus come here.
|
|
3000
|
-
{{ endif }}
|
|
3001
|
-
|
|
3002
|
-
**** IF/ELIF/ELSE/ENDIF "if 0 != %formula_syntax_if_03%(0)"
|
|
3003
|
-
**** "else"
|
|
3004
|
-
**** "endif"
|
|
3005
|
-
**** ===> "in else statement, thus come here."
|
|
3006
|
-
{{ if 0 != %formula_syntax_if_03% }}
|
|
3007
|
-
condition false in if statement, thus not come here.
|
|
3008
|
-
{{ else }}
|
|
3009
|
-
in else statement, thus come here.
|
|
3010
|
-
{{ endif }}
|
|
3011
|
-
|
|
3012
|
-
**** IF/ELIF/ELSE/ENDIF "if 1 != %formula_syntax_if_04%(1)"
|
|
3013
|
-
**** "else"
|
|
3014
|
-
**** "endif"
|
|
3015
|
-
**** ===> "in else statement, thus come here."
|
|
3016
|
-
{{ if 1 != %formula_syntax_if_04% }}
|
|
3017
|
-
condition false in if statement, thus not come here.
|
|
3018
|
-
{{ else }}
|
|
3019
|
-
in else statement, thus come here.
|
|
3020
|
-
{{ endif }}
|
|
3021
|
-
|
|
3022
|
-
**** IF/ELIF/ELSE/ENDIF "if 'string' != %formula_syntax_if_05%('string')"
|
|
3023
|
-
**** "else"
|
|
3024
|
-
**** "endif"
|
|
3025
|
-
**** ===> "in else statement, thus come here."
|
|
3026
|
-
{{ if 'string' != %formula_syntax_if_05% }}
|
|
3027
|
-
condition false in if statement, thus not come here.
|
|
3028
|
-
{{ else }}
|
|
3029
|
-
in else statement, thus come here.
|
|
3030
|
-
{{ endif }}
|
|
3031
|
-
|
|
3032
|
-
**** IF/ELIF/ELSE/ENDIF "if 0 <= %formula_syntax_if_03%(0)"
|
|
3033
|
-
**** "else"
|
|
3034
|
-
**** "endif"
|
|
3035
|
-
**** ===> "condition true in if statement, thus come here."
|
|
3036
|
-
{{ if 0 <= %formula_syntax_if_03% }}
|
|
3037
|
-
condition true in if statement, thus come here.
|
|
3038
|
-
{{ else }}
|
|
3039
|
-
in else statement, thus not come here.
|
|
3040
|
-
{{ endif }}
|
|
3041
|
-
|
|
3042
|
-
**** IF/ELIF/ELSE/ENDIF "if 0 < %formula_syntax_if_03%(0)"
|
|
3043
|
-
**** "else"
|
|
3044
|
-
**** "endif"
|
|
3045
|
-
**** ===> "in else statement, thus come here."
|
|
3046
|
-
{{ if 0 < %formula_syntax_if_03% }}
|
|
3047
|
-
condition false in if statement, thus not come here.
|
|
3048
|
-
{{ else }}
|
|
3049
|
-
in else statement, thus come here.
|
|
3050
|
-
{{ endif }}
|
|
3051
|
-
|
|
3052
|
-
**** IF/ELIF/ELSE/ENDIF "if %formula_syntax_if_04%(1) < 1"
|
|
3053
|
-
**** "else"
|
|
3054
|
-
**** "endif"
|
|
3055
|
-
**** ===> "in else statement, thus come here."
|
|
3056
|
-
{{ if %formula_syntax_if_04% < 1 }}
|
|
3057
|
-
condition true in if statement, thus come here.
|
|
3058
|
-
{{ else }}
|
|
3059
|
-
in else statement, thus come here.
|
|
3060
|
-
{{ endif }}
|
|
3061
|
-
|
|
3062
|
-
**** IF/ELIF/ELSE/ENDIF "if %formula_syntax_if_04%(1) <= 1"
|
|
3063
|
-
**** "else"
|
|
3064
|
-
**** "endif"
|
|
3065
|
-
**** ===> "condition true in if statement, thus come here."
|
|
3066
|
-
{{ if %formula_syntax_if_04% <= 1 }}
|
|
3067
|
-
condition false in if statement, thus not come here.
|
|
3068
|
-
{{ else }}
|
|
3069
|
-
in else statement, thus not come here.
|
|
3070
|
-
{{ endif }}
|
|
3071
|
-
|
|
3072
|
-
##
|
|
3073
|
-
## Test > Formula > Syntax > WHILE/DONE
|
|
3074
|
-
##
|
|
3075
|
-
**** WHILE/DONE "while null"
|
|
3076
|
-
**** "done"
|
|
3077
|
-
**** ===> ""
|
|
3078
|
-
{{ while null }}
|
|
3079
|
-
condition false in while statement, thus not come here.
|
|
3080
|
-
{{ done }}
|
|
3081
|
-
|
|
3082
|
-
**** WHILE/DONE "while true"
|
|
3083
|
-
**** "done"
|
|
3084
|
-
**** ===> "condition true in while statement, thus come here."
|
|
3085
|
-
**** "condition true in if statement, thus stop loop."
|
|
3086
|
-
{{ while true }}
|
|
3087
|
-
condition true in while statement, thus come here.
|
|
3088
|
-
{{ if 1 == %formula_syntax_while_04% }}
|
|
3089
|
-
condition true in if statement, thus stop loop.
|
|
3090
|
-
{{ break }}
|
|
3091
|
-
{{ endif }}
|
|
3092
|
-
{{ done }}
|
|
3093
|
-
|
|
3094
|
-
**** WHILE/DONE "while false"
|
|
3095
|
-
**** "done"
|
|
3096
|
-
**** ===> ""
|
|
3097
|
-
{{ while false }}
|
|
3098
|
-
condition false in while statement, thus not come here.
|
|
3099
|
-
{{ done }}
|
|
3100
|
-
|
|
3101
|
-
**** WHILE/DONE "while 0"
|
|
3102
|
-
**** "done"
|
|
3103
|
-
**** ===> ""
|
|
3104
|
-
{{ while 0 }}
|
|
3105
|
-
condition false in while statement, thus not come here.
|
|
3106
|
-
{{ done }}
|
|
3107
|
-
|
|
3108
|
-
**** WHILE/DONE "while 1"
|
|
3109
|
-
**** "done"
|
|
3110
|
-
**** ===> "condition true in while statement, thus come here."
|
|
3111
|
-
**** "condition true in if statement, thus stop loop."
|
|
3112
|
-
{{ while 1 }}
|
|
3113
|
-
condition true in while statement, thus come here.
|
|
3114
|
-
{{ if 1 == %formula_syntax_while_04% }}
|
|
3115
|
-
condition true in if statement, thus stop loop.
|
|
3116
|
-
{{ break }}
|
|
3117
|
-
{{ endif }}
|
|
3118
|
-
{{ done }}
|
|
3119
|
-
|
|
3120
|
-
**** WHILE/DONE "while 'string'"
|
|
3121
|
-
**** "done"
|
|
3122
|
-
**** ===> "condition true in while statement, thus come here."
|
|
3123
|
-
**** "condition true in if statement, thus stop loop."
|
|
3124
|
-
{{ while 'string' }}
|
|
3125
|
-
condition true in while statement, thus come here.
|
|
3126
|
-
{{ if 1 == %formula_syntax_while_04% }}
|
|
3127
|
-
condition true in if statement, thus stop loop.
|
|
3128
|
-
{{ break }}
|
|
3129
|
-
{{ endif }}
|
|
3130
|
-
{{ done }}
|
|
3131
|
-
|
|
3132
|
-
**** WHILE/DONE "while %formula_syntax_while_00%(null)"
|
|
3133
|
-
**** "done"
|
|
3134
|
-
**** ===> ""
|
|
3135
|
-
{{ while %formula_syntax_while_00% }}
|
|
3136
|
-
condition false in while statement, thus not come here.
|
|
3137
|
-
{{ done }}
|
|
3138
|
-
|
|
3139
|
-
**** WHILE/DONE "while %formula_syntax_while_01%(true)"
|
|
3140
|
-
**** "done"
|
|
3141
|
-
**** ===> "condition true in while statement, thus come here."
|
|
3142
|
-
**** "condition true in if statement, thus stop loop."
|
|
3143
|
-
{{ while %formula_syntax_while_01% }}
|
|
3144
|
-
condition true in while statement, thus come here.
|
|
3145
|
-
{{ if 1 == %formula_syntax_while_04% }}
|
|
3146
|
-
condition true in if statement, thus stop loop.
|
|
3147
|
-
{{ break }}
|
|
3148
|
-
{{ endif }}
|
|
3149
|
-
{{ done }}
|
|
3150
|
-
|
|
3151
|
-
**** WHILE/DONE "while %formula_syntax_while_02%(false)"
|
|
3152
|
-
**** "done"
|
|
3153
|
-
**** ===> ""
|
|
3154
|
-
{{ while %formula_syntax_while_02% }}
|
|
3155
|
-
condition false in while statement, thus not come here.
|
|
3156
|
-
{{ done }}
|
|
3157
|
-
|
|
3158
|
-
**** WHILE/DONE "while %formula_syntax_while_03%(0)"
|
|
3159
|
-
**** "done"
|
|
3160
|
-
**** ===> ""
|
|
3161
|
-
{{ while %formula_syntax_while_03% }}
|
|
3162
|
-
condition false in while statement, thus not come here.
|
|
3163
|
-
{{ done }}
|
|
3164
|
-
|
|
3165
|
-
**** WHILE/DONE "while %formula_syntax_while_04%(1)"
|
|
3166
|
-
**** "done"
|
|
3167
|
-
**** ===> "condition true in while statement, thus come here."
|
|
3168
|
-
**** "condition true in if statement, thus stop loop."
|
|
3169
|
-
{{ while %formula_syntax_while_04% }}
|
|
3170
|
-
condition true in while statement, thus come here.
|
|
3171
|
-
{{ if 1 == %formula_syntax_while_04% }}
|
|
3172
|
-
condition true in if statement, thus stop loop.
|
|
3173
|
-
{{ break }}
|
|
3174
|
-
{{ endif }}
|
|
3175
|
-
{{ done }}
|
|
3176
|
-
|
|
3177
|
-
**** WHILE/DONE "while %formula_syntax_while_05%('string')"
|
|
3178
|
-
**** "done"
|
|
3179
|
-
**** ===> "condition true in while statement, thus come here."
|
|
3180
|
-
**** "condition true in if statement, thus stop loop."
|
|
3181
|
-
{{ while %formula_syntax_while_05% }}
|
|
3182
|
-
condition true in while statement, thus come here.
|
|
3183
|
-
{{ if 1 == %formula_syntax_while_04% }}
|
|
3184
|
-
condition true in if statement, thus stop loop.
|
|
3185
|
-
{{ break }}
|
|
3186
|
-
{{ endif }}
|
|
3187
|
-
{{ done }}
|
|
3188
|
-
|
|
3189
|
-
##
|
|
3190
|
-
## Test > Formula > Syntax > DO/WHILE
|
|
3191
|
-
##
|
|
3192
|
-
**** DO/WHILE "do"
|
|
3193
|
-
**** "while null"
|
|
3194
|
-
**** ===> "condition false in do...while statement, thus come here once."
|
|
3195
|
-
{{ do }}
|
|
3196
|
-
condition false in do...while statement, thus come here once.
|
|
3197
|
-
{{ while null }}
|
|
3198
|
-
|
|
3199
|
-
**** DO/WHILE "do"
|
|
3200
|
-
**** "while true"
|
|
3201
|
-
**** ===> "condition true in do...while statement, thus come here onece."
|
|
3202
|
-
**** "condition true in if statement, thus stop loop."
|
|
3203
|
-
{{ do }}
|
|
3204
|
-
condition true in do...while statement, thus come here onece.
|
|
3205
|
-
{{ if 1 == %formula_syntax_do_04% }}
|
|
3206
|
-
condition true in if statement, thus stop loop.
|
|
3207
|
-
{{ break }}
|
|
3208
|
-
{{ endif }}
|
|
3209
|
-
{{ while true }}
|
|
3210
|
-
|
|
3211
|
-
**** DO/WHILE "do"
|
|
3212
|
-
**** "while false"
|
|
3213
|
-
**** ===> "condition false in do...while statement, thus come here onece."
|
|
3214
|
-
{{ do }}
|
|
3215
|
-
condition false in do...while statement, thus come here onece.
|
|
3216
|
-
{{ while false }}
|
|
3217
|
-
|
|
3218
|
-
**** DO/WHILE "do"
|
|
3219
|
-
**** "while 0"
|
|
3220
|
-
**** ===> "condition false in do...while statement, thus come here onece."
|
|
3221
|
-
{{ do }}
|
|
3222
|
-
condition false in do...while statement, thus come here onece.
|
|
3223
|
-
{{ while 0 }}
|
|
3224
|
-
|
|
3225
|
-
**** DO/WHILE "do"
|
|
3226
|
-
**** "while 1"
|
|
3227
|
-
**** ===> "condition true in do...while statement, thus come here onece."
|
|
3228
|
-
**** "condition true in if statement, thus stop loop."
|
|
3229
|
-
{{ do }}
|
|
3230
|
-
condition true in do...while statement, thus come here onece.
|
|
3231
|
-
{{ if 1 == %formula_syntax_do_04% }}
|
|
3232
|
-
condition true in if statement, thus stop loop.
|
|
3233
|
-
{{ break }}
|
|
3234
|
-
{{ endif }}
|
|
3235
|
-
{{ while 1 }}
|
|
3236
|
-
|
|
3237
|
-
**** DO/WHILE "do"
|
|
3238
|
-
**** "while 'string'"
|
|
3239
|
-
**** ===> "condition true in do...while statement, thus come here onece."
|
|
3240
|
-
**** "condition true in if statement, thus stop loop."
|
|
3241
|
-
{{ do }}
|
|
3242
|
-
condition true in do...while statement, thus come here onece.
|
|
3243
|
-
{{ if 1 == %formula_syntax_do_04% }}
|
|
3244
|
-
condition true in if statement, thus stop loop.
|
|
3245
|
-
{{ break }}
|
|
3246
|
-
{{ endif }}
|
|
3247
|
-
{{ while 'string' }}
|
|
3248
|
-
|
|
3249
|
-
**** DO/WHILE "do"
|
|
3250
|
-
**** "while %formula_syntax_do_00%(null)"
|
|
3251
|
-
**** ===> "condition false in do...while statement, thus come here once."
|
|
3252
|
-
{{ do }}
|
|
3253
|
-
condition false in do...while statement, thus come here once.
|
|
3254
|
-
{{ while %formula_syntax_do_00% }}
|
|
3255
|
-
|
|
3256
|
-
**** DO/WHILE "do"
|
|
3257
|
-
**** "while %formula_syntax_do_01%(true)"
|
|
3258
|
-
**** ===> "condition true in do...while statement, thus come here onece."
|
|
3259
|
-
**** "condition true in if statement, thus stop loop."
|
|
3260
|
-
{{ do }}
|
|
3261
|
-
condition true in do...while statement, thus come here onece.
|
|
3262
|
-
{{ if 1 == %formula_syntax_do_04% }}
|
|
3263
|
-
condition true in if statement, thus stop loop.
|
|
3264
|
-
{{ break }}
|
|
3265
|
-
{{ endif }}
|
|
3266
|
-
{{ while %formula_syntax_do_01% }}
|
|
3267
|
-
|
|
3268
|
-
**** DO/WHILE "do"
|
|
3269
|
-
**** "while %formula_syntax_do_02%(false)"
|
|
3270
|
-
**** ===> "condition false in do...while statement, thus come here onece."
|
|
3271
|
-
{{ do }}
|
|
3272
|
-
condition false in do...while statement, thus come here onece.
|
|
3273
|
-
{{ while %formula_syntax_do_02% }}
|
|
3274
|
-
|
|
3275
|
-
**** DO/WHILE "do"
|
|
3276
|
-
**** "while %formula_syntax_do_03%(0)"
|
|
3277
|
-
**** ===> "condition false in do...while statement, thus come here onece."
|
|
3278
|
-
{{ do }}
|
|
3279
|
-
condition false in do...while statement, thus come here onece.
|
|
3280
|
-
{{ while %formula_syntax_do_03% }}
|
|
3281
|
-
|
|
3282
|
-
**** DO/WHILE "do"
|
|
3283
|
-
**** "while %formula_syntax_do_04%(1)"
|
|
3284
|
-
**** ===> "condition true in do...while statement, thus come here onece."
|
|
3285
|
-
**** "condition true in if statement, thus stop loop."
|
|
3286
|
-
{{ do }}
|
|
3287
|
-
condition true in do...while statement, thus come here onece.
|
|
3288
|
-
{{ if 1 == %formula_syntax_do_04% }}
|
|
3289
|
-
condition true in if statement, thus stop loop.
|
|
3290
|
-
{{ break }}
|
|
3291
|
-
{{ endif }}
|
|
3292
|
-
{{ while %formula_syntax_do_04% }}
|
|
3293
|
-
|
|
3294
|
-
**** DO/WHILE "do"
|
|
3295
|
-
**** "while %formula_syntax_do_05%('string')"
|
|
3296
|
-
**** ===> "condition true in do...while statement, thus come here onece."
|
|
3297
|
-
**** "condition true in if statement, thus stop loop."
|
|
3298
|
-
{{ do }}
|
|
3299
|
-
condition true in do...while statement, thus come here onece.
|
|
3300
|
-
{{ if 1 == %formula_syntax_do_04% }}
|
|
3301
|
-
condition true in if statement, thus stop loop.
|
|
3302
|
-
{{ break }}
|
|
3303
|
-
{{ endif }}
|
|
3304
|
-
{{ while %formula_syntax_do_05% }}
|
|
3305
|
-
|
|
3306
|
-
##
|
|
3307
|
-
## Test > Formula > Syntax > FOR/DONE
|
|
3308
|
-
##
|
|
3309
|
-
**** FOR/DONE "for ; null ; "
|
|
3310
|
-
**** "done"
|
|
3311
|
-
**** ===> ""
|
|
3312
|
-
{{ for ; null ; }}
|
|
3313
|
-
condition false in for statement, thus not come here.
|
|
3314
|
-
{{ done }}
|
|
3315
|
-
|
|
3316
|
-
**** FOR/DONE "for ; true ; "
|
|
3317
|
-
**** "done"
|
|
3318
|
-
**** ===> "condition true in for statement, thus come here onece."
|
|
3319
|
-
**** "condition true in if statement, thus stop loop."
|
|
3320
|
-
{{ for ; true ; }}
|
|
3321
|
-
condition true in for statement, thus come here onece.
|
|
3322
|
-
{{ if 1 == %formula_syntax_for_04% }}
|
|
3323
|
-
condition true in if statement, thus stop loop.
|
|
3324
|
-
{{ break }}
|
|
3325
|
-
{{ endif }}
|
|
3326
|
-
{{ done }}
|
|
3327
|
-
|
|
3328
|
-
**** FOR/DONE "for ; false ; "
|
|
3329
|
-
**** "done"
|
|
3330
|
-
**** ===> ""
|
|
3331
|
-
{{ for ; false ; }}
|
|
3332
|
-
condition false in for statement, thus not come here.
|
|
3333
|
-
{{ done }}
|
|
3334
|
-
|
|
3335
|
-
**** FOR/DONE "for ; 0 ; "
|
|
3336
|
-
**** "done"
|
|
3337
|
-
**** ===> ""
|
|
3338
|
-
{{ for ; 0 ; }}
|
|
3339
|
-
condition false in for statement, thus not come here.
|
|
3340
|
-
{{ done }}
|
|
3341
|
-
|
|
3342
|
-
**** FOR/DONE "for ; 1 ; "
|
|
3343
|
-
**** "done"
|
|
3344
|
-
**** ===> "condition true in for statement, thus come here onece."
|
|
3345
|
-
**** "condition true in if statement, thus stop loop."
|
|
3346
|
-
{{ for ; 1 ; }}
|
|
3347
|
-
condition true in for statement, thus come here onece.
|
|
3348
|
-
{{ if 1 == %formula_syntax_for_04% }}
|
|
3349
|
-
condition true in if statement, thus stop loop.
|
|
3350
|
-
{{ break }}
|
|
3351
|
-
{{ endif }}
|
|
3352
|
-
{{ done }}
|
|
3353
|
-
|
|
3354
|
-
**** FOR/DONE "for ; 'string' ; "
|
|
3355
|
-
**** "done"
|
|
3356
|
-
**** ===> "condition true in for statement, thus come here onece."
|
|
3357
|
-
**** "condition true in if statement, thus stop loop."
|
|
3358
|
-
{{ for ; 'string' ; }}
|
|
3359
|
-
condition true in for statement, thus come here onece.
|
|
3360
|
-
{{ if 1 == %formula_syntax_for_04% }}
|
|
3361
|
-
condition true in if statement, thus stop loop.
|
|
3362
|
-
{{ break }}
|
|
3363
|
-
{{ endif }}
|
|
3364
|
-
{{ done }}
|
|
3365
|
-
|
|
3366
|
-
**** FOR/DONE "for ; %formula_syntax_for_00%(null) ; "
|
|
3367
|
-
**** "done"
|
|
3368
|
-
**** ===> ""
|
|
3369
|
-
{{ for ; %formula_syntax_for_00% ; }}
|
|
3370
|
-
condition false in for statement, thus not come here.
|
|
3371
|
-
{{ done }}
|
|
3372
|
-
|
|
3373
|
-
**** FOR/DONE "for ; %formula_syntax_for_01%(true) ; "
|
|
3374
|
-
**** "done"
|
|
3375
|
-
**** ===> "condition true in for statement, thus come here onece."
|
|
3376
|
-
**** "condition true in if statement, thus stop loop."
|
|
3377
|
-
{{ for ; %formula_syntax_for_01% ; }}
|
|
3378
|
-
condition true in for statement, thus come here onece.
|
|
3379
|
-
{{ if 1 == %formula_syntax_for_04% }}
|
|
3380
|
-
condition true in if statement, thus stop loop.
|
|
3381
|
-
{{ break }}
|
|
3382
|
-
{{ endif }}
|
|
3383
|
-
{{ done }}
|
|
3384
|
-
|
|
3385
|
-
**** FOR/DONE "for ; %formula_syntax_for_02%(false) ; "
|
|
3386
|
-
**** "done"
|
|
3387
|
-
**** ===> ""
|
|
3388
|
-
{{ for ; %formula_syntax_for_02% ; }}
|
|
3389
|
-
condition false in for statement, thus not come here.
|
|
3390
|
-
{{ done }}
|
|
3391
|
-
|
|
3392
|
-
**** FOR/DONE "for ; %formula_syntax_for_03%(0) ; "
|
|
3393
|
-
**** "done"
|
|
3394
|
-
**** ===> ""
|
|
3395
|
-
{{ for ; %formula_syntax_for_03% ; }}
|
|
3396
|
-
condition false in for statement, thus not come here.
|
|
3397
|
-
{{ done }}
|
|
3398
|
-
|
|
3399
|
-
**** FOR/DONE "for ; %formula_syntax_for_04%(1) ; "
|
|
3400
|
-
**** "done"
|
|
3401
|
-
**** ===> "condition true in for statement, thus come here onece."
|
|
3402
|
-
**** "condition true in if statement, thus stop loop."
|
|
3403
|
-
{{ for ; %formula_syntax_for_04% ; }}
|
|
3404
|
-
condition true in for statement, thus come here onece.
|
|
3405
|
-
{{ if 1 == %formula_syntax_for_04% }}
|
|
3406
|
-
condition true in if statement, thus stop loop.
|
|
3407
|
-
{{ break }}
|
|
3408
|
-
{{ endif }}
|
|
3409
|
-
{{ done }}
|
|
3410
|
-
|
|
3411
|
-
**** FOR/DONE "for ; %formula_syntax_for_05%('string') ; "
|
|
3412
|
-
**** "done"
|
|
3413
|
-
**** ===> "condition true in for statement, thus come here onece."
|
|
3414
|
-
**** "condition true in if statement, thus stop loop."
|
|
3415
|
-
{{ for ; %formula_syntax_for_05% ; }}
|
|
3416
|
-
condition true in for statement, thus come here onece.
|
|
3417
|
-
{{ if 1 == %formula_syntax_for_04% }}
|
|
3418
|
-
condition true in if statement, thus stop loop.
|
|
3419
|
-
{{ break }}
|
|
3420
|
-
{{ endif }}
|
|
3421
|
-
{{ done }}
|
|
3422
|
-
|
|
3423
|
-
**** FOR/DONE "for %tmp_for_counter00% = 0 ; %tmp_for_counter00% < 2 ; ++%tmp_for_counter00%"
|
|
3424
|
-
**** "done"
|
|
3425
|
-
**** ===> "condition true(2 times) = 0 in for statement, thus come here."
|
|
3426
|
-
**** "condition true(2 times) = 1 in for statement, thus come here."
|
|
3427
|
-
{{ for %tmp_for_counter00% = 0 ; %tmp_for_counter00% < 2 ; ++%tmp_for_counter00% }}
|
|
3428
|
-
condition true(2 times) = {{= %tmp_for_counter00% }} in for statement, thus come here.
|
|
3429
|
-
{{ done }}
|
|
3430
|
-
|
|
3431
|
-
**** FOR/DONE "for %tmp_for_counter00% = 0 ; %tmp_for_counter00% < %formula_syntax_for_06%.length ; ++%tmp_for_counter00%"
|
|
3432
|
-
**** "done"
|
|
3433
|
-
**** ===> "%formula_syntax_for_06%[ 0 ] = string00"
|
|
3434
|
-
**** "%formula_syntax_for_06%[ 1 ] = string01"
|
|
3435
|
-
{{ for %tmp_for_counter00% = 0 ; %tmp_for_counter00% < %formula_syntax_for_06%.length ; ++%tmp_for_counter00% }}
|
|
3436
|
-
%formula_syntax_for_06%[ {{= %tmp_for_counter00% }} ] = {{= %formula_syntax_for_06%[%tmp_for_counter00%] }}
|
|
3437
|
-
{{ done }}
|
|
3438
|
-
|
|
3439
|
-
**** ARRAY COUNT "%formula_syntax_for_06%.length"
|
|
3440
|
-
**** "done"
|
|
3441
|
-
**** ===> "%formula_syntax_for_06%.length = 2"
|
|
3442
|
-
**** "%formula_syntax_for_06%.size = 2"
|
|
3443
|
-
**** "%formula_syntax_for_06%.count = 2"
|
|
3444
|
-
%formula_syntax_for_06%.length = {{= %formula_syntax_for_06%.length }}
|
|
3445
|
-
%formula_syntax_for_06%.size = {{= %formula_syntax_for_06%.size }}
|
|
3446
|
-
%formula_syntax_for_06%.count = {{= %formula_syntax_for_06%.count }}
|
|
3447
|
-
|
|
3448
|
-
**** OBJECT COUNT "%formula_syntax_for_07%.length"
|
|
3449
|
-
**** "done"
|
|
3450
|
-
**** ===> "%formula_syntax_for_07%.length = 2"
|
|
3451
|
-
**** "%formula_syntax_for_07%.size = 2"
|
|
3452
|
-
**** "%formula_syntax_for_07%.count = 2"
|
|
3453
|
-
%formula_syntax_for_07%.length = {{= %formula_syntax_for_07%.length }}
|
|
3454
|
-
%formula_syntax_for_07%.size = {{= %formula_syntax_for_07%.size }}
|
|
3455
|
-
%formula_syntax_for_07%.count = {{= %formula_syntax_for_07%.count }}
|
|
3456
|
-
|
|
3457
|
-
##
|
|
3458
|
-
## Test > Formula > Syntax > FOREACH/DONE
|
|
3459
|
-
##
|
|
3460
|
-
**** FOREACH/DONE "foreach %tmp_foreach_value_00% in %formula_syntax_foreach_00%"
|
|
3461
|
-
**** "done"
|
|
3462
|
-
**** ===> ""
|
|
3463
|
-
{{ foreach %tmp_foreach_value_00% in %formula_syntax_foreach_00% }}
|
|
3464
|
-
foreach value {{= %tmp_foreach_value_00% }} is not exists in foreach statement, thus not come here.
|
|
3465
|
-
{{ done }}
|
|
3466
|
-
|
|
3467
|
-
**** FOREACH/DONE "foreach %tmp_foreach_value_00% in %formula_syntax_foreach_01%"
|
|
3468
|
-
**** "done"
|
|
3469
|
-
**** ===> "foreach value 0(null) in foreach statement, thus come here."
|
|
3470
|
-
{{ foreach %tmp_foreach_value_00% in %formula_syntax_foreach_01% }}
|
|
3471
|
-
foreach value {{= %tmp_foreach_value_00% }}(null) in foreach statement, thus come here.
|
|
3472
|
-
{{ done }}
|
|
3473
|
-
|
|
3474
|
-
**** FOREACH/DONE "foreach %tmp_foreach_value_00% in %formula_syntax_foreach_02%"
|
|
3475
|
-
**** "done"
|
|
3476
|
-
**** ===> "foreach value %formula_syntax_foreach_02%[0] = true in foreach statement, thus come here."
|
|
3477
|
-
**** "foreach value %formula_syntax_foreach_02%[1] = false in foreach statement, thus come here."
|
|
3478
|
-
{{ foreach %tmp_foreach_value_00% in %formula_syntax_foreach_02% }}
|
|
3479
|
-
foreach value %formula_syntax_foreach_02%[{{= %tmp_foreach_value_00% }}] = {{= %formula_syntax_foreach_02%[%tmp_foreach_value_00%] }} in foreach statement, thus come here.
|
|
3480
|
-
{{ done }}
|
|
3481
|
-
|
|
3482
|
-
**** FOREACH/DONE "foreach %tmp_foreach_value_00% in %formula_syntax_foreach_03%"
|
|
3483
|
-
**** "done"
|
|
3484
|
-
**** ===> "foreach value 0 in foreach statement, thus come here."
|
|
3485
|
-
**** "foreach value 1 in foreach statement, thus come here."
|
|
3486
|
-
{{ foreach %tmp_foreach_value_00% in %formula_syntax_foreach_03% }}
|
|
3487
|
-
foreach value {{= %tmp_foreach_value_00% }} in foreach statement, thus come here.
|
|
3488
|
-
{{ done }}
|
|
3489
|
-
|
|
3490
|
-
**** FOREACH/DONE "foreach %tmp_foreach_value_00% in %formula_syntax_foreach_04%"
|
|
3491
|
-
**** "done"
|
|
3492
|
-
**** ===> "foreach value %formula_syntax_foreach_04%[0] = string00 in foreach statement, thus come here."
|
|
3493
|
-
**** "foreach value %formula_syntax_foreach_04%[1] = string01 in foreach statement, thus come here."
|
|
3494
|
-
{{ foreach %tmp_foreach_value_00% in %formula_syntax_foreach_04% }}
|
|
3495
|
-
foreach value %formula_syntax_foreach_04%[{{= %tmp_foreach_value_00% }}] = {{= %formula_syntax_foreach_04%[%tmp_foreach_value_00%] }} in foreach statement, thus come here.
|
|
3496
|
-
{{ done }}
|
|
3497
|
-
|
|
3498
|
-
**** FOREACH/DONE "foreach %tmp_foreach_value_00% in %formula_syntax_foreach_04%" + "continue"
|
|
3499
|
-
**** "done"
|
|
3500
|
-
**** ===> "foreach value %formula_syntax_foreach_04%[1] = string01 in foreach statement, thus come here."
|
|
3501
|
-
{{ foreach %tmp_foreach_value_00% in %formula_syntax_foreach_04% }}
|
|
3502
|
-
{{ if 'string00' == %formula_syntax_foreach_04%[%tmp_foreach_value_00%] }}
|
|
3503
|
-
{{ continue }}
|
|
3504
|
-
{{ endif }}
|
|
3505
|
-
foreach value %formula_syntax_foreach_04%[{{= %tmp_foreach_value_00% }}] = {{= %formula_syntax_foreach_04%[%tmp_foreach_value_00%] }} in foreach statement, thus come here.
|
|
3506
|
-
{{ done }}
|
|
3507
|
-
|
|
3508
|
-
**** FOREACH/DONE "foreach %tmp_foreach_value_00% in %formula_syntax_foreach_10%"
|
|
3509
|
-
**** "done"
|
|
3510
|
-
**** ===> ""
|
|
3511
|
-
{{ foreach %tmp_foreach_value_00% in %formula_syntax_foreach_10% }}
|
|
3512
|
-
foreach value {{= %tmp_foreach_value_00% }} is not exists in foreach statement, thus not come here.
|
|
3513
|
-
{{ done }}
|
|
3514
|
-
|
|
3515
|
-
**** FOREACH/DONE "foreach %tmp_foreach_value_00% in %formula_syntax_foreach_11%"
|
|
3516
|
-
**** "done"
|
|
3517
|
-
**** ===> "foreach value %formula_syntax_foreach_11%[key] = (null) in foreach statement, thus come here."
|
|
3518
|
-
{{ foreach %tmp_foreach_value_00% in %formula_syntax_foreach_11% }}
|
|
3519
|
-
foreach value %formula_syntax_foreach_11%[{{= %tmp_foreach_value_00% }}] = {{= %formula_syntax_foreach_11%[%tmp_foreach_value_00%] }}(null) in foreach statement, thus come here.
|
|
3520
|
-
{{ done }}
|
|
3521
|
-
|
|
3522
|
-
**** FOREACH/DONE "foreach %tmp_foreach_value_00% in %formula_syntax_foreach_12%"
|
|
3523
|
-
**** "done"
|
|
3524
|
-
**** ===> "foreach value %formula_syntax_foreach_12%[key_1] = true in foreach statement, thus come here."
|
|
3525
|
-
**** "foreach value %formula_syntax_foreach_12%[key_2] = false in foreach statement, thus come here."
|
|
3526
|
-
{{ foreach %tmp_foreach_value_00% in %formula_syntax_foreach_12% }}
|
|
3527
|
-
foreach value %formula_syntax_foreach_12%[{{= %tmp_foreach_value_00% }}] = {{= %formula_syntax_foreach_12%[%tmp_foreach_value_00%] }} in foreach statement, thus come here.
|
|
3528
|
-
{{ done }}
|
|
3529
|
-
|
|
3530
|
-
**** FOREACH/DONE "foreach %tmp_foreach_value_00% in %formula_syntax_foreach_13%"
|
|
3531
|
-
**** "done"
|
|
3532
|
-
**** ===> "foreach value %formula_syntax_foreach_13%[key_1] = 0 in foreach statement, thus come here."
|
|
3533
|
-
**** "foreach value %formula_syntax_foreach_13%[key_2] = 1 in foreach statement, thus come here."
|
|
3534
|
-
{{ foreach %tmp_foreach_value_00% in %formula_syntax_foreach_13% }}
|
|
3535
|
-
foreach value %formula_syntax_foreach_13%[{{= %tmp_foreach_value_00% }}] = {{= %formula_syntax_foreach_13%[%tmp_foreach_value_00%] }} in foreach statement, thus come here.
|
|
3536
|
-
{{ done }}
|
|
3537
|
-
|
|
3538
|
-
**** FOREACH/DONE "foreach %tmp_foreach_value_00% in %formula_syntax_foreach_14%"
|
|
3539
|
-
**** "done"
|
|
3540
|
-
**** ===> "foreach value %formula_syntax_foreach_14%[key_1] = string00 in foreach statement, thus come here."
|
|
3541
|
-
**** "foreach value %formula_syntax_foreach_14%[key_2] = string01 in foreach statement, thus come here."
|
|
3542
|
-
{{ foreach %tmp_foreach_value_00% in %formula_syntax_foreach_14% }}
|
|
3543
|
-
foreach value %formula_syntax_foreach_14%[{{= %tmp_foreach_value_00% }}] = {{= %formula_syntax_foreach_14%[%tmp_foreach_value_00%] }} in foreach statement, thus come here.
|
|
3544
|
-
{{ done }}
|
|
3545
|
-
|
|
3546
|
-
**** FOREACH/DONE "foreach %tmp_foreach_value_00% in %formula_syntax_foreach_14%" + "continue"
|
|
3547
|
-
**** "done"
|
|
3548
|
-
**** ===> "foreach value %formula_syntax_foreach_14%[key_2] = string01 in foreach statement, thus come here."
|
|
3549
|
-
{{ foreach %tmp_foreach_value_00% in %formula_syntax_foreach_14% }}
|
|
3550
|
-
{{ if 'string00' == %formula_syntax_foreach_14%[%tmp_foreach_value_00%] }}
|
|
3551
|
-
{{ continue }}
|
|
3552
|
-
{{ endif }}
|
|
3553
|
-
foreach value %formula_syntax_foreach_14%[{{= %tmp_foreach_value_00% }}] = {{= %formula_syntax_foreach_14%[%tmp_foreach_value_00%] }} in foreach statement, thus come here.
|
|
3554
|
-
{{ done }}
|
|
3555
|
-
|
|
3556
|
-
############################################################
|
|
3557
|
-
#### Formula : Priority
|
|
3558
|
-
############################################################
|
|
3559
|
-
##
|
|
3560
|
-
## Test > Priority
|
|
3561
|
-
##
|
|
3562
|
-
**** PRIORITY "%tmp_priority_data00% = 0 && 1 + 2 & 1"
|
|
3563
|
-
**** "= %tmp_priority_data00%"
|
|
3564
|
-
**** ===> "false"
|
|
3565
|
-
{{ %tmp_priority_data00% = 0 && 1 + 2 & 1 }}
|
|
3566
|
-
{{= %tmp_priority_data00% }}
|
|
3567
|
-
|
|
3568
|
-
**** PRIORITY "%tmp_priority_data00% = 1 + 2 & 1 && 0"
|
|
3569
|
-
**** "= %tmp_priority_data00%"
|
|
3570
|
-
**** ===> "false"
|
|
3571
|
-
{{ %tmp_priority_data00% = 1 + 2 & 1 && 0 }}
|
|
3572
|
-
{{= %tmp_priority_data00% }}
|
|
3573
|
-
|
|
3574
|
-
**** PRIORITY "%tmp_priority_data00% = 0++ & 1 + 2"
|
|
3575
|
-
**** "= %tmp_priority_data00% }}"
|
|
3576
|
-
**** ===> "0"
|
|
3577
|
-
{{ %tmp_priority_data00% = 0++ & 1 + 2 }}
|
|
3578
|
-
{{= %tmp_priority_data00% }}
|
|
3579
|
-
|
|
3580
|
-
**** PRIORITY "%tmp_priority_data00% = ++0 & 1 + 2"
|
|
3581
|
-
**** "= %tmp_priority_data00% }}"
|
|
3582
|
-
**** ===> "1"
|
|
3583
|
-
{{ %tmp_priority_data00% = ++0 & 1 + 2 }}
|
|
3584
|
-
{{= %tmp_priority_data00% }}
|
|
3585
|
-
|
|
3586
|
-
**** PRIORITY "%tmp_priority_data00% = 1 + 3 * 2 * 3 + 1"
|
|
3587
|
-
**** "= %tmp_priority_data00%"
|
|
3588
|
-
**** ===> "20"
|
|
3589
|
-
{{ %tmp_priority_data00% = 1 + 3 * 2 * 3 + 1 }}
|
|
3590
|
-
{{= %tmp_priority_data00% }}
|
|
3591
|
-
|
|
3592
|
-
**** PRIORITY "%tmp_priority_data00% = 2 * 3 + 1"
|
|
3593
|
-
**** "= %tmp_priority_data00%"
|
|
3594
|
-
**** ===> "7"
|
|
3595
|
-
{{ %tmp_priority_data00% = 2 * 3 + 1 }}
|
|
3596
|
-
{{= %tmp_priority_data00% }}
|
|
3597
|
-
|
|
3598
|
-
############################################################
|
|
3599
|
-
#### TEST END
|
|
3600
|
-
############################################################
|
|
3601
|
-
#
|
|
3602
|
-
# Local variables:
|
|
3603
|
-
# tab-width: 4
|
|
3604
|
-
# c-basic-offset: 4
|
|
3605
|
-
# End:
|
|
3606
|
-
# vim600: noexpandtab sw=4 ts=4 fdm=marker
|
|
3607
|
-
# vim<600: noexpandtab sw=4 ts=4
|
|
3608
|
-
#
|