-
Notifications
You must be signed in to change notification settings - Fork 794
/
Copy pathCMakeLists.txt
361 lines (338 loc) · 14.5 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
add_subdirectory(db_fixture)
add_subdirectory(bmic_objects)
find_package( Gperftools QUIET )
if( GPERFTOOLS_FOUND )
message( STATUS "Found gperftools; compiling tests with TCMalloc")
list( APPEND PLATFORM_SPECIFIC_LIBS tcmalloc )
endif()
INCLUDE(CTest)
ENABLE_TESTING()
file(GLOB UNIT_TESTS "tests/*.cpp")
include(BoostTestTargets.cmake)
function(parse_unit_tests RESULT)
set(SOURCES)
foreach(_element ${ARGN})
list(APPEND SOURCES "${_element}")
endforeach()
set(tests)
foreach(src ${SOURCES})
file(READ ${src} thefile)
#string(REGEX MATCH "" test_suite "${thefile}" )
string(REGEX MATCH "BOOST_FIXTURE_TEST_SUITE\\([A-Za-z0-9_, ]*\\)" test_suite "${thefile}" )
if( NOT (test_suite STREQUAL "") )
string(SUBSTRING "${test_suite}" 25 -1 test_suite)
string(FIND "${test_suite}" "," comma_loc )
string(SUBSTRING "${test_suite}" 0 ${comma_loc} test_suite)
string(STRIP "${test_suite}" test_suite)
string( REGEX MATCHALL "BOOST_AUTO_TEST_CASE\\([A-Za-z0-9_, ]*\\)" cases "${thefile}" )
foreach( test_case ${cases} )
string(SUBSTRING "${test_case}" 22 -1 test_case)
string(FIND "${test_case}" ")" paren_loc )
string(SUBSTRING "${test_case}" 0 ${paren_loc} test_case)
string(STRIP "${test_case}" test_case)
list(APPEND tests "${test_suite}/${test_case}")
endforeach()
endif()
endforeach()
set(${RESULT} ${tests} PARENT_SCOPE)
endfunction()
parse_unit_tests(TEST_CASES ${UNIT_TESTS})
#string (REPLACE ";" "\n" TEST_CASES "${TEST_CASES}")
#message(STATUS "${TEST_CASES}")
add_boost_test( chain_test
SOURCES ${UNIT_TESTS}
TESTS
automated_action_tests/push_pending_required_actions
automated_action_tests/push_pending_optional_actions
automated_action_tests/full_block
automated_action_tests/pending_required_execution
automated_action_tests/unexpected_required_action
automated_action_tests/missing_required_action
automated_action_tests/optional_action_expiration
automated_action_tests/unexpected_optional_action
automated_action_tests/reject_optional_action
basic_tests/parse_size_test
basic_tests/valid_name_test
basic_tests/merkle_root
operation_tests/account_create_validate
operation_tests/account_create_authorities
operation_tests/account_create_apply
operation_tests/account_update_validate
operation_tests/account_update_authorities
operation_tests/account_update_apply
operation_tests/comment_validate
operation_tests/comment_authorities
operation_tests/comment_apply
operation_tests/comment_delete_apply
operation_tests/vote_validate
operation_tests/vote_authorities
operation_tests/vote_apply
operation_tests/transfer_validate
operation_tests/transfer_authorities
operation_tests/signature_stripping
operation_tests/transfer_apply
operation_tests/transfer_to_vesting_validate
operation_tests/transfer_to_vesting_authorities
operation_tests/transfer_to_vesting_apply
operation_tests/withdraw_vesting_validate
operation_tests/withdraw_vesting_authorities
operation_tests/withdraw_vesting_apply
operation_tests/witness_update_validate
operation_tests/witness_update_authorities
operation_tests/witness_update_apply
operation_tests/account_witness_vote_validate
operation_tests/account_witness_vote_authorities
operation_tests/account_witness_vote_apply
operation_tests/account_witness_proxy_validate
operation_tests/account_witness_proxy_authorities
operation_tests/account_witness_proxy_apply
operation_tests/custom_authorities
operation_tests/custom_json_authorities
operation_tests/custom_binary_authorities
operation_tests/feed_publish_validate
operation_tests/feed_publish_authorities
operation_tests/feed_publish_apply
operation_tests/convert_validate
operation_tests/convert_authorities
operation_tests/convert_apply
operation_tests/fixture_convert_checks_balance
operation_tests/limit_order_create_validate
operation_tests/limit_order_create_authorities
operation_tests/limit_order_create_apply
operation_tests/limit_order_create2_authorities
operation_tests/limit_order_create2_apply
operation_tests/limit_order_cancel_validate
operation_tests/limit_order_cancel_authorities
operation_tests/limit_order_cancel_apply
operation_tests/pow_validate
operation_tests/pow_authorities
operation_tests/pow_apply
operation_tests/account_recovery
operation_tests/change_recovery_account
operation_tests/escrow_transfer_validate
operation_tests/escrow_transfer_authorities
operation_tests/escrow_transfer_apply
operation_tests/escrow_approve_validate
operation_tests/escrow_approve_authorities
operation_tests/escrow_approve_apply
operation_tests/escrow_dispute_validate
operation_tests/escrow_dispute_authorities
operation_tests/escrow_dispute_apply
operation_tests/escrow_release_validate
operation_tests/escrow_release_authorities
operation_tests/escrow_release_apply
operation_tests/transfer_to_savings_validate
operation_tests/transfer_to_savings_authorities
operation_tests/transfer_to_savings_apply
operation_tests/transfer_from_savings_validate
operation_tests/transfer_from_savings_authorities
operation_tests/transfer_from_savings_apply
operation_tests/cancel_transfer_from_savings_validate
operation_tests/cancel_transfer_from_savings_authorities
operation_tests/cancel_transfer_from_savings_apply
operation_tests/decline_voting_rights_authorities
operation_tests/decline_voting_rights_apply
operation_tests/claim_reward_balance_validate
operation_tests/claim_reward_balance_authorities
operation_tests/account_create_with_delegation_authorities
operation_tests/account_create_with_delegation_apply
operation_tests/claim_reward_balance_apply
operation_tests/delegate_vesting_shares_validate
operation_tests/delegate_vesting_shares_authorities
operation_tests/delegate_vesting_shares_apply
operation_tests/issue_971_vesting_removal
operation_tests/comment_beneficiaries_validate
operation_tests/comment_beneficiaries_apply
operation_tests/witness_set_properties_validate
operation_tests/witness_set_properties_authorities
operation_tests/witness_set_properties_apply
operation_tests/claim_account_validate
operation_tests/claim_account_authorities
operation_tests/claim_account_apply
operation_tests/create_claimed_account_validate
operation_tests/create_claimed_account_authorities
operation_tests/create_claimed_account_apply
operation_tests/account_auth_tests
operation_tests/account_update2_validate
operation_tests/account_update2_authorities
operation_tests/account_update2_apply
operation_time_tests/comment_payout_equalize
operation_time_tests/comment_payout_dust
operation_time_tests/recent_claims_decay
operation_time_tests/vesting_withdrawals
operation_time_tests/vesting_withdraw_route
operation_time_tests/feed_publish_mean
operation_time_tests/convert_delay
operation_time_tests/steem_inflation
operation_time_tests/sbd_interest
operation_time_tests/post_rate_limit
operation_time_tests/comment_freeze
operation_time_tests/sbd_stability
operation_time_tests/sbd_price_feed_limit
operation_time_tests/clear_null_account
operation_time_tests/generate_account_subsidies
operation_time_tests/account_subsidy_witness_limits
proposal_tests/generating_payments
proposal_tests/generating_payments_01
proposal_tests/generating_payments_02
proposal_tests/generating_payments_03
proposal_tests/proposals_maintenance
proposal_tests/proposal_object_apply
proposal_tests/proposal_vote_object_apply
proposal_tests/proposal_vote_object_01_apply
proposal_tests/create_proposal_000
proposal_tests/create_proposal_001
proposal_tests/create_proposal_002
proposal_tests/create_proposal_003
proposal_tests/create_proposal_004
proposal_tests/create_proposal_005
proposal_tests/create_proposal_006
proposal_tests/create_proposal_007
proposal_tests/create_proposal_008
proposal_tests/update_proposal_votes_000
proposal_tests/update_proposal_votes_001
proposal_tests/update_proposal_votes_002
proposal_tests/update_proposal_votes_003
proposal_tests/update_proposal_votes_004
proposal_tests/update_proposal_votes_005
proposal_tests/update_proposal_votes_006
proposal_tests/remove_proposal_000
proposal_tests/remove_proposal_001
proposal_tests/remove_proposal_002
proposal_tests/remove_proposal_003
proposal_tests/remove_proposal_004
proposal_tests/remove_proposal_005
proposal_tests/remove_proposal_006
proposal_tests/remove_proposal_007
proposal_tests/remove_proposal_008
proposal_tests/remove_proposal_009
proposal_tests/remove_proposal_010
proposal_tests/remove_proposal_011
proposal_tests/remove_proposal_012
proposal_tests/proposals_maintenance_01
proposal_tests/proposals_maintenance_02
proposal_tests/proposals_removing_with_threshold
proposal_tests/proposals_removing_with_threshold_01
proposal_tests/proposals_removing_with_threshold_02
serialization_tests/serialization_raw_test
serialization_tests/serialization_json_test
serialization_tests/legacy_asset_test
serialization_tests/asset_test
serialization_tests/asset_raw_test
serialization_tests/json_tests
serialization_tests/extended_private_key_type_test
serialization_tests/extended_public_key_type_test
serialization_tests/version_test
serialization_tests/hardfork_version_test
serialization_tests/min_block_size
serialization_tests/legacy_signed_transaction
serialization_tests/static_variant_json_test
serialization_tests/legacy_operation_test
serialization_tests/asset_symbol_type_test
serialization_tests/unpack_clear_test
serialization_tests/unpack_recursion_test
smt_operation_tests/smt_limit_order_create_authorities
smt_operation_tests/smt_limit_order_create2_authorities
smt_operation_tests/smt_limit_order_create_apply
smt_operation_tests/smt_limit_order_cancel_authorities
smt_operation_tests/smt_limit_order_cancel_apply
smt_operation_tests/smt_limit_order_create2_apply
smt_operation_tests/claim_reward_balance2_validate
smt_operation_tests/claim_reward_balance2_authorities
smt_operation_tests/claim_reward_balance2_apply
smt_operation_tests/smt_transfer_to_vesting_validate
smt_operation_tests/smt_transfer_to_vesting_apply
smt_operation_tests/smt_withdraw_vesting_validate
smt_operation_tests/smt_withdraw_vesting_apply
smt_operation_tests/smt_create_validate
smt_operation_tests/smt_create_authorities
smt_operation_tests/smt_create_duplicate
smt_operation_tests/smt_create_duplicate_differing_decimals
smt_operation_tests/smt_create_duplicate_different_users
smt_operation_tests/smt_create_with_steem_funds
smt_operation_tests/smt_create_with_sbd_funds
smt_operation_tests/smt_create_with_invalid_nai
smt_operation_tests/smt_creation_fee_test
smt_operation_tests/smt_create_reset
smt_operation_tests/smt_nai_pool_removal
smt_operation_tests/smt_nai_pool_count
smt_operation_tests/smt_setup_emissions_validate
smt_operation_tests/smt_setup_emissions_authorities
smt_operation_tests/smt_setup_emissions_apply
smt_operation_tests/set_setup_parameters_validate
smt_operation_tests/set_setup_parameters_authorities
smt_operation_tests/set_setup_parameters_apply
smt_operation_tests/smt_set_runtime_parameters_validate
smt_operation_tests/smt_set_runtime_parameters_authorities
smt_operation_tests/smt_set_runtime_parameters_apply
smt_operation_tests/smt_contribute_validate
smt_operation_tests/smt_contribute_apply
smt_operation_tests/smt_transfer_validate
smt_operation_tests/smt_transfer_apply
smt_operation_tests/smt_setup_validate
smt_operation_tests/smt_setup_authorities
smt_operation_tests/smt_setup_apply
smt_operation_tests/smt_setup_ico_tier_validate
smt_operation_tests/smt_setup_ico_tier_authorities
smt_operation_tests/smt_setup_ico_tier_apply
smt_operation_tests/comment_votable_assets_validate
smt_operation_tests/comment_votable_assets_apply
smt_operation_tests/smt_delegate_vesting_shares_validate
smt_operation_tests/smt_delegate_vesting_shares_apply
smt_operation_tests/vote2_authorities
smt_operation_tests/vote2_apply
smt_operation_tests/smt_max_share_ico
smt_operation_time_tests/smt_refunds
smt_operation_time_tests/smt_ico_payouts
smt_operation_time_tests/smt_ico_payouts_special_destinations
smt_operation_time_tests/smt_without_ico
smt_operation_time_tests/smt_vesting_withdrawals
smt_operation_time_tests/recent_claims_decay
smt_operation_time_tests/smt_rewards
smt_operation_time_tests/smt_token_emissions
smt_operation_time_tests/smt_action_delay
smt_tests/smt_transfer_validate
smt_tests/smt_transfer_apply
smt_tests/asset_symbol_vesting_methods
smt_tests/vesting_smt_creation
smt_tests/smt_founder_vesting
smt_tests/setup_validate
smt_tests/setup_authorities
smt_tests/setup_apply
smt_tests/smt_create_apply
smt_tests/tick_pricing_rules_validation
smt_tests/tick_pricing_rules
smt_tests/price_as_decimal_and_real
smt_tests/token_emission_timing
undo_tests/undo_basic
undo_tests/undo_object_disapear
undo_tests/undo_key_collision
undo_tests/undo_different_indexes
undo_tests/undo_generate_blocks
)
target_link_libraries( chain_test db_fixture chainbase steem_chain steem_protocol account_history_plugin market_history_plugin rc_plugin witness_plugin debug_node_plugin fc ${PLATFORM_SPECIFIC_LIBS} )
file(GLOB PLUGIN_TESTS "plugin_tests/*.cpp")
parse_unit_tests(TEST_CASES ${PLUGIN_TESTS})
#message(STATUS "${TEST_CASES}")
add_boost_test( plugin_test
SOURCES ${PLUGIN_TESTS}
TESTS
json_rpc/basic_validation
json_rpc/syntax_validation
json_rpc/misc_validation
json_rpc/positive_validation
json_rpc/semantics_validation
market_history/mh_test
smt_market_history/smt_mh_test
transaction_status/transaction_status_test
rc_delegation/rc_delegate_to_pool_apply
rc_delegation/rc_delegate_to_pool_apply
rc_delegation/rc_set_slot_delegator
rc_delegation/rc_delegate_drc_from_pool
rc_delegation/rc_drc_pool_consumption
)
target_link_libraries( plugin_test db_fixture steem_chain steem_protocol account_history_plugin market_history_plugin rc_plugin witness_plugin debug_node_plugin transaction_status_plugin transaction_status_api_plugin fc ${PLATFORM_SPECIFIC_LIBS} )
if(MSVC)
set_source_files_properties( tests/serialization_tests.cpp PROPERTIES COMPILE_FLAGS "/bigobj" )
endif(MSVC)
#add_subdirectory( generate_empty_blocks )